Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-funcparserlib for openSUSE:Factory checked in at 2022-03-01 17:03:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-funcparserlib (Old) and /work/SRC/openSUSE:Factory/.python-funcparserlib.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-funcparserlib" Tue Mar 1 17:03:45 2022 rev:8 rq:958233 version:0.3.6 Changes: -------- --- /work/SRC/openSUSE:Factory/python-funcparserlib/python-funcparserlib.changes 2021-11-10 21:46:14.719806149 +0100 +++ /work/SRC/openSUSE:Factory/.python-funcparserlib.new.1958/python-funcparserlib.changes 2022-03-01 17:04:30.432348385 +0100 @@ -1,0 +2,5 @@ +Tue Mar 1 09:44:35 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- add no2to3.patch for compatibility with newer setuptools + +------------------------------------------------------------------- New: ---- no2to3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-funcparserlib.spec ++++++ --- /var/tmp/diff_new_pack.zPDUMi/_old 2022-03-01 17:04:30.872348502 +0100 +++ /var/tmp/diff_new_pack.zPDUMi/_new 2022-03-01 17:04:30.876348503 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-funcparserlib # -# 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 @@ Group: Development/Languages/Python URL: https://github.com/vlasovskikh/funcparserlib Source: https://files.pythonhosted.org/packages/source/f/funcparserlib/funcparserlib-%{version}.tar.gz +Patch1: no2to3.patch BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module six} @@ -55,6 +56,7 @@ %prep %setup -q -n funcparserlib-%{version} +%patch1 -p1 python-modernize -nw funcparserlib/ sed -i "s/ur'/r'/" funcparserlib/tests/*.py ++++++ no2to3.patch ++++++ --- funcparserlib-0.3.6/setup.py +++ funcparserlib-0.3.6/setup.py @@ -4,10 +4,6 @@ import sys extra = {} -if sys.version_info >= (3,): - extra['use_2to3'] = True - - setup( name='funcparserlib', version='0.3.6',