commit 40eef20fb92dc8b1f40cc6b5e20d8e5be8e5be33f563d62d3f5e3d26281a5af2 Author: Sascha Peilicke Date: Fri Sep 2 09:55:13 2011 +0000 - Update to version 0.15: * For loop docs fix and pointer iteration. * Pure decorators now implemented. * fix bug #707: optimised dict iteration over non-trivial expressions fail... * optimise object.pop() for sets * Py2.4 fix: PySet_Pop() appeared in Py2.5 * Py3.3 test fix * Support module level control flow and Entry-level error on uninitialized - Spec file cleanup: - Fixed wrong EOL encodings and non-excutable scripts - Set license to Apache-2.0 - Run testsuite - updated to 0.14.1 - changes too numerous to list, see the following for more details: * http://wiki.cython.org/ReleaseNotes-0.13 * http://wiki.cython.org/ReleaseNotes-0.14 * http://wiki.cython.org/ReleaseNotes-0.14.1 - Use renewed python-macros, also for compatibility with other build targets. - Initial package of Cython 0.12.1 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Cython-0.15.tar.gz b/Cython-0.15.tar.gz new file mode 100644 index 0000000..e7c02bc --- /dev/null +++ b/Cython-0.15.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059775c832014d5e2550e0293fd1bfdc9330ebc98b844a86d4ae6251fde8fee7 +size 1543419 diff --git a/python-Cython.changes b/python-Cython.changes new file mode 100644 index 0000000..dd178aa --- /dev/null +++ b/python-Cython.changes @@ -0,0 +1,35 @@ +------------------------------------------------------------------- +Fri Sep 2 09:50:25 UTC 2011 - saschpe@suse.de + +- Update to version 0.15: + * For loop docs fix and pointer iteration. + * Pure decorators now implemented. + * fix bug #707: optimised dict iteration over non-trivial expressions fail... + * optimise object.pop() for sets + * Py2.4 fix: PySet_Pop() appeared in Py2.5 + * Py3.3 test fix + * Support module level control flow and Entry-level error on uninitialized +- Spec file cleanup: + - Fixed wrong EOL encodings and non-excutable scripts + - Set license to Apache-2.0 + - Run testsuite + +------------------------------------------------------------------- +Wed Apr 20 00:29:18 UTC 2011 - prusnak@opensuse.org + +- updated to 0.14.1 + - changes too numerous to list, see the following for more details: + * http://wiki.cython.org/ReleaseNotes-0.13 + * http://wiki.cython.org/ReleaseNotes-0.14 + * http://wiki.cython.org/ReleaseNotes-0.14.1 + +------------------------------------------------------------------- +Sun Jun 6 21:21:32 UTC 2010 - dimstar@opensuse.org + +- Use renewed python-macros, also for compatibility with other + build targets. + +------------------------------------------------------------------- +Sun Jun 6 12:14:18 UTC 2010 - dimstar@opensuse.org + +- Initial package of Cython 0.12.1 diff --git a/python-Cython.spec b/python-Cython.spec new file mode 100644 index 0000000..d6dbeda --- /dev/null +++ b/python-Cython.spec @@ -0,0 +1,68 @@ +# +# 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. +# +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: python-Cython +Version: 0.15 +Release: 0 +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 +well-known Pyrex_, but supports more cutting edge functionality and +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} + +%check +python setup.py check + +%files +%defattr(-,root,root,-) +%doc COPYING.txt LICENSE.txt README.txt ToDo.txt USAGE.txt Doc Demos +%{_bindir}/cy* +%{python_sitearch}/* + +%changelog