Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-configshell-fb for openSUSE:Factory checked in at 2021-09-25 00:35:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-configshell-fb (Old) and /work/SRC/openSUSE:Factory/.python-configshell-fb.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-configshell-fb" Sat Sep 25 00:35:16 2021 rev:15 rq:920187 version:1.1.29 Changes: -------- --- /work/SRC/openSUSE:Factory/python-configshell-fb/python-configshell-fb.changes 2021-02-04 20:22:01.690639356 +0100 +++ /work/SRC/openSUSE:Factory/.python-configshell-fb.new.1899/python-configshell-fb.changes 2021-09-25 00:35:56.203163347 +0200 @@ -1,0 +2,8 @@ +Sun Sep 19 20:06:38 UTC 2021 - Lee Duncan <ldun...@suse.com> + +- Upgrade to latest upstream version v1.1.29 (jre#SLE-17360): + * setup.py: specify a version range for pyparsing + * setup.py: lets stick to pyparsing v2.4.7 + * Don't warn if prefs file doesn't exist + +------------------------------------------------------------------- Old: ---- python-configshell-fb-1.1.28.tar.xz New: ---- python-configshell-fb-1.1.29.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-configshell-fb.spec ++++++ --- /var/tmp/diff_new_pack.jkT1NP/_old 2021-09-25 00:35:56.663163827 +0200 +++ /var/tmp/diff_new_pack.jkT1NP/_new 2021-09-25 00:35:56.663163827 +0200 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-configshell-fb -Version: 1.1.28 +Version: 1.1.29 Release: 0%{?dist} Summary: A Python library for building configuration shells License: Apache-2.0 ++++++ python-configshell-fb-1.1.28.tar.xz -> python-configshell-fb-1.1.29.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-configshell-fb-1.1.28/configshell/__init__.py new/python-configshell-fb-1.1.29/configshell/__init__.py --- old/python-configshell-fb-1.1.28/configshell/__init__.py 2020-04-06 10:24:13.000000000 +0200 +++ new/python-configshell-fb-1.1.29/configshell/__init__.py 2021-03-04 13:59:32.000000000 +0100 @@ -26,7 +26,7 @@ from .prefs import Prefs from .shell import ConfigShell -__version__ = '1.1.28' +__version__ = '1.1.29' __url__ = 'http://github.com/open-iscsi/configshell-fb' __description__ = 'A framework to implement simple but nice CLIs.' __license__ = 'Apache 2.0' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-configshell-fb-1.1.28/configshell/prefs.py new/python-configshell-fb-1.1.29/configshell/prefs.py --- old/python-configshell-fb-1.1.28/configshell/prefs.py 2020-04-06 10:24:13.000000000 +0200 +++ new/python-configshell-fb-1.1.29/configshell/prefs.py 2021-03-04 13:59:32.000000000 +0100 @@ -15,6 +15,7 @@ under the License. ''' +import os import six import fcntl @@ -143,7 +144,7 @@ if filename is None: filename = self.filename - if filename is not None: + if filename is not None and os.path.exists(filename): fsock = open(filename, 'rb') fcntl.lockf(fsock, fcntl.LOCK_SH) try: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-configshell-fb-1.1.28/setup.py new/python-configshell-fb-1.1.29/setup.py --- old/python-configshell-fb-1.1.28/setup.py 2020-04-06 10:24:13.000000000 +0200 +++ new/python-configshell-fb-1.1.29/setup.py 2021-03-04 13:59:32.000000000 +0100 @@ -34,7 +34,7 @@ setup( name = 'configshell-fb', - version = '1.1.28', + version = '1.1.29', description = 'A framework to implement simple but nice CLIs.', license = 'Apache 2.0', maintainer = 'Andy Grover', @@ -42,7 +42,7 @@ url = 'http://github.com/open-iscsi/configshell-fb', packages = ['configshell', 'configshell_fb'], install_requires = [ - 'pyparsing >= 2.0.2', + 'pyparsing >=2.0.2,<3.0', 'six', 'urwid', ],