forked from pool/python-Cython
Accepting request 655560 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/655560 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=43
This commit is contained in:
commit
bd980bd029
3
Cython-0.28.5.tar.gz
Normal file
3
Cython-0.28.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b64575241f64f6ec005a4d4137339fb0ba5e156e826db2fdb5f458060d9979e0
|
||||||
|
size 1881107
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:94916d1ede67682638d3cc0feb10648ff14dc51fb7a7f147f4fedce78eaaea97
|
|
||||||
size 2037177
|
|
@ -1,3 +1,48 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 6 09:45:54 UTC 2018 - ncutler@suse.com
|
||||||
|
|
||||||
|
- revert to version 0.28.5 to restore support for subinterpreters
|
||||||
|
needed by Ceph - stopgap measure until issue can be addressed
|
||||||
|
upstream (bsc#1118611)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 1 18:24:55 UTC 2018 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- update to version 0.29.1:
|
||||||
|
* Bugs fixed
|
||||||
|
+ Extensions compiled with MinGW-64 under Windows could
|
||||||
|
misinterpret integer objects larger than 15 bit and return
|
||||||
|
incorrect results. (Github issue #2670)
|
||||||
|
+ Cython no longer requires the source to be writable when copying
|
||||||
|
its data into a memory view slice. Patch by Andrey
|
||||||
|
Paramonov. (Github issue #2644)
|
||||||
|
+ Line tracing of try-statements generated invalid C code. (Github
|
||||||
|
issue #2274)
|
||||||
|
+ When using the warn.undeclared directive, Cython's own code
|
||||||
|
generated warnings that are now fixed. Patch by Nicolas
|
||||||
|
Pauss. (Github issue #2685)
|
||||||
|
+ Cython's memoryviews no longer require strides for setting the
|
||||||
|
shape field but only the PyBUF_ND flag to be set. Patch by John
|
||||||
|
Kirkham. (Github issue #2716)
|
||||||
|
+ Some C compiler warnings about unused memoryview code were
|
||||||
|
fixed. Patch by Ho Cheuk Ting. (Github issue #2588)
|
||||||
|
+ A C compiler warning about implicit signed/unsigned conversion
|
||||||
|
was fixed. (Github issue #2729)
|
||||||
|
+ Assignments to C++ references returned by operator[] could fail
|
||||||
|
to compile. (Github issue #2671)
|
||||||
|
+ The power operator and the support for NumPy math functions were
|
||||||
|
fixed in Pythran expressions. Patch by Serge Guelton. (Github
|
||||||
|
issues #2702, #2709)
|
||||||
|
+ Signatures with memory view arguments now show the expected type
|
||||||
|
when embedded in docstrings. Patch by Matthew Chan and Benjamin
|
||||||
|
Weigel. (Github issue #2634)
|
||||||
|
+ Some from ... cimport ... constructs were not correctly
|
||||||
|
considered when searching modified dependencies in cythonize()
|
||||||
|
to decide whether to recompile a module. Patch by Kryštof
|
||||||
|
Pilnáček. (Github issue #2638)
|
||||||
|
+ A struct field type in the cpython.array declarations was
|
||||||
|
corrected. Patch by John Kirkham. (Github issue #2712)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 17 15:29:49 UTC 2018 - Arun Persaud <arun@gmx.de>
|
Wed Oct 17 15:29:49 UTC 2018 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
# Tests currently fail randomly in OBS multiple local rund do not trigger them
|
# Tests currently fail randomly in OBS multiple local rund do not trigger them
|
||||||
%bcond_with test
|
%bcond_with test
|
||||||
Name: python-Cython-doc
|
Name: python-Cython-doc
|
||||||
Version: 0.29
|
Version: 0.28.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Cython compiler for writing C extensions for the Python language
|
Summary: The Cython compiler for writing C extensions for the Python language
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
@ -1,3 +1,48 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 6 09:45:54 UTC 2018 - ncutler@suse.com
|
||||||
|
|
||||||
|
- revert to version 0.28.5 to restore support for subinterpreters
|
||||||
|
needed by Ceph - stopgap measure until issue can be addressed
|
||||||
|
upstream (bsc#1118611)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 1 18:24:55 UTC 2018 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- update to version 0.29.1:
|
||||||
|
* Bugs fixed
|
||||||
|
+ Extensions compiled with MinGW-64 under Windows could
|
||||||
|
misinterpret integer objects larger than 15 bit and return
|
||||||
|
incorrect results. (Github issue #2670)
|
||||||
|
+ Cython no longer requires the source to be writable when copying
|
||||||
|
its data into a memory view slice. Patch by Andrey
|
||||||
|
Paramonov. (Github issue #2644)
|
||||||
|
+ Line tracing of try-statements generated invalid C code. (Github
|
||||||
|
issue #2274)
|
||||||
|
+ When using the warn.undeclared directive, Cython's own code
|
||||||
|
generated warnings that are now fixed. Patch by Nicolas
|
||||||
|
Pauss. (Github issue #2685)
|
||||||
|
+ Cython's memoryviews no longer require strides for setting the
|
||||||
|
shape field but only the PyBUF_ND flag to be set. Patch by John
|
||||||
|
Kirkham. (Github issue #2716)
|
||||||
|
+ Some C compiler warnings about unused memoryview code were
|
||||||
|
fixed. Patch by Ho Cheuk Ting. (Github issue #2588)
|
||||||
|
+ A C compiler warning about implicit signed/unsigned conversion
|
||||||
|
was fixed. (Github issue #2729)
|
||||||
|
+ Assignments to C++ references returned by operator[] could fail
|
||||||
|
to compile. (Github issue #2671)
|
||||||
|
+ The power operator and the support for NumPy math functions were
|
||||||
|
fixed in Pythran expressions. Patch by Serge Guelton. (Github
|
||||||
|
issues #2702, #2709)
|
||||||
|
+ Signatures with memory view arguments now show the expected type
|
||||||
|
when embedded in docstrings. Patch by Matthew Chan and Benjamin
|
||||||
|
Weigel. (Github issue #2634)
|
||||||
|
+ Some from ... cimport ... constructs were not correctly
|
||||||
|
considered when searching modified dependencies in cythonize()
|
||||||
|
to decide whether to recompile a module. Patch by Kryštof
|
||||||
|
Pilnáček. (Github issue #2638)
|
||||||
|
+ A struct field type in the cpython.array declarations was
|
||||||
|
corrected. Patch by John Kirkham. (Github issue #2712)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 17 15:29:49 UTC 2018 - Arun Persaud <arun@gmx.de>
|
Wed Oct 17 15:29:49 UTC 2018 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
@ -12,14 +12,14 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define oldpython python
|
%define oldpython python
|
||||||
Name: python-Cython
|
Name: python-Cython
|
||||||
Version: 0.29
|
Version: 0.28.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Cython compiler for writing C extensions for the Python language
|
Summary: The Cython compiler for writing C extensions for the Python language
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user