!39 update package to version 69.1.0
From: @Venland Reviewed-by: @dillon_chen Signed-off-by: @dillon_chen
This commit is contained in:
commit
e8049416aa
@ -1,25 +0,0 @@
|
|||||||
From 99ba862948c27f8851ae2131ff36daee0195ae4a Mon Sep 17 00:00:00 2001
|
|
||||||
From: chengzihan2 <chengzihan1111@163.com>
|
|
||||||
Date: Thu, 4 Jun 2020 17:29:07 +0800
|
|
||||||
Subject: [PATCH] bugfix eliminate random order in metadata
|
|
||||||
|
|
||||||
---
|
|
||||||
setuptools/dist.py | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/setuptools/dist.py b/setuptools/dist.py
|
|
||||||
index fb16886..86a5402 100644
|
|
||||||
--- a/setuptools/dist.py
|
|
||||||
+++ b/setuptools/dist.py
|
|
||||||
@@ -208,7 +208,7 @@ def write_pkg_file(self, file): # noqa: C901 # is too complex (14) # FIXME
|
|
||||||
if self.long_description_content_type:
|
|
||||||
write_field('Description-Content-Type', self.long_description_content_type)
|
|
||||||
if self.provides_extras:
|
|
||||||
- for extra in self.provides_extras:
|
|
||||||
+ for extra in sorted(self.provides_extras):
|
|
||||||
write_field('Provides-Extra', extra)
|
|
||||||
|
|
||||||
self._write_list(file, 'License-File', self.license_files or [])
|
|
||||||
--
|
|
||||||
1.8.3.1
|
|
||||||
|
|
||||||
@ -7,7 +7,7 @@
|
|||||||
%global python_whlname setuptools-%{version}-py3-none-any.whl
|
%global python_whlname setuptools-%{version}-py3-none-any.whl
|
||||||
|
|
||||||
Name: python-setuptools
|
Name: python-setuptools
|
||||||
Version: 68.0.0
|
Version: 69.1.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Easily build and distribute Python packages
|
Summary: Easily build and distribute Python packages
|
||||||
|
|
||||||
@ -15,7 +15,6 @@ License: MIT and (BSD or ASL 2.0)
|
|||||||
URL: https://pypi.python.org/pypi/setuptools
|
URL: https://pypi.python.org/pypi/setuptools
|
||||||
Source0: %{pypi_source setuptools %{version}}
|
Source0: %{pypi_source setuptools %{version}}
|
||||||
|
|
||||||
Patch9000: bugfix-eliminate-random-order-in-metadata.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
@ -107,17 +106,20 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore=
|
|||||||
|
|
||||||
%files help
|
%files help
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc docs/* CHANGES.rst README.rst
|
%doc docs/* README.rst
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 22 2024 liweigang <izmirvii@gmail.com> - 69.1.0-1
|
||||||
|
- update package to version 69.1.0
|
||||||
|
|
||||||
* Wed Jul 12 2023 sunhui <sunhui@kylinos.cn> - 68.0.0-1
|
* Wed Jul 12 2023 sunhui <sunhui@kylinos.cn> - 68.0.0-1
|
||||||
- Update package to version 68.0.0
|
- Update package to version 68.0.0
|
||||||
|
|
||||||
* Sat Jan 28 2023 zhuofeng<zhuofeng2@huawei.com> - 66.0.0-1
|
* Sat Jan 28 2023 zhuofeng<zhuofeng2@huawei.com> - 66.0.0-1
|
||||||
- update version to 66.0.0
|
- update version to 66.0.0
|
||||||
|
|
||||||
* Wed Jan 04 2023 zhuofeng <zhuofeng2@huawei.com> - 60.9.3-2
|
* Wed Jan 04 2023 zhuofeng <zhuofeng2@huawei.com> - 60.9.3-2
|
||||||
- Type:CVE
|
- Type:CVE
|
||||||
- CVE:CVE-2022-40897
|
- CVE:CVE-2022-40897
|
||||||
- SUG:NA
|
- SUG:NA
|
||||||
|
|||||||
Binary file not shown.
BIN
setuptools-69.1.0.tar.gz
Normal file
BIN
setuptools-69.1.0.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user