Hello community, here is the log from the commit of package python-padaos for openSUSE:Factory checked in at 2018-11-06 14:29:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-padaos (Old) and /work/SRC/openSUSE:Factory/.python-padaos.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-padaos" Tue Nov 6 14:29:54 2018 rev:3 rq:646019 version:0.1.7 Changes: -------- --- /work/SRC/openSUSE:Factory/python-padaos/python-padaos.changes 2018-08-03 12:39:45.139788241 +0200 +++ /work/SRC/openSUSE:Factory/.python-padaos.new/python-padaos.changes 2018-11-06 14:30:02.553401877 +0100 @@ -1,0 +2,6 @@ +Thu Nov 1 19:20:50 UTC 2018 - Antonio Larrosa <[email protected]> + +- Update to padaos 0.1.7 + * Fix Python 3.7 regex issue + +------------------------------------------------------------------- Old: ---- padaos-0.1.6.tar.gz New: ---- padaos-0.1.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-padaos.spec ++++++ --- /var/tmp/diff_new_pack.78iPjU/_old 2018-11-06 14:30:07.981394514 +0100 +++ /var/tmp/diff_new_pack.78iPjU/_new 2018-11-06 14:30:07.985394509 +0100 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -20,7 +20,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-padaos -Version: 0.1.6 +Version: 0.1.7 Release: 0 Summary: An intent parser License: MIT ++++++ padaos-0.1.6.tar.gz -> padaos-0.1.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/padaos-0.1.6/PKG-INFO new/padaos-0.1.7/PKG-INFO --- old/padaos-0.1.6/PKG-INFO 2018-07-04 20:53:07.000000000 +0200 +++ new/padaos-0.1.7/PKG-INFO 2018-09-12 01:52:05.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: padaos -Version: 0.1.6 +Version: 0.1.7 Summary: A rigid, lightweight, dead-simple intent parser Home-page: http://github.com/MatthewScholefield/padaos Author: Matthew Scholefield diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/padaos-0.1.6/padaos.egg-info/PKG-INFO new/padaos-0.1.7/padaos.egg-info/PKG-INFO --- old/padaos-0.1.6/padaos.egg-info/PKG-INFO 2018-07-04 20:53:07.000000000 +0200 +++ new/padaos-0.1.7/padaos.egg-info/PKG-INFO 2018-09-12 01:52:05.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: padaos -Version: 0.1.6 +Version: 0.1.7 Summary: A rigid, lightweight, dead-simple intent parser Home-page: http://github.com/MatthewScholefield/padaos Author: Matthew Scholefield diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/padaos-0.1.6/padaos.py new/padaos-0.1.7/padaos.py --- old/padaos-0.1.6/padaos.py 2018-07-04 20:51:17.000000000 +0200 +++ new/padaos-0.1.7/padaos.py 2018-09-12 01:51:49.000000000 +0200 @@ -32,7 +32,7 @@ (r'\(([^\|)]*)\)', r'{~(\1)~}'), # (hi) -> {~(hi)~} # === Convert to regex literal === - (re.escape, None), # a b:c -> a\ b\:c + (r'(\W)', r'\\\1'), (r' {} '.format, None), # 'abc' -> ' abc ' # === Unescape Chars for Convenience === @@ -49,9 +49,9 @@ (r'\\\|', r'|'), # \| -> | # === Support Special Symbols === - (r'(?<=\s)\\:0(?=\s)', r'\w+'), - (r'#', r'\d'), - (r'\d', r'\d'), + (r'(?<=\s)\\:0(?=\s)', r'\\w+'), + (r'#', r'\\d'), + (r'\d', r'\\d'), # === Space Word Separations === (r'(?<!\\)(\w)([^\w\s}])', r'\1 \2'), # a:b -> a :b diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/padaos-0.1.6/setup.py new/padaos-0.1.7/setup.py --- old/padaos-0.1.6/setup.py 2018-07-04 20:52:15.000000000 +0200 +++ new/padaos-0.1.7/setup.py 2018-09-12 01:51:49.000000000 +0200 @@ -4,7 +4,7 @@ setup( name='padaos', - version='0.1.6', + version='0.1.7', description='A rigid, lightweight, dead-simple intent parser', url='http://github.com/MatthewScholefield/padaos', author='Matthew Scholefield',
