[packages/python-style] new
atler
atler at pld-linux.org
Thu Jun 22 03:40:15 CEST 2023
commit 6fde5efe57b281838fcc7749920c1f4688411669
Author: Jan Palus <atler at pld-linux.org>
Date: Thu Jun 22 01:50:00 2023 +0200
new
python-style.spec | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 87 insertions(+)
---
diff --git a/python-style.spec b/python-style.spec
new file mode 100644
index 0000000..abc7887
--- /dev/null
+++ b/python-style.spec
@@ -0,0 +1,87 @@
+# Conditional build:
+%bcond_without python2 # CPython 2.x module
+%bcond_without python3 # CPython 3.x module
+
+%define module style
+
+Summary: Terminal string styling
+Name: python-%{module}
+Version: 1.1.6
+Release: 1
+License: MIT
+Group: Development/Languages/Python
+Source0: https://files.pythonhosted.org/packages/source/s/style/%{module}-%{version}.tar.gz
+# Source0-md5: 9f60530598a417850445ffbad7e5006a
+URL: https://pypi.python.org/project/style
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.714
+%if %{with python2}
+BuildRequires: python >= 1:2.7
+BuildRequires: python-modules >= 1:2.7
+BuildRequires: python-setuptools
+%endif
+%if %{with python3}
+BuildRequires: python3 >= 1:3.5
+BuildRequires: python3-modules >= 1:3.5
+BuildRequires: python3-setuptools
+%endif
+Requires: python-modules >= 1:2.7
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+style is a simple terminal string styling package. Its API is a port
+of the popular chalk package for javascript.
+
+%package -n python3-%{module}
+Summary: Terminal string styling
+Group: Development/Languages/Python
+Requires: python3-modules >= 1:3.5
+
+%description -n python3-%{module}
+style is a simple terminal string styling package. Its API is a port
+of the popular chalk package for javascript.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%build
+%if %{with python2}
+%py_build
+%endif
+
+%if %{with python3}
+%py3_build
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%py_install
+
+%py_postclean
+%endif
+
+%if %{with python3}
+%py3_install
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%files
+%defattr(644,root,root,755)
+%doc README.rst
+%{py_sitescriptdir}/%{module}
+%{py_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc README.rst
+%{py3_sitescriptdir}/%{module}
+%{py3_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%endif
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python-style.git/commitdiff/6fde5efe57b281838fcc7749920c1f4688411669
More information about the pld-cvs-commit
mailing list