diff --git a/Cython-0.21.1.tar.gz b/Cython-0.21.1.tar.gz new file mode 100644 index 0000000..74094f9 --- /dev/null +++ b/Cython-0.21.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f64d225186ec7601249ebd1e8f8a7c33767974b493de6783c5b3dd0415bf35 +size 2743480 diff --git a/Cython-0.21.tar.gz b/Cython-0.21.tar.gz deleted file mode 100644 index 3343e24..0000000 --- a/Cython-0.21.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cd5787fb3f1eaf8326b21bdfcb90aabd3eca7c214c5b7b503fbb82da97bbaa0 -size 1490358 diff --git a/Cython-fix-version-detection.patch b/Cython-fix-version-detection.patch deleted file mode 100644 index 444498a..0000000 --- a/Cython-fix-version-detection.patch +++ /dev/null @@ -1,44 +0,0 @@ -From: toddrme2178@gmail.com -Date: 2014-09-12 12:49:00 +0000 -Subject: Restore version information -References: https://github.com/PyTables/PyTables/issues/386 -Upstream: included - -Restore version information for Cython. -Despite what the upstream header says, python-tables/python3-tables is NOT -the only package affected by this. - - -Original header below - - -From 43342ab90704f5f850733544288485048160003d Mon Sep 17 00:00:00 2001 -From: Stefan Behnel -Date: Thu, 11 Sep 2014 19:35:52 +0200 -Subject: [PATCH] provide "Cython.Compiler.Main.Version" to keep supporting old - PyTables versions that import it from there - ---HG-- -extra : transplant_source : %B1%BC%5C%CD%A6%EEmr4B%0F%AF%1C%E0yq9%EA%ADX ---- - Cython/Compiler/Main.py | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py -index 21b7fe1..37662d6 100644 ---- a/Cython/Compiler/Main.py -+++ b/Cython/Compiler/Main.py -@@ -22,10 +22,12 @@ - from .Scanning import PyrexScanner, FileSourceDescriptor - from .Errors import PyrexError, CompileError, error, warning - from .Symtab import ModuleScope --from .. import __version__ as version - from .. import Utils - from . import Options - -+from . import Version # legacy import needed by old PyTables versions -+version = Version.version # legacy attribute - use "Cython.__version__" instead -+ - module_name_pattern = re.compile(r"[A-Za-z_][A-Za-z0-9_]*(\.[A-Za-z_][A-Za-z0-9_]*)*$") - - verbose = 0 diff --git a/python-Cython.changes b/python-Cython.changes index f9ad4e5..6b03e75 100644 --- a/python-Cython.changes +++ b/python-Cython.changes @@ -1,3 +1,39 @@ +------------------------------------------------------------------- +Thu Dec 18 10:48:28 UTC 2014 - p.drouand@gmail.com + +- Improve update-alternatives. +- Remove Cython-fix-version-detection.patch + (got fixed upstream) +- update to version 0.21.1: + * Features added + - New cythonize option -a to generate the annotated HTML source view. + - Missing C-API declarations in cpython.unicode were added. + - Passing language='c++' into cythonize() globally enables C++ mode + for all modules that were not passed as Extension objects + (i.e. only source files and file patterns). + - Py_hash_t is a known type (used in CPython for hash values). + - PySlice_*() C-API functions are available from the cpython.slice module. + - Allow arrays of C++ classes. + * Bugs fixed + - Reference leak for non-simple Python expressions in boolean and/or expressions. + - To fix a name collision and to reflect availability on host + platforms, standard C declarations [ clock(), time(), struct tm + and tm* functions ] were moved from posix/time.pxd to a new + libc/time.pxd. Patch by Charles Blake. + - Rerunning unmodified modules in IPython's cython support + failed. Patch by Matthias Bussonier. + - Casting C++ std::string to Python byte strings failed when + auto-decoding was enabled. + - Fatal exceptions in global module init code could lead to + crashes if the already created module was used later on + (e.g. through a stale reference in sys.modules or elsewhere). + - cythonize.py script was not installed on MS-Windows. + * Other changes + - Compilation no longer fails hard when unknown compilation + options are passed. Instead, it raises a warning and ignores + them (as it did silently before 0.21). This will be changed back + to an error in a future release. + ------------------------------------------------------------------- Sun Nov 09 22:57:00 UTC 2014 - Led diff --git a/python-Cython.spec b/python-Cython.spec index f6fcf12..bd5de05 100644 --- a/python-Cython.spec +++ b/python-Cython.spec @@ -17,7 +17,7 @@ Name: python-Cython -Version: 0.21 +Version: 0.21.1 Release: 0 Url: http://www.cython.org Summary: The Cython compiler for writing C extensions for the Python language @@ -25,8 +25,6 @@ License: Apache-2.0 Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/C/Cython/Cython-%{version}.tar.gz Source1: python-Cython-rpmlintrc -#PATCH-FIX-UPSTREAM Cython-fix-version-detection.patch https://github.com/cython/cython/commit/43342ab90704f5f850733544288485048160003d -Patch0: Cython-fix-version-detection.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes BuildRequires: python-devel @@ -57,7 +55,6 @@ code. %prep %setup -q -n Cython-%{version} -%patch0 -p1 sed -i "s|^#!.*||" Cython/Debugger/{libpython,Cygdb}.py cython.py # Fix non-executable scripts sed -i "s|\r||" Demos/callback/{README.txt,cheesefinder.h} Demos/embed/Makefile.{unix,msc.static} Doc/primes.c # Fix EOL encoding mv bin/cython bin/cython-%{py_ver} @@ -76,13 +73,12 @@ ln -s %{_bindir}/cython-%{py_ver} %{buildroot}%{_bindir}/cython ln -s %{_bindir}/cythonize-%{py_ver} %{buildroot}%{_bindir}/cythonize ln -s %{_bindir}/cygdb-%{py_ver} %{buildroot}%{_bindir}/cygdb %fdupes -s %{buildroot}%{python_sitearch} %{buildroot}%{_docdir} +rm -rf %{buildroot}%{python_sitearch}/__pycache__/ +# avoid conflicts with python 2 version -%pre -# Since /usr/bin/cython and /usr/bin/cygdb became ghosted to be used with update-alternatives, we have to get rid -# of the old binary resulting from the non-update-alternativies-ified package: -[ -h %{_bindir}/cygdb ] || rm -f %{_bindir}/cygdb -[ -h %{_bindir}/cythonize ] || rm -f %{_bindir}/cythonize -[ -h %{_bindir}/cython ] || rm -f %{_bindir}/cython +# Disabled testsuite as it takes a long time: +#%%check +#python runtests.py %post update-alternatives \ @@ -102,12 +98,15 @@ fi %files %defattr(-,root,root,-) %doc COPYING.txt LICENSE.txt README.txt ToDo.txt USAGE.txt Doc Demos -%ghost %{_bindir}/cygdb +%{_bindir}/cygdb +%{_bindir}/cython +%{_bindir}/cythonize %{_bindir}/cygdb-%{py_ver} -%ghost %{_bindir}/cython %{_bindir}/cython-%{py_ver} -%ghost %{_bindir}/cythonize %{_bindir}/cythonize-%{py_ver} +%ghost %{_sysconfdir}/alternatives/cygdb +%ghost %{_sysconfdir}/alternatives/cython +%ghost %{_sysconfdir}/alternatives/cythonize %{python_sitearch}/Cython/ %{python_sitearch}/Cython-%{version}-py%{py_ver}.egg-info %{python_sitearch}/cython.py*