Hello community, here is the log from the commit of package python-PyYAML for openSUSE:Factory checked in at 2019-08-07 13:58:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-PyYAML (Old) and /work/SRC/openSUSE:Factory/.python-PyYAML.new.9556 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PyYAML" Wed Aug 7 13:58:35 2019 rev:20 rq:720548 version:5.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-PyYAML/python-PyYAML.changes 2019-06-13 22:30:35.004435136 +0200 +++ /work/SRC/openSUSE:Factory/.python-PyYAML.new.9556/python-PyYAML.changes 2019-08-07 13:58:38.792854688 +0200 @@ -1,0 +2,6 @@ +Thu Aug 1 13:17:00 UTC 2019 - Marketa Calabkova <[email protected]> + +- update to 5.1.2 + * Re-release of 5.1 with regenerated Cython sources to build properly for Python 3.8b2+ + +------------------------------------------------------------------- Old: ---- PyYAML-5.1.1.tar.gz New: ---- PyYAML-5.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-PyYAML.spec ++++++ --- /var/tmp/diff_new_pack.HE5AHP/_old 2019-08-07 13:58:39.984854675 +0200 +++ /var/tmp/diff_new_pack.HE5AHP/_new 2019-08-07 13:58:40.008854675 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define oldpython python Name: python-PyYAML -Version: 5.1.1 +Version: 5.1.2 Release: 0 Summary: YAML parser and emitter for Python License: MIT ++++++ PyYAML-5.1.1.tar.gz -> PyYAML-5.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyYAML-5.1.1/CHANGES new/PyYAML-5.1.2/CHANGES --- old/PyYAML-5.1.1/CHANGES 2019-06-06 02:38:28.000000000 +0200 +++ new/PyYAML-5.1.2/CHANGES 2019-07-31 03:07:55.000000000 +0200 @@ -4,10 +4,15 @@ * https://github.com/yaml/pyyaml/commits/ * https://bitbucket.org/xi/pyyaml/commits/ +5.1.2 (2019-07-30) +------------------ + +* Re-release of 5.1 with regenerated Cython sources to build properly for Python 3.8b2+ + 5.1.1 (2019-06-05) ------------------ -* Re-release of 5.1 with regenerated Cython sources to build properly for Python 3.8 +* Re-release of 5.1 with regenerated Cython sources to build properly for Python 3.8b1 5.1 (2019-03-13) ---------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyYAML-5.1.1/PKG-INFO new/PyYAML-5.1.2/PKG-INFO --- old/PyYAML-5.1.1/PKG-INFO 2019-06-07 00:24:26.000000000 +0200 +++ new/PyYAML-5.1.2/PKG-INFO 2019-07-31 03:09:13.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: PyYAML -Version: 5.1.1 +Version: 5.1.2 Summary: YAML parser and emitter for Python Home-page: https://github.com/yaml/pyyaml Author: Kirill Simonov diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyYAML-5.1.1/ext/_yaml.c new/PyYAML-5.1.2/ext/_yaml.c --- old/PyYAML-5.1.1/ext/_yaml.c 2019-06-07 00:24:26.000000000 +0200 +++ new/PyYAML-5.1.2/ext/_yaml.c 2019-07-31 03:09:13.000000000 +0200 @@ -1,4 +1,4 @@ -/* Generated by Cython 0.29.10 */ +/* Generated by Cython 0.29.13 */ #define PY_SSIZE_T_CLEAN #include "Python.h" @@ -7,8 +7,8 @@ #elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) #error Cython requires Python 2.6+ or Python 3.3+. #else -#define CYTHON_ABI "0_29_10" -#define CYTHON_HEX_VERSION 0x001D0AF0 +#define CYTHON_ABI "0_29_13" +#define CYTHON_HEX_VERSION 0x001D0DF0 #define CYTHON_FUTURE_DIVISION 0 #include <stddef.h> #ifndef offsetof @@ -310,12 +310,12 @@ #define __Pyx_DefaultClassType PyClass_Type #else #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX < 0x030800A4 +#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) + PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) #else #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) + PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) #endif #define __Pyx_DefaultClassType PyType_Type #endif @@ -1141,7 +1141,7 @@ #define __Pyx_PyFunction_FastCall(func, args, nargs)\ __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) #if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, int nargs, PyObject *kwargs); +static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs); #else #define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) #endif @@ -25117,9 +25117,9 @@ } #endif /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins() < 0) __PYX_ERR(0, 2, __pyx_L1_error) + if (__Pyx_InitCachedBuiltins() < 0) goto __pyx_L1_error; /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants() < 0) __PYX_ERR(0, 2, __pyx_L1_error) + if (__Pyx_InitCachedConstants() < 0) goto __pyx_L1_error; /*--- Global type/function init code ---*/ (void)__Pyx_modinit_global_init_code(); (void)__Pyx_modinit_variable_export_code(); @@ -26636,7 +26636,7 @@ return result; } #if 1 || PY_VERSION_HEX < 0x030600B1 -static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, int nargs, PyObject *kwargs) { +static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, PyObject *kwargs) { PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); PyObject *globals = PyFunction_GET_GLOBALS(func); PyObject *argdefs = PyFunction_GET_DEFAULTS(func); @@ -26707,12 +26707,12 @@ } #if PY_MAJOR_VERSION >= 3 result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, - args, nargs, + args, (int)nargs, k, (int)nk, d, (int)nd, kwdefs, closure); #else result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, - args, nargs, + args, (int)nargs, k, (int)nk, d, (int)nd, closure); #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyYAML-5.1.1/lib/yaml/__init__.py new/PyYAML-5.1.2/lib/yaml/__init__.py --- old/PyYAML-5.1.1/lib/yaml/__init__.py 2019-06-07 00:12:43.000000000 +0200 +++ new/PyYAML-5.1.2/lib/yaml/__init__.py 2019-07-31 03:07:55.000000000 +0200 @@ -8,7 +8,7 @@ from loader import * from dumper import * -__version__ = '5.1.1' +__version__ = '5.1.2' try: from cyaml import * diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyYAML-5.1.1/lib3/yaml/__init__.py new/PyYAML-5.1.2/lib3/yaml/__init__.py --- old/PyYAML-5.1.1/lib3/yaml/__init__.py 2019-06-07 00:12:43.000000000 +0200 +++ new/PyYAML-5.1.2/lib3/yaml/__init__.py 2019-07-31 03:07:55.000000000 +0200 @@ -8,7 +8,7 @@ from .loader import * from .dumper import * -__version__ = '5.1.1' +__version__ = '5.1.2' try: from .cyaml import * __with_libyaml__ = True diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyYAML-5.1.1/setup.py new/PyYAML-5.1.2/setup.py --- old/PyYAML-5.1.1/setup.py 2019-06-06 02:36:50.000000000 +0200 +++ new/PyYAML-5.1.2/setup.py 2019-07-31 03:07:55.000000000 +0200 @@ -1,6 +1,6 @@ NAME = 'PyYAML' -VERSION = '5.1.1' +VERSION = '5.1.2' DESCRIPTION = "YAML parser and emitter for Python" LONG_DESCRIPTION = """\ YAML is a data serialization format designed for human readability
