diff --git a/bugfix-eliminate-random-order-in-metadata.patch b/bugfix-eliminate-random-order-in-metadata.patch index 3ca03e573e2bba6a13e7f4437eff9712698aaf82..fab13f9457ae368961d574dfc635313d32136f8e 100644 --- a/bugfix-eliminate-random-order-in-metadata.patch +++ b/bugfix-eliminate-random-order-in-metadata.patch @@ -13,6 +13,6 @@ reason:eliminate differences of source code if self.provides_extras: - for extra in self.provides_extras: + for extra in sorted(self.provides_extras): - file.write('Provides-Extra: %s\n' % extra) + write_field('Provides-Extra', extra) diff --git a/python-setuptools.spec b/python-setuptools.spec index edd42b3af8352c7684f8198b3c20c52007d2c482..8b30cddf0b4b75a319deaae38d16d5c58f589e1a 100644 --- a/python-setuptools.spec +++ b/python-setuptools.spec @@ -10,8 +10,8 @@ %global python_whlname setuptools-%{version}-py2.py3-none-any.whl Name: python-setuptools -Version: 40.4.3 -Release: 4 +Version: 44.1.1 +Release: 1 Summary: Easily build and distribute Python packages License: MIT and (BSD or ASL 2.0) @@ -144,6 +144,9 @@ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore= %changelog +* Mon Aug 31 2020 shixuantong - 44.1.1-1 +- update version 44.1.1 + * Wed Oct 30 2019 hexiaowen - 40.4.3-4 - disable tests diff --git a/setuptools-40.4.3.zip b/setuptools-44.1.1.zip similarity index 49% rename from setuptools-40.4.3.zip rename to setuptools-44.1.1.zip index f408a85a137ee7d63b367c68f8f5bc578c96e5a5..3b6cfeeee615ba09ca3bbd3b2c9c81d17d9e3d35 100644 Binary files a/setuptools-40.4.3.zip and b/setuptools-44.1.1.zip differ