2011-09-02 09:55:13 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-Cython
|
|
|
|
#
|
|
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
2011-09-05 14:38:13 +00:00
|
|
|
|
2011-09-02 09:55:13 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2011-09-05 14:38:13 +00:00
|
|
|
|
|
|
|
|
2011-09-02 09:55:13 +00:00
|
|
|
Name: python-Cython
|
|
|
|
Version: 0.15
|
2011-09-05 14:38:13 +00:00
|
|
|
Release: 1
|
2011-09-02 09:55:13 +00:00
|
|
|
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
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: python-devel
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%py_requires
|
|
|
|
%endif
|
|
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
|
|
|
|
%description
|
|
|
|
The Cython language makes writing C extensions for the Python language as
|
|
|
|
easy as Python itself. Cython is a source code translator based on the
|
2011-09-02 11:06:10 +00:00
|
|
|
well-known Pyrex, but supports more cutting edge functionality and
|
2011-09-02 09:55:13 +00:00
|
|
|
optimizations.
|
|
|
|
|
|
|
|
The Cython language is very close to the Python language (and most Python
|
|
|
|
code is also valid Cython code), but Cython additionally supports calling C
|
|
|
|
functions and declaring C types on variables and class attributes. This
|
|
|
|
allows the compiler to generate very efficient C code from Cython code.
|
|
|
|
|
|
|
|
This makes Cython the ideal language for writing glue code for external C
|
|
|
|
libraries, and for fast C modules that speed up the execution of Python
|
|
|
|
code.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n Cython-%{version}
|
|
|
|
sed -i "s/\r//" Demos/{callback/README.txt,callback/cheesefinder.h,embed/Makefile.unix,embed/Makefile.msc.static} Doc/primes.c # Fix EOL encoding
|
|
|
|
sed -i "1d" {Cython/Debugger/libpython,Cython/Debugger/Cygdb,cython}.py # Fix non-excutable scripts
|
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING.txt LICENSE.txt README.txt ToDo.txt USAGE.txt Doc Demos
|
|
|
|
%{_bindir}/cy*
|
|
|
|
%{python_sitearch}/*
|
|
|
|
|
|
|
|
%changelog
|