Compare commits
No commits in common. "4a4b9a651a8ef089d519b390a7a435cd73702e2e" and "d462a8d982ac95c12e604ac2ab1ddd49fa8bfbcd" have entirely different histories.
4a4b9a651a
...
d462a8d982
BIN
packaging-21.2.tar.gz
Normal file
BIN
packaging-21.2.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -2,12 +2,12 @@
|
|||||||
%bcond_without test
|
%bcond_without test
|
||||||
|
|
||||||
Name: python-packaging
|
Name: python-packaging
|
||||||
Version: 23.2
|
Version: 21.2
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Core utilities for Python packages
|
Summary: Core utilities for Python packages
|
||||||
License: BSD and ASL 2.0
|
License: BSD and ASL 2.0
|
||||||
URL: https://github.com/pypa/packaging
|
URL: https://github.com/pypa/packaging
|
||||||
Source0: https://files.pythonhosted.org/packages/source/p/packaging/packaging-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/4d/34/523195b783e799fd401ad4bbc40d787926dd4c61838441df08bf42297792/packaging-21.2.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%description
|
%description
|
||||||
Reusable core utilities for various Python Packaging interoperability specifications.
|
Reusable core utilities for various Python Packaging interoperability specifications.
|
||||||
@ -21,7 +21,7 @@ Summary: Core utilities for Python packages
|
|||||||
Provides: python-packaging
|
Provides: python-packaging
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-pbr python3-flit-core
|
BuildRequires: python3-pbr
|
||||||
BuildRequires: python3-pip
|
BuildRequires: python3-pip
|
||||||
BuildRequires: python3-wheel
|
BuildRequires: python3-wheel
|
||||||
BuildRequires: python3-pretend
|
BuildRequires: python3-pretend
|
||||||
@ -30,8 +30,6 @@ BuildRequires: python3-pytest
|
|||||||
%endif
|
%endif
|
||||||
BuildRequires: python3-pyparsing
|
BuildRequires: python3-pyparsing
|
||||||
Requires: python3-pyparsing
|
Requires: python3-pyparsing
|
||||||
Provides: python%{python3_pkgversion}dist(packaging) = %{version}
|
|
||||||
Provides: python%{python3_version}dist(packaging) = %{version}
|
|
||||||
|
|
||||||
%description -n python3-packaging
|
%description -n python3-packaging
|
||||||
Reusable core utilities for various Python Packaging interoperability specifications.
|
Reusable core utilities for various Python Packaging interoperability specifications.
|
||||||
@ -51,13 +49,14 @@ This library provides utilities that implement the interoperability specificatio
|
|||||||
The packaging project includes the following: version handling, specifiers, markers, requirements, tags, utilities.
|
The packaging project includes the following: version handling, specifiers, markers, requirements, tags, utilities.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n packaging-%{version}
|
%autosetup -n packaging-21.2
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_build
|
%py3_build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%pyproject_install
|
%py3_install
|
||||||
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
||||||
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
||||||
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
||||||
@ -91,38 +90,16 @@ mv %{buildroot}/doclist.lst .
|
|||||||
|
|
||||||
%files -n python3-packaging -f filelist.lst
|
%files -n python3-packaging -f filelist.lst
|
||||||
%dir %{python3_sitelib}/*
|
%dir %{python3_sitelib}/*
|
||||||
%{python3_sitelib}/packaging/__pycache__/
|
|
||||||
|
|
||||||
%files help -f doclist.lst
|
%files help -f doclist.lst
|
||||||
%license LICENSE LICENSE.APACHE LICENSE.BSD
|
|
||||||
%doc README.rst
|
|
||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Mar 4 2024 Dongxing Wang <dongxing.wang_a@thundersoft.com> - 23.2-1
|
|
||||||
- Update package with version 23.2
|
|
||||||
Add python 3.12 support.
|
|
||||||
Add types for packaging.version._Version.
|
|
||||||
Add platform tag support for LoongArch.
|
|
||||||
Update pyupgrade to Python 3.7+
|
|
||||||
Support enriched metadata.
|
|
||||||
|
|
||||||
* Thu May 11 2023 liyanan <thistleslyn@163.com> - 23.1-1
|
|
||||||
- update version to 23.1
|
|
||||||
|
|
||||||
* Wed Dec 29 2021 shixuantong <shixuantong@huawei.com> - 21.3-3
|
|
||||||
- fix provides error
|
|
||||||
|
|
||||||
* Tue Dec 28 2021 shixuantong <shixuantong@huawei.com> - 21.3-2
|
|
||||||
- provide python3dist(packaging) and python3.xdist(packaging)
|
|
||||||
|
|
||||||
* Mon Dec 06 2021 shixuantong <shixuantong@huawei.com> - 21.3-1
|
|
||||||
- update version to 21.3
|
|
||||||
|
|
||||||
* Thu Dec 2 2021 shangyibin <shangyibin1@huawei.com> - 21.2-1
|
* Thu Dec 2 2021 shangyibin <shangyibin1@huawei.com> - 21.2-1
|
||||||
- Upgrade to version 21.2
|
- Upgrade to version 21.2
|
||||||
|
|
||||||
* Sat Nov 27 2021 shixuantong <shixuantong@huawei.com> - - 20.9-2
|
* Sat Nov 27 2021 shixuantong <shixuantong@huawei> - - 20.9-2
|
||||||
- disable %check
|
- disable %check
|
||||||
|
|
||||||
* Tue Jul 13 2021 OpenStack_SIG <openstack@openeuler.org> - 20.9-1
|
* Tue Jul 13 2021 OpenStack_SIG <openstack@openeuler.org> - 20.9-1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user