Compare commits

...
Sign in to create a new pull request.

12 commits

Author SHA1 Message Date
Fedora Release Engineering
63fff639c9 dist-git conversion 2010-07-28 08:49:51 +00:00
Bill Nottingham
601fe79f43 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 00:16:59 +00:00
Neal Becker
a45ff92311 update to 0.11.2 2009-05-21 19:09:57 +00:00
Neal Becker
5a3abd7ecc update to 0.11.1 2009-04-16 13:19:17 +00:00
Neal Becker
7d2fa9318b update to 0.11 2009-03-14 13:05:59 +00:00
Neal Becker
ef09522485 update to 0.10.3 2008-12-17 12:29:31 +00:00
Neal Becker
9b046b6405 Update to 0.10.2 2008-12-01 13:42:23 +00:00
Neal Becker
2db25af2e2 Fix typo 2008-11-09 13:10:58 +00:00
Neal Becker
37ee66021c Add pximport 2008-11-09 12:54:02 +00:00
Neal Becker
7d466bae96 Update to 0.10 2008-11-09 12:43:21 +00:00
Neal Becker
bd4df13126 - Update to 0.9.8
- Install into python_sitearch
- Remove noarch
- Add %%check
2008-06-14 00:58:59 +00:00
Jesse Keating
74bbbf9f0a Initialize branch F-9 for Cython 2008-04-20 15:37:31 +00:00
5 changed files with 55 additions and 28 deletions

View file

@ -1 +0,0 @@
Cython-0.9.6.13.1.tar.gz

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
Cython-0.11.2.tar.gz

View file

@ -1,9 +1,10 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")}
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: Cython
Version: 0.9.6.13.1
Release: 3%{?dist}
Version: 0.11.2
Release: 1%{?dist}
Summary: A language for writing Python extension modules
Group: Development/Tools
@ -14,7 +15,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python-devel python-setuptools
Requires: python
BuildArch: noarch
%description
This is a development version of Pyrex, a language
@ -44,18 +44,66 @@ rm -rf $RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%check
%{__python} runtests.py -x numpy
%files
%defattr(-,root,root,-)
%{_bindir}/cython
%{python_sitelib}/Cython
%{python_sitearch}/Cython
%{python_sitearch}/cython.py*
%{python_sitearch}/pyximport
%if 0%{?fedora} >= 9
%{python_sitelib}/Cython*egg-info
%{python_sitearch}/Cython*egg-info
%endif
%doc *.txt Demos Doc Tools
%changelog
* Wed May 20 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.2-1
- Update to 0.11.2
* Thu Apr 16 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.1-1
- Update to 0.11.1
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-2
- Missed cython.py*
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-1
- Update to 0.11
- Exclude numpy from tests so we don't have to BR it
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Dec 17 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.3-1
- Update to 0.10.3
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.2-2
- Rebuild for Python 2.6
* Mon Dec 1 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.2-1
- Update to 0.10.2
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.10.1-2
- Rebuild for Python 2.6
* Wed Nov 19 2008 Neal Becker <ndbecker2@gmail.com> - 0.10.1-1
- Update to 0.10.1
* Sun Nov 9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-3
- Fix typo
* Sun Nov 9 2008 Neal Becker <ndbecker2@gmail.com> - 0.10-1
- Update to 0.10
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-2
- Install into python_sitearch
- Add %%check
* Fri Jun 13 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.8-1
- Update to 0.9.8
* Mon Apr 14 2008 José Matos <jamatos[AT]fc.up.pt> - 0.9.6.13.1-3
- Remove remaining --record.
- Add more documentation (Doc and Tools).

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: Cython
# $Id$
NAME := Cython
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -1 +1 @@
b84818d4cfcec68e6dfb71187e9f0b4b Cython-0.9.6.13.1.tar.gz
31a79d5c7365e1d18ff7be48d6c1026b Cython-0.11.2.tar.gz