Hello community,

here is the log from the commit of package python-regex for openSUSE:Factory 
checked in at 2019-07-22 17:20:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-regex (Old)
 and      /work/SRC/openSUSE:Factory/.python-regex.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-regex"

Mon Jul 22 17:20:04 2019 rev:6 rq:717583 version:2019.06.08

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-regex/python-regex.changes        
2019-06-06 18:17:16.604686829 +0200
+++ /work/SRC/openSUSE:Factory/.python-regex.new.4126/python-regex.changes      
2019-07-22 17:20:05.425899390 +0200
@@ -1,0 +2,6 @@
+Mon Jul 22 12:58:43 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 2019.06.08:
+  * minor fixes
+
+-------------------------------------------------------------------

Old:
----
  regex-2019.06.05.tar.gz

New:
----
  regex-2019.06.08.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-regex.spec ++++++
--- /var/tmp/diff_new_pack.ActPh3/_old  2019-07-22 17:20:07.021898955 +0200
+++ /var/tmp/diff_new_pack.ActPh3/_new  2019-07-22 17:20:07.037898951 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-regex
-Version:        2019.06.05
+Version:        2019.06.08
 Release:        0
 Summary:        Alternative regular expression module for Python
 License:        Python-2.0

++++++ regex-2019.06.05.tar.gz -> regex-2019.06.08.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/regex-2019.06.05/PKG-INFO 
new/regex-2019.06.08/PKG-INFO
--- old/regex-2019.06.05/PKG-INFO       2019-06-05 04:05:43.000000000 +0200
+++ new/regex-2019.06.08/PKG-INFO       2019-06-08 20:41:43.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: regex
-Version: 2019.06.05
+Version: 2019.06.08
 Summary: Alternative regular expression module, to replace re.
 Home-page: https://bitbucket.org/mrabarnett/mrab-regex
 Author: Matthew Barnett
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/regex-2019.06.05/regex_2/_regex.c 
new/regex-2019.06.08/regex_2/_regex.c
--- old/regex-2019.06.05/regex_2/_regex.c       2019-05-25 03:18:55.000000000 
+0200
+++ new/regex-2019.06.08/regex_2/_regex.c       2019-06-08 20:39:16.000000000 
+0200
@@ -9349,15 +9349,12 @@
 Py_LOCAL_INLINE(PyObject*) build_unicode_value(void* buffer, Py_ssize_t start,
   Py_ssize_t end, Py_ssize_t buffer_charsize) {
 #if defined(PYPY_VERSION) && PY_VERSION_HEX < 0x05090000
-#if Py_UNICODE_SIZE != 4
-#error "Needs to be a wide build."
-#endif
     Py_ssize_t len;
-    Py_UCS4* codepoints;
+    Py_UNICODE* codepoints;
     PyObject* result;
 
     len = end - start;
-    codepoints = (Py_UCS4*)re_alloc(len * 4);
+    codepoints = (Py_UCS4*)re_alloc(len * Py_UNICODE_SIZE);
     if (!codepoints)
         return NULL;
 
@@ -9392,6 +9389,7 @@
 
         break;
     }
+#if Py_UNICODE_SIZE == 4
     case 4:
     {
         Py_UCS4* from_ptr;
@@ -9407,6 +9405,7 @@
 
         break;
     }
+#endif
     default:
     {
         Py_UCS1* from_ptr;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/regex-2019.06.05/regex_2/regex/regex.py 
new/regex-2019.06.08/regex_2/regex/regex.py
--- old/regex-2019.06.05/regex_2/regex/regex.py 2019-06-05 04:05:11.000000000 
+0200
+++ new/regex-2019.06.08/regex_2/regex/regex.py 2019-06-08 20:39:14.000000000 
+0200
@@ -239,7 +239,7 @@
   "T", "TEMPLATE", "U", "UNICODE", "V0", "VERSION0", "V1", "VERSION1", "X",
   "VERBOSE", "W", "WORD", "error", "Regex", "__version__", "__doc__"]
 
-__version__ = "2.5.32"
+__version__ = "2.5.33"
 
 # --------------------------------------------------------------------
 # Public interface.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/regex-2019.06.05/regex_3/_regex.c 
new/regex-2019.06.08/regex_3/_regex.c
--- old/regex-2019.06.05/regex_3/_regex.c       2019-05-25 03:18:54.000000000 
+0200
+++ new/regex-2019.06.08/regex_3/_regex.c       2019-06-08 20:39:14.000000000 
+0200
@@ -9404,15 +9404,12 @@
 Py_LOCAL_INLINE(PyObject*) build_unicode_value(void* buffer, Py_ssize_t start,
   Py_ssize_t end, Py_ssize_t buffer_charsize) {
 #if defined(PYPY_VERSION) && PY_VERSION_HEX < 0x05090000
-#if Py_UNICODE_SIZE != 4
-#error "Needs to be a wide build."
-#endif
     Py_ssize_t len;
-    Py_UCS4* codepoints;
+    Py_UNICODE* codepoints;
     PyObject* result;
 
     len = end - start;
-    codepoints = (Py_UCS4*)re_alloc(len * 4);
+    codepoints = (Py_UNICODE*)re_alloc(len * Py_UNICODE_SIZE);
     if (!codepoints)
         return NULL;
 
@@ -9447,6 +9444,7 @@
 
         break;
     }
+#if Py_UNICODE_SIZE == 4
     case 4:
     {
         Py_UCS4* from_ptr;
@@ -9462,6 +9460,7 @@
 
         break;
     }
+#endif
     default:
     {
         Py_UCS1* from_ptr;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/regex-2019.06.05/regex_3/regex/regex.py 
new/regex-2019.06.08/regex_3/regex/regex.py
--- old/regex-2019.06.05/regex_3/regex/regex.py 2019-06-05 04:05:10.000000000 
+0200
+++ new/regex-2019.06.08/regex_3/regex/regex.py 2019-06-08 20:39:13.000000000 
+0200
@@ -239,7 +239,7 @@
   "T", "TEMPLATE", "U", "UNICODE", "V0", "VERSION0", "V1", "VERSION1", "X",
   "VERBOSE", "W", "WORD", "error", "Regex", "__version__", "__doc__"]
 
-__version__ = "2.5.32"
+__version__ = "2.5.33"
 
 # --------------------------------------------------------------------
 # Public interface.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/regex-2019.06.05/setup.py 
new/regex-2019.06.08/setup.py
--- old/regex-2019.06.05/setup.py       2019-06-05 04:05:43.000000000 +0200
+++ new/regex-2019.06.08/setup.py       2019-06-08 20:41:43.000000000 +0200
@@ -16,7 +16,7 @@
 
 setup(
     name='regex',
-    version='2019.06.05',
+    version='2019.06.08',
     description='Alternative regular expression module, to replace re.',
     long_description=open(join(DOCS_DIR, 'Features.rst')).read(),
 


Reply via email to