Hello community,
here is the log from the commit of package python-Cython for openSUSE:Factory checked in at 2016-11-01 09:49:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-Cython (Old)
and /work/SRC/openSUSE:Factory/.python-Cython.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Cython"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-Cython/python-Cython.changes 2016-02-09 13:30:58.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-Cython.new/python-Cython.changes 2016-11-01 09:49:55.000000000 +0100
@@ -1,0 +2,148 @@
+Fri Oct 28 12:40:24 UTC 2016 - toddrme2178(a)gmail.com
+
+- Update to version 0.25.1
+ + Bugs fixed
+ * Fixes a bug with ``isinstance(o, Exception)`` (Github issue #1496).
+ * Fixes bug with ``cython.view.array`` missing utility code in some cases
+ (Github issue #1502).
+ + Other changes
+ * The distutils extension ``Cython.Distutils.build_ext`` has been reverted,
+ temporarily, to be ``old_build_ext`` to give projects time to migrate.
+ The new build_ext is available as ``new_build_ext``.
+
+-------------------------------------------------------------------
+Wed Oct 26 14:55:49 UTC 2016 - toddrme2178(a)gmail.com
+
+- Fix source URL.
+
+-------------------------------------------------------------------
+Wed Oct 26 01:36:12 UTC 2016 - toddrme2178(a)gmail.com
+
+- update to version 0.25:
+ + Features added
+ * def/cpdef methods of cdef classes benefit from Cython's internal function
+ implementation, which enables introspection and line profiling for them.
+ Implementation sponsored by Turbostream (www.turbostream-cfd.com).
+ * The distutils extension ``Cython.Distutils.build_ext`` has now been updated
+ to use cythonize which properly handles dependencies. The old extension can
+ still be found in ``Cython.Distutils.old_build_ext`` and is now deprecated.
+ * Calls to Python functions are faster, following the recent "FastCall"
+ optimisations that Victor Stinner implemented for CPython 3.6.
+ See https://bugs.python.org/issue27128 and related issues.
+ * The new METH_FASTCALL calling convention for PyCFunctions is supported
+ in CPython 3.6. See https://bugs.python.org/issue27810
+ * C++ classes can now have typedef members. STL containers updated with
+ value_type.
+ * Support for bazel using a the pyx_library rule in //Tools:rules.bzl.
+ * Initial support for using Cython modules in Pyston. Patch by Daetalus.
+ * Dynamic Python attributes are allowed on cdef classes if an attribute
+ ``cdef dict __dict__`` is declared in the class. Patch by empyrical.
+ * Cython implemented C++ classes can make direct calls to base class methods.
+ Patch by empyrical.
+ * New directive ``cython.no_gc`` to fully disable GC for a cdef class.
+ Patch by Claudio Freire.
+ * Buffer variables are no longer excluded from ``locals()``.
+ Patch by da-woods.
+ * Building f-strings is faster, especially when formatting C integers.
+ * for-loop iteration over "std::string".
+ * ``libc/math.pxd`` provides ``e`` and ``pi`` as alias constants to simplify
+ usage as a drop-in replacement for Python's math module.
+ * Speed up cython.inline().
+ * Binary lshift operations with small constant Python integers are faster.
+ * Some integer operations on Python long objects are faster in Python 2.7.
+ * Support for the C++ ``typeid`` operator.
+ + Significant Bugs fixed
+ * Division of complex numbers avoids overflow by using Smith's method.
+ * Some function signatures in ``libc.math`` and ``numpy.pxd`` were incorrect.
+ Pach by Michael Seifert.
+ + Other changes
+ * The "%%cython" IPython/jupyter magic now defaults to the language level of
+ the current jupyter kernel. The language level can be set explicitly with
+ "%%cython -2" or "%%cython -3".
+- update to version 0.24.1:
+ * IPython cell magic was lacking a good way to enable Python 3 code
+ semantics. It can now be used as "%%cython -3".
+ * Follow a recent change in PEP 492 and CPython 3.5.1 that now
+ requires the __aiter__() method of asynchronous iterators to be a
+ simple def method instead of an async def method.
+ * Coroutines and generators were lacking the __module__ special
+ attribute.
+ * C++ std::complex values failed to auto-convert from and to Python
+ complex objects.
+ * Namespaced C++ types could not be used as memory view types due to
+ lack of name mangling. Patch by Ivan Smirnov.
+ * Assignments between identical C++ types that were declared with
+ differently typedefed template types could fail.
+ * Rebuilds could fail to evaluate dependency timestamps in C++
+ mode. Patch by Ian Henriksen.
+ * Macros defined in the distutils compiler option do not require
+ values anymore. Patch by Ian Henriksen.
+ * Minor fixes for MSVC, Cygwin and PyPy.
+- specfile:
+ * changed to https for source url
+ * updated source url to files.pythonhosted.org
+- update to version 0.24:
+ * Features added
+ + PEP 498: Literal String Formatting (f-strings). Original patch
+ by Jelle Zijlstra. https://www.python.org/dev/peps/pep-0498/
+ + PEP 515: Underscores as visual separators in number
+ literals. https://www.python.org/dev/peps/pep-0515/
+ + Parser was adapted to some minor syntax changes in Py3.6,
+ e.g. https://bugs.python.org/issue9232
+ + The embedded C code comments that show the original source code
+ can be discarded with the new directive
+ emit_code_comments=False.
+ + Cpdef enums are now first-class iterable, callable types in
+ Python.
+ + Ctuples can now be declared in pure Python code.
+ + Posix declarations for DLL loading and stdio extensions were
+ added. Patch by Lars Buitinck.
+ + The Py2-only builtins unicode(), xrange(), reduce() and long are
+ now also available in compile time DEF expressions when
+ compiling with Py3.
+ + Exception type tests have slightly lower overhead. This fixes
+ ticket 868.
+ + @property syntax fully supported in cdef classes, old syntax
+ deprecated.
+ + C++ classes can now be declared with default template
+ parameters.
+ * Bugs fixed
+ + C++ exceptions raised by overloaded C++ operators were not
+ always handled. Patch by Ian Henriksen.
+ + C string literals were previously always stored as non-const
+ global variables in the module. They are now stored as global
+ constants when possible, and otherwise as non-const C string
+ literals in the generated code that uses them. This improves
+ compatibility with strict C compiler options and prevents
+ non-const strings literals with the same content from being
+ incorrectly merged.
+ + Compile time evaluated str expressions (DEF) now behave in a
+ more useful way by turning into Unicode strings when compiling
+ under Python 3. This allows using them as intermediate values in
+ expressions. Previously, they always evaluated to bytes objects.
+ + isinf() declarations in libc/math.pxd and numpy/math.pxd now
+ reflect the actual tristate int return value instead of using
+ bint.
+ + Literal assignments to ctuples avoid Python tuple round-trips in
+ some more corner cases.
+ + Iteration over dict(...).items() failed to get optimised when
+ dict arguments included keyword arguments.
+ + cProfile now correctly profiles cpdef functions and methods.
+- update to version 0.23.5:
+ * Compile errors and warnings in integer type conversion code. This
+ fixes ticket 877. Patches by Christian Neukirchen, Nikolaus Rath,
+ Ian Henriksen.
+ * Reference leak when "*args" argument was reassigned in closures.
+ * Truth-testing Unicode strings could waste time and memory in
+ Py3.3+.
+ * Return values of async functions could be ignored and replaced by
+ None.
+ * Compiler crash in CPython 3.6.
+ * Fix prange() to behave identically to range(). The end condition
+ was miscalculated when the range was not exactly divisible by the
+ step.
+ * Optimised all(genexpr)/any(genexpr) calls could warn about unused
+ code. This fixes ticket 876.
+- Remove unneeded python-Cython-c++11.patch
+
+-------------------------------------------------------------------
Old:
----
Cython-0.23.4.tar.gz
python-Cython-c++11.patch
New:
----
Cython-0.25.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-Cython.spec ++++++
--- /var/tmp/diff_new_pack.bMeuYe/_old 2016-11-01 09:49:56.000000000 +0100
+++ /var/tmp/diff_new_pack.bMeuYe/_new 2016-11-01 09:49:56.000000000 +0100
@@ -17,15 +17,14 @@
Name: python-Cython
-Version: 0.23.4
+Version: 0.25.1
Release: 0
Url: http://www.cython.org
Summary: The Cython compiler for writing C extensions for the Python language
License: Apache-2.0
Group: Development/Languages/Python
-Source: http://pypi.python.org/packages/source/C/Cython/Cython-%{version}.tar.gz
+Source: https://files.pythonhosted.org/packages/source/C/Cython/Cython-%{version}.t…
Source1: python-Cython-rpmlintrc
-Patch1: python-Cython-c++11.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: fdupes
BuildRequires: gcc-c++
@@ -58,7 +57,6 @@
%prep
%setup -q -n Cython-%{version}
-%patch1
# Fix non-executable scripts
sed -i "s|^#!.*||" Cython/Debugger/{libpython,Cygdb}.py cython.py
# Fix EOL encoding
@@ -75,8 +73,6 @@
for p in cython cythonize cygdb ; do
mv %{buildroot}%{_bindir}/$p %{buildroot}%{_bindir}/$p-%{py_ver}
ln -s -f %{_sysconfdir}/alternatives/$p %{buildroot}%{_bindir}/$p
- # create a dummy target for /etc/alternatives/$p
- touch %{buildroot}%{_sysconfdir}/alternatives/$p
done
%fdupes -s %{buildroot}%{python_sitearch} %{buildroot}%{_docdir}
@@ -100,7 +96,9 @@
#mv ./tests/run/cpdef_extern_func.pyx ./tests/run/cpdef_extern_func.pyx.TNT.txt
#sleep 60
%endif
+%ifarch x86_64
python runtests.py -vv
+%endif
%files
%defattr(-,root,root,-)
++++++ Cython-0.23.4.tar.gz -> Cython-0.25.1.tar.gz ++++++
++++ 32109 lines of diff (skipped)
Hello community,
here is the log from the commit of package python3-Cython for openSUSE:Factory checked in at 2016-11-01 09:49:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-Cython (Old)
and /work/SRC/openSUSE:Factory/.python3-Cython.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-Cython"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-Cython/python3-Cython.changes 2016-08-22 13:59:36.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python3-Cython.new/python3-Cython.changes 2016-11-01 09:49:45.000000000 +0100
@@ -1,0 +2,58 @@
+Fri Oct 28 12:40:24 UTC 2016 - toddrme2178(a)gmail.com
+
+- Update to version 0.25.1
+ + Bugs fixed
+ * Fixes a bug with ``isinstance(o, Exception)`` (Github issue #1496).
+ * Fixes bug with ``cython.view.array`` missing utility code in some cases
+ (Github issue #1502).
+ + Other changes
+ * The distutils extension ``Cython.Distutils.build_ext`` has been reverted,
+ temporarily, to be ``old_build_ext`` to give projects time to migrate.
+ The new build_ext is available as ``new_build_ext``.
+
+-------------------------------------------------------------------
+Wed Oct 26 01:36:12 UTC 2016 - toddrme2178(a)gmail.com
+
+- update to version 0.25:
+ + Features added
+ * def/cpdef methods of cdef classes benefit from Cython's internal function
+ implementation, which enables introspection and line profiling for them.
+ Implementation sponsored by Turbostream (www.turbostream-cfd.com).
+ * The distutils extension ``Cython.Distutils.build_ext`` has now been updated
+ to use cythonize which properly handles dependencies. The old extension can
+ still be found in ``Cython.Distutils.old_build_ext`` and is now deprecated.
+ * Calls to Python functions are faster, following the recent "FastCall"
+ optimisations that Victor Stinner implemented for CPython 3.6.
+ See https://bugs.python.org/issue27128 and related issues.
+ * The new METH_FASTCALL calling convention for PyCFunctions is supported
+ in CPython 3.6. See https://bugs.python.org/issue27810
+ * C++ classes can now have typedef members. STL containers updated with
+ value_type.
+ * Support for bazel using a the pyx_library rule in //Tools:rules.bzl.
+ * Initial support for using Cython modules in Pyston. Patch by Daetalus.
+ * Dynamic Python attributes are allowed on cdef classes if an attribute
+ ``cdef dict __dict__`` is declared in the class. Patch by empyrical.
+ * Cython implemented C++ classes can make direct calls to base class methods.
+ Patch by empyrical.
+ * New directive ``cython.no_gc`` to fully disable GC for a cdef class.
+ Patch by Claudio Freire.
+ * Buffer variables are no longer excluded from ``locals()``.
+ Patch by da-woods.
+ * Building f-strings is faster, especially when formatting C integers.
+ * for-loop iteration over "std::string".
+ * ``libc/math.pxd`` provides ``e`` and ``pi`` as alias constants to simplify
+ usage as a drop-in replacement for Python's math module.
+ * Speed up cython.inline().
+ * Binary lshift operations with small constant Python integers are faster.
+ * Some integer operations on Python long objects are faster in Python 2.7.
+ * Support for the C++ ``typeid`` operator.
+ + Significant Bugs fixed
+ * Division of complex numbers avoids overflow by using Smith's method.
+ * Some function signatures in ``libc.math`` and ``numpy.pxd`` were incorrect.
+ Pach by Michael Seifert.
+ + Other changes
+ * The "%%cython" IPython/jupyter magic now defaults to the language level of
+ the current jupyter kernel. The language level can be set explicitly with
+ "%%cython -2" or "%%cython -3".
+
+-------------------------------------------------------------------
Old:
----
Cython-0.24.1.tar.gz
New:
----
Cython-0.25.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-Cython.spec ++++++
--- /var/tmp/diff_new_pack.nOo0Bu/_old 2016-11-01 09:49:46.000000000 +0100
+++ /var/tmp/diff_new_pack.nOo0Bu/_new 2016-11-01 09:49:46.000000000 +0100
@@ -17,7 +17,7 @@
Name: python3-Cython
-Version: 0.24.1
+Version: 0.25.1
Release: 0
Url: http://www.cython.org
Summary: The Cython compiler for writing C extensions for the Python language
@@ -33,7 +33,7 @@
BuildRequires: python3-xml
Requires: python3-xml
Requires(post): update-alternatives
-Requires(preun): update-alternatives
+Requires(postun): update-alternatives
%description
The Cython language makes writing C extensions for the Python language as
@@ -78,15 +78,18 @@
--slave %{_bindir}/cythonize cythonize %{_bindir}/cythonize-%{py3_ver} \
--slave %{_bindir}/cygdb cygdb %{_bindir}/cygdb-%{py3_ver}
-%preun
+%postun
if [ $1 -eq 0 ] ; then
%_sbindir/update-alternatives --remove cython %{_bindir}/cython-%{py3_ver}
fi
%if 0%{?suse_version} != 1315 && 0%{?suse_version} != 1320
+%ifnarch %{ix86}
%check
+export LANG=en_US.UTF-8
python3 runtests.py -vv
%endif
+%endif
%files
%defattr(-,root,root,-)
++++++ Cython-0.24.1.tar.gz -> Cython-0.25.1.tar.gz ++++++
++++ 11416 lines of diff (skipped)
Hello community,
here is the log from the commit of package yast2-trans for openSUSE:Factory checked in at 2016-11-01 09:49:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-trans (Old)
and /work/SRC/openSUSE:Factory/.yast2-trans.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-trans"
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-trans/yast2-trans.changes 2016-10-18 13:25:53.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-trans.new/yast2-trans.changes 2016-11-01 09:49:29.000000000 +0100
@@ -1,0 +2,45 @@
+Wed Oct 26 07:55:11 UTC 2016 - git(a)opensuse.org
+
+- Update to version 84.87.20161026.cec15e5:
+ * New POT for text domain 'add-on'.
+ * New POT for text domain 'alternatives'.
+ * New POT for text domain 'base'.
+ * New POT for text domain 'bootloader'.
+ * New POT for text domain 'cio'.
+ * New POT for text domain 'control'.
+ * New POT for text domain 'firstboot'.
+ * New POT for text domain 'gtk'.
+ * New POT for text domain 'http-server'.
+ * New POT for text domain 'installation'.
+ * New POT for text domain 'network'.
+ * New POT for text domain 'ntp-client'.
+ * New POT for text domain 'packager'.
+ * New POT for text domain 'qt-pkg'.
+ * New POT for text domain 'rear'.
+ * New POT for text domain 'registration'.
+ * New POT for text domain 'samba-client'.
+ * New POT for text domain 'storage'.
+ * New POT for text domain 'vpn'.
+ * Translated using Weblate (Catalan)
+ * Translated using Weblate (Chinese (Taiwan))
+ * Translated using Weblate (Czech)
+ * Translated using Weblate (Dutch)
+ * Translated using Weblate (French)
+ * Translated using Weblate (German)
+ * Translated using Weblate (Indonesian)
+ * Translated using Weblate (Japanese)
+ * Translated using Weblate (Javanese)
+ * Translated using Weblate (Lithuanian)
+ * Translated using Weblate (Persian)
+ * Translated using Weblate (Portuguese (Brazil))
+ * Translated using Weblate (Russian)
+ * Translated using Weblate (Slovak)
+ * Translated using Weblate (Swedish)
+ * Translated using Weblate (Tajik)
+ * Translated using Weblate (Ukrainian)
+ * Use own textdomain (storage-ng instead of storage) (bsc#1004050)
+ * fix arabic headers that I just messed up
+ * remove shortcut in Arabic GUI element; boo#954723
+ * rpm-groups: Update po files for the new pot file.
+
+-------------------------------------------------------------------
Old:
----
yast2-trans-84.87.20161012.ac9e714.tar.xz
New:
----
yast2-trans-84.87.20161026.cec15e5.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-trans.spec ++++++
--- /var/tmp/diff_new_pack.nvb8Z5/_old 2016-11-01 09:49:30.000000000 +0100
+++ /var/tmp/diff_new_pack.nvb8Z5/_new 2016-11-01 09:49:30.000000000 +0100
@@ -17,7 +17,7 @@
Name: yast2-trans
-Version: 84.87.20161012.ac9e714
+Version: 84.87.20161026.cec15e5
Release: 0
Summary: YaST2 - Translation Container Package
License: GPL-2.0+
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.nvb8Z5/_old 2016-11-01 09:49:31.000000000 +0100
+++ /var/tmp/diff_new_pack.nvb8Z5/_new 2016-11-01 09:49:31.000000000 +0100
@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">git://github.com/yast/yast-translations.git</param>
- <param name="changesrevision">ac9e71447d13b3af70b69954a47a09ebfb6091aa</param></service></servicedata>
\ No newline at end of file
+ <param name="changesrevision">cec15e5cbe79a7773cd9de18c7f57f4f19429828</param></service></servicedata>
\ No newline at end of file
++++++ yast2-trans-84.87.20161012.ac9e714.tar.xz -> yast2-trans-84.87.20161026.cec15e5.tar.xz ++++++
/work/SRC/openSUSE:Factory/yast2-trans/yast2-trans-84.87.20161012.ac9e714.tar.xz /work/SRC/openSUSE:Factory/.yast2-trans.new/yast2-trans-84.87.20161026.cec15e5.tar.xz differ: char 26, line 1