[py3status] Initial import (#1158929)

Jakub Jedelsky kubo at fedoraproject.org
Wed Nov 26 13:45:35 UTC 2014


commit 8384932d604ceaf1f9f9085d86cc9a5a6e7d0183
Author: Jakub Jedelsky <jakub.jedelsky at gmail.com>
Date:   Wed Nov 26 14:44:53 2014 +0100

    Initial import (#1158929)

 .gitignore     |    1 +
 py3status.spec |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 sources        |    1 +
 3 files changed, 51 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..d4359ec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/1.6.tar.gz
diff --git a/py3status.spec b/py3status.spec
new file mode 100644
index 0000000..4b1be14
--- /dev/null
+++ b/py3status.spec
@@ -0,0 +1,49 @@
+%{!?__python2: %global __python2 /usr/bin/python2}
+%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+
+Name:		py3status
+Version:	1.6
+Release:	1%{?dist}
+Summary:	An extensible i3status wrapper written in python
+
+Group:		User Interface/Desktops
+License:	BSD
+URL:		https://github.com/ultrabug/py3status
+Source0:	https://github.com/ultrabug/py3status/archive/%{version}.tar.gz
+
+BuildArch:	noarch
+BuildRequires:	python2-devel
+BuildRequires:	python-setuptools
+Requires:	i3status
+
+%description
+Using py3status, you can take control of your i3bar easily by:
+- writing your own modules and have their output displayed on your bar
+- handling click events on your i3bar and play with them in no time
+- seeing your clock tick every second whatever your i3status interval
+No extra configuration file needed, just install & enjoy !
+
+%prep
+%setup -q -n py3status-%{version}
+
+
+%build
+%{__python2} setup.py build
+
+
+%install
+%{__python2} setup.py install --skip-build --root $RPM_BUILD_ROOT
+rm -rf $RPM_BUILD_ROOT/%{python2_sitelib}/modules
+
+
+%files
+%doc README.rst LICENSE CHANGELOG modules
+%{_bindir}/py3status
+%dir %{python2_sitelib}/py3status
+%{python2_sitelib}/py3status/*
+%{python2_sitelib}/*.egg-info
+
+
+%changelog
+* Mon Oct 27 2014 Jakub Jedelsky <jakub.jedelsky at gmail.com> - 1.6-1
+- inital package
diff --git a/sources b/sources
index e69de29..bccc0c2 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+132e10724554346e78efbcf3d43123fd  1.6.tar.gz


More information about the scm-commits mailing list