Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-distlib for openSUSE:Factory checked in at 2021-11-20 02:37:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-distlib (Old) and /work/SRC/openSUSE:Factory/.python-distlib.new.1895 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-distlib" Sat Nov 20 02:37:59 2021 rev:9 rq:931422 version:0.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-distlib/python-distlib.changes 2021-02-15 23:13:11.479117198 +0100 +++ /work/SRC/openSUSE:Factory/.python-distlib.new.1895/python-distlib.changes 2021-11-20 02:38:02.564997433 +0100 @@ -1,0 +2,18 @@ +Sun Nov 7 18:22:20 UTC 2021 - Dirk M??ller <[email protected]> + +- update to 0.3.3: + * Removed splituser() function which wasn't used and is deprecated. + * Handle version comparisons correctly in environment markers. + * Handle a single trailing comma following a version. + * Fix incorrect handling of epochs. + * Reverted handling of tags for Python >= 3.10 + (use 310 rather than 3_10). This is because PEP 641 was rejected. + * removed unused regular expression + * allowed "Obsoletes" in more scenarios, to better handle faulty metadata + already on PyPI. + * added entry for SourcelessFileLoader to the finder registry. + * allowed a trailing comma in constraints, to better handle faulty metadata + already on PyPI +- drop python-distlib-2048-bit-key.patch (obsolete) + +------------------------------------------------------------------- Old: ---- distlib-0.3.1.zip python-distlib-2048-bit-key.patch New: ---- distlib-0.3.3.zip ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-distlib.spec ++++++ --- /var/tmp/diff_new_pack.NTrm2s/_old 2021-11-20 02:38:03.180995400 +0100 +++ /var/tmp/diff_new_pack.NTrm2s/_new 2021-11-20 02:38:03.184995387 +0100 @@ -18,15 +18,13 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-distlib -Version: 0.3.1 +Version: 0.3.3 Release: 0 Summary: Distribution utilities License: Python-2.0 URL: https://bitbucket.org/pypa/distlib Source: https://files.pythonhosted.org/packages/source/d/distlib/distlib-%{version}.zip Patch0: remove-backports.patch -#PATCH-FIX-UPSTREAM Update self-signed certificate to use 2048-bit key. -Patch1: python-distlib-2048-bit-key.patch BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} BuildRequires: fdupes ++++++ remove-backports.patch ++++++ --- /var/tmp/diff_new_pack.NTrm2s/_old 2021-11-20 02:38:03.212995294 +0100 +++ /var/tmp/diff_new_pack.NTrm2s/_new 2021-11-20 02:38:03.216995281 +0100 @@ -1,7 +1,7 @@ -Index: distlib-0.3.1/distlib/_backport/shutil.py +Index: distlib-0.3.3/distlib/_backport/shutil.py =================================================================== ---- distlib-0.3.1.orig/distlib/_backport/shutil.py -+++ distlib-0.3.1/distlib/_backport/shutil.py +--- distlib-0.3.3.orig/distlib/_backport/shutil.py ++++ distlib-0.3.3/distlib/_backport/shutil.py @@ -19,7 +19,7 @@ try: except ImportError: from collections import Callable @@ -11,11 +11,11 @@ try: import bz2 -Index: distlib-0.3.1/distlib/compat.py +Index: distlib-0.3.3/distlib/compat.py =================================================================== ---- distlib-0.3.1.orig/distlib/compat.py -+++ distlib-0.3.1/distlib/compat.py -@@ -311,10 +311,7 @@ except ImportError: # pragma: no cover +--- distlib-0.3.3.orig/distlib/compat.py ++++ distlib-0.3.3/distlib/compat.py +@@ -313,10 +313,7 @@ except ImportError: # pragma: no cover return 'IronPython' return 'CPython' @@ -27,30 +27,22 @@ try: callable = callable -Index: distlib-0.3.1/setup.py +Index: distlib-0.3.3/setup.py =================================================================== ---- distlib-0.3.1.orig/setup.py -+++ distlib-0.3.1/setup.py -@@ -6,7 +6,6 @@ - # - - import distutils.core --from distutils.sysconfig import get_python_lib - from os.path import join, dirname, abspath - import re - import sys -@@ -69,7 +68,6 @@ distutils.core.setup( +--- distlib-0.3.3.orig/setup.py ++++ distlib-0.3.3/setup.py +@@ -63,7 +63,6 @@ distutils.core.setup( 'distlib._backport', ], package_data={ - 'distlib._backport': ['sysconfig.cfg'], - 'distlib': ['t32.exe', 't64.exe', 'w32.exe', 'w64.exe'], + 'distlib': ['t32.exe', 't64.exe', 'w32.exe', 'w64.exe', + 't64-arm.exe', 'w64-arm.exe'], }, - cmdclass={ -Index: distlib-0.3.1/tests/distlib_tests.py +Index: distlib-0.3.3/tests/distlib_tests.py =================================================================== ---- distlib-0.3.1.orig/tests/distlib_tests.py -+++ distlib-0.3.1/tests/distlib_tests.py +--- distlib-0.3.3.orig/tests/distlib_tests.py ++++ distlib-0.3.3/tests/distlib_tests.py @@ -10,7 +10,6 @@ _ver = sys.version_info[:2] from test_database import (DataFilesTestCase, TestDatabase, TestDistribution, TestEggInfoDistribution, DepGraphTestCase) @@ -66,13 +58,13 @@ - from test_sysconfig import TestSysConfig, MakefileTests from test_util import (UtilTestCase, ProgressTestCase, FileOpsTestCase, GlobTestCase) -Index: distlib-0.3.1/tests/test_shutil.py +Index: distlib-0.3.3/tests/test_shutil.py =================================================================== ---- distlib-0.3.1.orig/tests/test_shutil.py -+++ distlib-0.3.1/tests/test_shutil.py -@@ -20,7 +20,7 @@ import tempfile - from compat import unittest - +--- distlib-0.3.3.orig/tests/test_shutil.py ++++ distlib-0.3.3/tests/test_shutil.py +@@ -19,7 +19,7 @@ import tempfile + from compat import unittest, find_executable, spawn + from support import DistlibTestCase -from distlib._backport import shutil, tarfile +from distlib._backport import shutil; import tarfile
