Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-ciscoconfparse for openSUSE:Factory checked in at 2022-03-01 17:03:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ciscoconfparse (Old) and /work/SRC/openSUSE:Factory/.python-ciscoconfparse.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ciscoconfparse" Tue Mar 1 17:03:44 2022 rev:22 rq:958232 version:1.6.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-ciscoconfparse/python-ciscoconfparse.changes 2021-11-10 21:53:27.079997472 +0100 +++ /work/SRC/openSUSE:Factory/.python-ciscoconfparse.new.1958/python-ciscoconfparse.changes 2022-03-01 17:04:29.836348227 +0100 @@ -1,0 +2,5 @@ +Tue Mar 1 09:39:26 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- add no2to3.patch for compatibility with newer setuptools + +------------------------------------------------------------------- New: ---- no2to3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ciscoconfparse.spec ++++++ --- /var/tmp/diff_new_pack.VA49wP/_old 2022-03-01 17:04:30.296348349 +0100 +++ /var/tmp/diff_new_pack.VA49wP/_new 2022-03-01 17:04:30.300348350 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-ciscoconfparse # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,6 +25,7 @@ License: GPL-3.0-or-later URL: https://github.com/mpenning/ciscoconfparse Source: https://files.pythonhosted.org/packages/source/c/ciscoconfparse/ciscoconfparse-%{version}.tar.gz +Patch1: no2to3.patch BuildRequires: %{python_module dnspython} BuildRequires: %{python_module loguru} BuildRequires: %{python_module passlib} ++++++ no2to3.patch ++++++ Index: ciscoconfparse-1.6.0/setup.py =================================================================== --- ciscoconfparse-1.6.0.orig/setup.py +++ ciscoconfparse-1.6.0/setup.py @@ -130,7 +130,6 @@ def setup_packages(): long_description=read("README.rst"), include_package_data=True, # See MANIFEST.in for explicit rules packages=find_packages(), - use_2to3=True, # Reqd for Windows + Py3 - ref Github issue #32 zip_safe=False, python_requires='>=3.5', install_requires=REQUIRES,