74 lines
2.1 KiB
RPMSpec
74 lines
2.1 KiB
RPMSpec
%global _empty_manifest_terminate_build 0
|
|
Name: python-isort
|
|
Version: 5.12.0
|
|
Release: 1
|
|
Summary: A Python utility / library to sort Python imports.
|
|
License: MIT
|
|
URL: https://github.com/timothycrosley/isort
|
|
Source0: https://files.pythonhosted.org/packages/source/i/isort/isort-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
%description
|
|
Isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections and by type.
|
|
|
|
%package -n python3-isort
|
|
Summary: A Python utility / library to sort Python imports.
|
|
%{?python_provide:%python_provide python3-isort}
|
|
|
|
# Base build requires
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-pbr
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-wheel
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-mock
|
|
BuildRequires: python3-pylama
|
|
BuildRequires: python-pep517
|
|
|
|
%description -n python3-isort
|
|
Isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections and by type.
|
|
Python 3 version.
|
|
|
|
%package help
|
|
Summary: A Python utility / library to sort Python imports.
|
|
Provides: python3-isort-doc
|
|
%description help
|
|
A Python utility / library to sort Python imports.
|
|
|
|
%prep
|
|
%autosetup -n isort-%{version}
|
|
|
|
%build
|
|
%py3_build
|
|
|
|
%install
|
|
%py3_install
|
|
mv %{buildroot}%{_bindir}/isort{,-%{python3_version}}
|
|
ln -s isort-%{python3_version} %{buildroot}%{_bindir}/isort-3
|
|
ln -s isort-3 %{buildroot}%{_bindir}/isort
|
|
|
|
%check
|
|
pytest tests
|
|
|
|
%files -n python3-isort
|
|
%doc *.md LICENSE
|
|
%{_bindir}/isort
|
|
%{_bindir}/isort-3
|
|
%{_bindir}/isort-%{python3_version}
|
|
%{_bindir}/isort-identify-imports
|
|
%{python3_sitelib}/isort/
|
|
%{python3_sitelib}/isort-*.egg-info/
|
|
|
|
%changelog
|
|
* Tue Sep 19 2023 xu_ping <707078654@qq.com> - 5.12.0-1
|
|
- Package upgrade to 5.12.0
|
|
|
|
* Mon Aug 02 2021 OpenStack_SIG <openstack@openeuler.org> - 4.3.21-1
|
|
- Package upgrade to 4.3.21
|
|
|
|
* Wed Aug 05 2020 lingsheng <lingsheng@huawei.com> - 4.3.4-7
|
|
- Remove python2-isort subpackage
|
|
|
|
* Mon Feb 24 2020 Senlin Xia <xiasenlin1@huawei.com> - 4.3.4-6
|
|
- Package init
|