Accepting request 265716 from home:posophe:branches:devel:languages:python
Fix update alternatives OBS-URL: https://build.opensuse.org/request/show/265716 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=51
This commit is contained in:
parent
7d36b8f501
commit
1c4cb116ce
3
Cython-0.21.1.tar.gz
Normal file
3
Cython-0.21.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:43f64d225186ec7601249ebd1e8f8a7c33767974b493de6783c5b3dd0415bf35
|
||||||
|
size 2743480
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0cd5787fb3f1eaf8326b21bdfcb90aabd3eca7c214c5b7b503fbb82da97bbaa0
|
|
||||||
size 1490358
|
|
@ -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 <stefan_ml@behnel.de>
|
|
||||||
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
|
|
@ -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 <ledest@gmail.com>
|
Sun Nov 09 22:57:00 UTC 2014 - Led <ledest@gmail.com>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-Cython
|
Name: python-Cython
|
||||||
Version: 0.21
|
Version: 0.21.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://www.cython.org
|
Url: http://www.cython.org
|
||||||
Summary: The Cython compiler for writing C extensions for the Python language
|
Summary: The Cython compiler for writing C extensions for the Python language
|
||||||
@ -25,8 +25,6 @@ License: Apache-2.0
|
|||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Source: http://pypi.python.org/packages/source/C/Cython/Cython-%{version}.tar.gz
|
Source: http://pypi.python.org/packages/source/C/Cython/Cython-%{version}.tar.gz
|
||||||
Source1: python-Cython-rpmlintrc
|
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
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
@ -57,7 +55,6 @@ code.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n Cython-%{version}
|
%setup -q -n Cython-%{version}
|
||||||
%patch0 -p1
|
|
||||||
sed -i "s|^#!.*||" Cython/Debugger/{libpython,Cygdb}.py cython.py # Fix non-executable scripts
|
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
|
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}
|
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}/cythonize-%{py_ver} %{buildroot}%{_bindir}/cythonize
|
||||||
ln -s %{_bindir}/cygdb-%{py_ver} %{buildroot}%{_bindir}/cygdb
|
ln -s %{_bindir}/cygdb-%{py_ver} %{buildroot}%{_bindir}/cygdb
|
||||||
%fdupes -s %{buildroot}%{python_sitearch} %{buildroot}%{_docdir}
|
%fdupes -s %{buildroot}%{python_sitearch} %{buildroot}%{_docdir}
|
||||||
|
rm -rf %{buildroot}%{python_sitearch}/__pycache__/
|
||||||
|
# avoid conflicts with python 2 version
|
||||||
|
|
||||||
%pre
|
# Disabled testsuite as it takes a long time:
|
||||||
# Since /usr/bin/cython and /usr/bin/cygdb became ghosted to be used with update-alternatives, we have to get rid
|
#%%check
|
||||||
# of the old binary resulting from the non-update-alternativies-ified package:
|
#python runtests.py
|
||||||
[ -h %{_bindir}/cygdb ] || rm -f %{_bindir}/cygdb
|
|
||||||
[ -h %{_bindir}/cythonize ] || rm -f %{_bindir}/cythonize
|
|
||||||
[ -h %{_bindir}/cython ] || rm -f %{_bindir}/cython
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
update-alternatives \
|
update-alternatives \
|
||||||
@ -102,12 +98,15 @@ fi
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYING.txt LICENSE.txt README.txt ToDo.txt USAGE.txt Doc Demos
|
%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}
|
%{_bindir}/cygdb-%{py_ver}
|
||||||
%ghost %{_bindir}/cython
|
|
||||||
%{_bindir}/cython-%{py_ver}
|
%{_bindir}/cython-%{py_ver}
|
||||||
%ghost %{_bindir}/cythonize
|
|
||||||
%{_bindir}/cythonize-%{py_ver}
|
%{_bindir}/cythonize-%{py_ver}
|
||||||
|
%ghost %{_sysconfdir}/alternatives/cygdb
|
||||||
|
%ghost %{_sysconfdir}/alternatives/cython
|
||||||
|
%ghost %{_sysconfdir}/alternatives/cythonize
|
||||||
%{python_sitearch}/Cython/
|
%{python_sitearch}/Cython/
|
||||||
%{python_sitearch}/Cython-%{version}-py%{py_ver}.egg-info
|
%{python_sitearch}/Cython-%{version}-py%{py_ver}.egg-info
|
||||||
%{python_sitearch}/cython.py*
|
%{python_sitearch}/cython.py*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user