!39 update package to version 69.1.0

From: @Venland 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
This commit is contained in:
openeuler-ci-bot 2024-02-27 08:59:18 +00:00 committed by Gitee
commit e8049416aa
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
4 changed files with 6 additions and 29 deletions

View File

@ -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

View File

@ -7,7 +7,7 @@
%global python_whlname setuptools-%{version}-py3-none-any.whl
Name: python-setuptools
Version: 68.0.0
Version: 69.1.0
Release: 1
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
Source0: %{pypi_source setuptools %{version}}
Patch9000: bugfix-eliminate-random-order-in-metadata.patch
BuildArch: noarch
@ -107,10 +106,13 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore=
%files help
%defattr(-,root,root)
%doc docs/* CHANGES.rst README.rst
%doc docs/* README.rst
%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
- Update package to version 68.0.0

Binary file not shown.

BIN
setuptools-69.1.0.tar.gz Normal file

Binary file not shown.