diff --git a/Cython-0.29.24.tar.gz b/Cython-0.29.24.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..662aa261cf035b23f75ac4116ce4171490291458 Binary files /dev/null and b/Cython-0.29.24.tar.gz differ diff --git a/python-Cython.spec b/python-Cython.spec new file mode 100644 index 0000000000000000000000000000000000000000..8d37ce9adde8a43a723dc8ada341914713e1e226 --- /dev/null +++ b/python-Cython.spec @@ -0,0 +1,73 @@ +%global _empty_manifest_terminate_build 0 +Name: python-Cython +Version: 0.29.24 +Release: 1 +Summary: The Cython compiler for writing C extensions for the Python language. +License: Apache 2.0 +URL: https://github.com/cython/cython +Source0: https://files.pythonhosted.org/packages/59/e3/78c921adf4423fff68da327cc91b73a16c63f29752efe7beb6b88b6dd79d/Cython-0.29.24.tar.gz + + +%description +The most widely used Python to C compiler + +%package -n python3-Cython +Summary: The Cython compiler for writing C extensions for the Python language. +Provides: python-Cython +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-Cython +The most widely used Python to C compiler + +%package help +Summary: Development documents and examples for Cython +Provides: python3-Cython-doc +%description help +The most widely used Python to C compiler + +%prep +%autosetup -n Cython-0.29.24 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-Cython -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Oct 12 2021 Python_Bot - 0.29.24-1 +- Package Init