[packages/python-isort] new package

jajcus jajcus at pld-linux.org
Fri Nov 24 10:24:02 CET 2017


commit db818afafa7f1bb78d340acf3b0e0a5e055dac9b
Author: Jacek Konieczny <j.konieczny at eggsoft.pl>
Date:   Fri Nov 24 10:23:31 2017 +0100

    new package

 python-isort.spec | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 116 insertions(+)
---
diff --git a/python-isort.spec b/python-isort.spec
new file mode 100644
index 0000000..6327876
--- /dev/null
+++ b/python-isort.spec
@@ -0,0 +1,116 @@
+#
+# Conditional build:
+%bcond_with	tests	# do perform tests (broken in 4.2.15)
+%bcond_without	python2 # CPython 2.x module
+%bcond_without	python3 # CPython 3.x module
+
+%define		module	isort
+Summary:	Python utility / library to sort imports alphabetically
+Name:		python-%{module}
+Version:	4.2.15
+Release:	1
+License:	MIT
+Group:		Libraries/Python
+Source0:	https://files.pythonhosted.org/packages/source/i/%{module}/%{module}-%{version}.tar.gz
+# Source0-md5:	34915a2ce60e6fe3dbcbf5982deef9b4
+URL:		https://github.com/timothycrosley/isort
+BuildRequires:	rpm-pythonprov
+BuildRequires:	rpmbuild(macros) >= 1.714
+%if %{with python2}
+BuildRequires:	python-setuptools
+%endif
+%if %{with python3}
+BuildRequires:	python3-setuptools
+%endif
+Requires:	python-modules
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+isort is a Python utility / library to sort imports alphabetically,
+and automatically separated into sections. It provides a command line
+utility, Python library and plugins for various editors to quickly
+sort all your imports. It currently cleanly supports Python 2.7 - 3.6
+without any dependencies.
+
+%package -n python3-%{module}
+Summary:	Python utility / library to sort imports alphabetically
+Group:		Libraries/Python
+Requires:	python3-modules
+
+%description -n python3-%{module}
+isort is a Python utility / library to sort imports alphabetically,
+and automatically separated into sections. It provides a command line
+utility, Python library and plugins for various editors to quickly
+sort all your imports. It currently cleanly supports Python 2.7 - 3.6
+without any dependencies.
+
+%package -n isort
+Summary:	Python utility / library to sort imports alphabetically
+Group:		Development/Tools
+%if %{with python3}
+Requires:	python3-%{module} = %{version}-%{release}
+%else
+Requires:	python-%{module} = %{version}-%{release}
+%endif
+
+%description -n isort
+isort is a Python utility / library to sort imports alphabetically,
+and automatically separated into sections. It provides a command line
+utility, Python library and plugins for various editors to quickly
+sort all your imports. It currently cleanly supports Python 2.7 - 3.6
+without any dependencies.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%build
+%if %{with python2}
+%py_build %{?with_tests:test}
+%endif
+
+%if %{with python3}
+%py3_build %{?with_tests:test}
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%py_install
+
+# when files are installed in other way that standard 'setup.py
+# they need to be (re-)compiled
+# change %{py_sitedir} to %{py_sitescriptdir} for 'noarch' packages!
+%py_ocomp $RPM_BUILD_ROOT%{py_sitedir}
+%py_comp $RPM_BUILD_ROOT%{py_sitedir}
+
+%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 ACKNOWLEDGEMENTS.md CHANGELOG.md 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 ACKNOWLEDGEMENTS.md CHANGELOG.md README.rst
+%{py3_sitescriptdir}/%{module}
+%{py3_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%endif
+
+%files -n isort
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/isort
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-isort.git/commitdiff/db818afafa7f1bb78d340acf3b0e0a5e055dac9b



More information about the pld-cvs-commit mailing list