Compare commits
10 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f61b120d21 | ||
|
|
802a2ec21b | ||
|
|
20c0bde185 | ||
|
|
8aadac643c | ||
|
|
6c9e50e943 | ||
|
|
f0162fe950 | ||
|
|
f9625933d2 | ||
|
|
0dfd9c6b28 | ||
|
|
0a9e83e88f | ||
|
|
f292bba31f |
5 changed files with 57 additions and 28 deletions
|
|
@ -1 +0,0 @@
|
|||
Cython-0.9.8.tar.gz
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Cython-0.11.3.tar.gz
|
||||
60
Cython.spec
60
Cython.spec
|
|
@ -3,14 +3,18 @@
|
|||
|
||||
|
||||
Name: Cython
|
||||
Version: 0.9.8
|
||||
Release: 2%{?dist}
|
||||
Version: 0.11.3
|
||||
#Release: 1.rc1%{?dist}
|
||||
Release: 1%{?dist}
|
||||
Summary: A language for writing Python extension modules
|
||||
|
||||
#%define upstreamversion %{version}.rc1
|
||||
%define upstreamversion %{version}
|
||||
|
||||
Group: Development/Tools
|
||||
License: Python
|
||||
URL: http://www.cython.org
|
||||
Source0: http://www.cython.org/Cython-%{version}.tar.gz
|
||||
Source0: http://www.cython.org/Cython-%{upstreamversion}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: python-devel python-setuptools
|
||||
|
|
@ -29,7 +33,7 @@ For more info, see:
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -n Cython-%{version}
|
||||
%setup -q -n %{name}-%{upstreamversion}
|
||||
|
||||
|
||||
%build
|
||||
|
|
@ -45,12 +49,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%check
|
||||
%{__python} runtests.py
|
||||
%{__python} runtests.py -x numpy
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/cython
|
||||
%{python_sitearch}/Cython
|
||||
%{python_sitearch}/cython.py*
|
||||
%{python_sitearch}/pyximport
|
||||
%if 0%{?fedora} >= 9
|
||||
%{python_sitearch}/Cython*egg-info
|
||||
%endif
|
||||
|
|
@ -58,6 +64,50 @@ rm -rf $RPM_BUILD_ROOT
|
|||
|
||||
|
||||
%changelog
|
||||
* Sun Sep 27 2009 Neal Becker <ndbecker2@gmail.com> - 0.11.3-1.rc1
|
||||
- Update to 0.11.3rc1
|
||||
- Update to 0.11.3
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* 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
|
||||
|
|
|
|||
21
Makefile
21
Makefile
|
|
@ -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)
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
dac0f6c217437819f620da18a97d505f Cython-0.9.8.tar.gz
|
||||
470d1f928886f4e59463d7ead5d5e300 Cython-0.11.3.tar.gz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue