Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-regex for openSUSE:Factory checked in at 2022-06-17 21:18:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-regex (Old) and /work/SRC/openSUSE:Factory/.python-regex.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-regex" Fri Jun 17 21:18:24 2022 rev:15 rq:982667 version:2022.6.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-regex/python-regex.changes 2022-06-08 14:24:17.352455389 +0200 +++ /work/SRC/openSUSE:Factory/.python-regex.new.1548/python-regex.changes 2022-06-17 21:18:32.722644281 +0200 @@ -1,0 +2,6 @@ +Tue Jun 14 22:03:41 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to 2022.6.2 + * No upstream changelog available + +------------------------------------------------------------------- Old: ---- regex-2022.4.24.tar.gz New: ---- regex-2022.6.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-regex.spec ++++++ --- /var/tmp/diff_new_pack.PxcNao/_old 2022-06-17 21:18:33.178644529 +0200 +++ /var/tmp/diff_new_pack.PxcNao/_new 2022-06-17 21:18:33.182644530 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-regex -Version: 2022.4.24 +Version: 2022.6.2 Release: 0 Summary: Alternative regular expression module for Python License: Apache-2.0 ++++++ regex-2022.4.24.tar.gz -> regex-2022.6.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/regex-2022.4.24/PKG-INFO new/regex-2022.6.2/PKG-INFO --- old/regex-2022.4.24/PKG-INFO 2022-04-24 20:14:42.089166400 +0200 +++ new/regex-2022.6.2/PKG-INFO 2022-06-03 00:22:45.126639600 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: regex -Version: 2022.4.24 +Version: 2022.6.2 Summary: Alternative regular expression module, to replace re. Home-page: https://github.com/mrabarnett/mrab-regex Author: Matthew Barnett diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/regex-2022.4.24/regex.egg-info/PKG-INFO new/regex-2022.6.2/regex.egg-info/PKG-INFO --- old/regex-2022.4.24/regex.egg-info/PKG-INFO 2022-04-24 20:14:41.000000000 +0200 +++ new/regex-2022.6.2/regex.egg-info/PKG-INFO 2022-06-03 00:22:45.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: regex -Version: 2022.4.24 +Version: 2022.6.2 Summary: Alternative regular expression module, to replace re. Home-page: https://github.com/mrabarnett/mrab-regex Author: Matthew Barnett diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/regex-2022.4.24/regex_3/regex.py new/regex-2022.6.2/regex_3/regex.py --- old/regex-2022.4.24/regex_3/regex.py 2022-04-24 20:14:39.000000000 +0200 +++ new/regex-2022.6.2/regex_3/regex.py 2022-06-03 00:22:44.000000000 +0200 @@ -241,7 +241,7 @@ "VERSION1", "X", "VERBOSE", "W", "WORD", "error", "Regex", "__version__", "__doc__", "RegexFlag"] -__version__ = "2.5.114" +__version__ = "2.5.115" # -------------------------------------------------------------------- # Public interface. @@ -346,9 +346,11 @@ return pat.finditer(string, pos, endpos, overlapped, concurrent, partial, timeout) -def compile(pattern, flags=0, ignore_unused=False, **kwargs): +def compile(pattern, flags=0, ignore_unused=False, cache_pattern=None, **kwargs): "Compile a regular expression pattern, returning a pattern object." - return _compile(pattern, flags, ignore_unused, kwargs, _cache_all) + if cache_pattern is None: + cache_pattern = _cache_all + return _compile(pattern, flags, ignore_unused, kwargs, cache_pattern) def purge(): "Clear the regular expression cache" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/regex-2022.4.24/setup.py new/regex-2022.6.2/setup.py --- old/regex-2022.4.24/setup.py 2022-04-24 20:14:39.000000000 +0200 +++ new/regex-2022.6.2/setup.py 2022-06-03 00:22:44.000000000 +0200 @@ -7,7 +7,7 @@ setup( name='regex', - version='2022.4.24', + version='2022.6.2', description='Alternative regular expression module, to replace re.', long_description=long_description, long_description_content_type='text/x-rst',