source: projects/specs/trunk/C/Cython/Cython-vl.spec @ 12277

Revision 12277, 3.5 KB checked in by tomop, 5 years ago (diff)

updated 22 packages

Cython-0.29.13-1

alsa-lib-1.1.9-1

alsa-plugins-1.1.9-1

alsa-tools-1.1.7-1

alsa-utils-1.1.9-1

cairo-1.16.0-1

evince-3.30.3-1

expat-2.2.9-1

file-roller-3.30.1-1

gtk-doc-1.32-2

libplist-2.0.0-1

libsndfile-1.0.28-1

ncurses-6.1-2

openssh-8.1p1-1

python-2.7.16-5

python3-3.5.7-4

rsync-3.1.3-1

samba-4.10.9-1

sudo-1.8.28-1

sysstat-12.1.7-1

tix-8.4.3-5

zabbix-4.0.13-1

Line 
1Summary:        A language for writing Python extension modules
2Summary(ja):    Python 拡張モジュールを簡単に作成するためのプログラミング言語
3Name:           Cython
4Version:        0.29.13
5Release:        1%{?_dist_release}
6
7Group:          Development/Languages
8License:        Apache
9URL:            http://cython.org/
10Source0:        http://cython.org/release/%{name}-%{version}.tar.gz
11
12BuildRoot:      %{_tmppath}/%{name}-%{version}-root
13BuildRequires:  python-devel
14BuildRequires:  python-setuptools
15BuildRequires:  python-rpm-macros
16
17Vendor:         Project Vine
18Distribution:   Vine Linux
19
20%description
21Cython 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.
22
23The 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.
24This allows the compiler to generate very efficient C code from Cython code.
25The generated C code compiles with Python 2.4 and later (including Python 3).
26
27This makes Cython the ideal language for wrapping external C libraries, and for fast C modules that speed up the execution of Python code.
28
29
30%package -n python3-Cython
31Summary:        A language for writing Python extension modules
32Summary(ja):    Python 拡張モジュールを簡単に作成するためのプログラミング言語
33Group:          Development/Languages
34BuildRequires:  python3-devel
35BuildRequires:  python3-setuptools
36BuildRequires:  python3-rpm-macros
37
38%description -n python3-Cython
39Cython 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.
40
41The 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.
42This allows the compiler to generate very efficient C code from Cython code.
43The generated C code compiles with Python 2.4 and later (including Python 3).
44
45This makes Cython the ideal language for wrapping external C libraries, and for fast C modules that speed up the execution of Python code.
46
47
48%prep
49%setup -q
50
51%build
52%{py_build}
53%{py3_build}
54
55
56%install
57rm -rf $RPM_BUILD_ROOT
58%{py_install}
59%{py3_install}
60
61
62%clean
63rm -rf $RPM_BUILD_ROOT
64
65
66%files
67%defattr(-,root,root,-)
68%license COPYING.txt LICENSE.txt
69%doc README.txt USAGE.txt
70#{_bindir}/cygdb
71#{_bindir}/cython
72#{_bindir}/cythonize
73%{python_sitearch}/Cython
74%{python_sitearch}/pyximport
75%{python_sitearch}/Cython-%{version}-*-info
76%{python_sitearch}/cython.*
77
78%files -n python3-Cython
79%license COPYING.txt LICENSE.txt
80%doc README.txt USAGE.txt
81%{_bindir}/cygdb
82%{_bindir}/cython
83%{_bindir}/cythonize
84%{python3_sitearch}/*
85
86
87%changelog
88* Fri Oct 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.29.13-1
89- new upstream release.
90
91* Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.23.4-1
92- new upstream release
93
94* Sun Jul 05 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.22.1-1
95- new upstream release
96
97* Wed Feb  4 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.21.2-1
98- new upstream release
99- moved to Development/Languages Group
100
101* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.19.2-1
102- new upstream release
103
104* Thu Mar 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18-1
105- new upstream release
106
107* Sun Apr 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.15.1-1
108- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.