|
@@ -1,15 +1,15 @@
|
|
-Summary: C-Extensions for Python
|
|
|
|
|
|
+Summary: A language for writing Python extension modules
|
|
|
|
+Summary(ja): Python 拡張モジュールを簡単に作成するためのプログラミング言語
|
|
Name: Cython
|
|
Name: Cython
|
|
-Version: 0.19.2
|
|
|
|
|
|
+Version: 0.21.2
|
|
Release: 1%{?_dist_release}
|
|
Release: 1%{?_dist_release}
|
|
|
|
|
|
-Group: Development/Tools
|
|
|
|
|
|
+Group: Development/Languages
|
|
License: Apache
|
|
License: Apache
|
|
URL: http://cython.org/
|
|
URL: http://cython.org/
|
|
Source0: http://cython.org/release/%{name}-%{version}.tar.gz
|
|
Source0: http://cython.org/release/%{name}-%{version}.tar.gz
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
-
|
|
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-devel
|
|
|
|
|
|
Vendor: Project Vine
|
|
Vendor: Project Vine
|
|
@@ -17,17 +17,13 @@ Distribution: Vine Linux
|
|
Packager: Takemikaduchi
|
|
Packager: Takemikaduchi
|
|
|
|
|
|
%description
|
|
%description
|
|
-Cython is a language that makes writing C extensions for the Python language
|
|
|
|
-as easy as Python itself. Cython is based on the well-known Pyrex, but supports
|
|
|
|
-more cutting edge functionality and optimizations.
|
|
|
|
|
|
+Cython is a language that makes writing C extensions for the Python language as easy as Python itself. Cython is based on the well-known Pyrex, but supports more cutting edge functionality and optimizations.
|
|
|
|
|
|
-The Cython language is very close to the Python language, but Cython additionally
|
|
|
|
-supports calling C functions and declaring C types on variables and class attributes.
|
|
|
|
|
|
+The Cython language is very close to the Python language, 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 allows the compiler to generate very efficient C code from Cython code.
|
|
The generated C code compiles with Python 2.4 and later (including Python 3).
|
|
The generated C code compiles with Python 2.4 and later (including Python 3).
|
|
|
|
|
|
-This makes Cython the ideal language for wrapping external C libraries, and for fast
|
|
|
|
- C modules that speed up the execution of Python code.
|
|
|
|
|
|
+This makes Cython the ideal language for wrapping external C libraries, and for fast C modules that speed up the execution of Python code.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
%prep
|
|
@@ -50,6 +46,7 @@ rm -rf $RPM_BUILD_ROOT
|
|
%doc COPYING.txt LICENSE.txt README.txt USAGE.txt
|
|
%doc COPYING.txt LICENSE.txt README.txt USAGE.txt
|
|
%{_bindir}/cygdb
|
|
%{_bindir}/cygdb
|
|
%{_bindir}/cython
|
|
%{_bindir}/cython
|
|
|
|
+%{_bindir}/cythonize
|
|
%{python_sitearch}/Cython
|
|
%{python_sitearch}/Cython
|
|
%{python_sitearch}/pyximport
|
|
%{python_sitearch}/pyximport
|
|
%{python_sitearch}/Cython-%{version}-py2.7.egg-info
|
|
%{python_sitearch}/Cython-%{version}-py2.7.egg-info
|
|
@@ -57,6 +54,10 @@ rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Wed Feb 4 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.21.2-1
|
|
|
|
+- new upstream release
|
|
|
|
+- moved to Development/Languages Group
|
|
|
|
+
|
|
* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.19.2-1
|
|
* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.19.2-1
|
|
- new upstream release
|
|
- new upstream release
|
|
|
|
|