Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19f2d43dd7 | ||
|
|
be60239c71 | ||
|
|
76b2675c3f | ||
|
|
cb6de4a853 | ||
|
|
82d72dd9f5 | ||
|
|
cdcc3a4937 | ||
|
|
6c16fe5ff9 | ||
|
|
2ce27733d3 |
5 changed files with 39 additions and 29 deletions
|
|
@ -1 +0,0 @@
|
||||||
Cython-0.11.tar.gz
|
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Cython-0.12.1.tar.gz
|
||||||
43
Cython.spec
43
Cython.spec
|
|
@ -3,14 +3,19 @@
|
||||||
|
|
||||||
|
|
||||||
Name: Cython
|
Name: Cython
|
||||||
Version: 0.11
|
Version: 0.12.1
|
||||||
Release: 2%{?dist}
|
#Version: 0.13
|
||||||
|
#Release: 1.rc1%{?dist}
|
||||||
|
Release: 4%{?dist}
|
||||||
Summary: A language for writing Python extension modules
|
Summary: A language for writing Python extension modules
|
||||||
|
|
||||||
|
##%define upstreamversion %{version}.rc1
|
||||||
|
%define upstreamversion %{version}
|
||||||
|
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
License: Python
|
License: Python
|
||||||
URL: http://www.cython.org
|
URL: http://www.cython.org
|
||||||
Source0: http://www.cython.org/Cython-%{version}.tar.gz
|
Source: http://www.cython.org/Cython-%{upstreamversion}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
BuildRequires: python-devel python-setuptools
|
BuildRequires: python-devel python-setuptools
|
||||||
|
|
@ -29,7 +34,7 @@ For more info, see:
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n Cython-%{version}
|
%setup -q -n %{name}-%{upstreamversion}
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
@ -44,8 +49,8 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%check
|
##%%check
|
||||||
%{__python} runtests.py -x numpy
|
##%%{__python} runtests.py -x numpy
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
|
|
@ -60,6 +65,32 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Feb 5 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-4
|
||||||
|
- Disable check for now as it fails on PPC
|
||||||
|
|
||||||
|
* Tue Feb 2 2010 Neal Becker <ndbecker2@gmail.com> - 0.12.1-2
|
||||||
|
- typo
|
||||||
|
- stupid rpm comments
|
||||||
|
|
||||||
|
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12-1.rc1
|
||||||
|
- Make that 0.12
|
||||||
|
|
||||||
|
* Mon Nov 23 2009 Neal Becker <ndbecker2@gmail.com> - 0.12.1-1.rc1
|
||||||
|
- Update to 0.12.1
|
||||||
|
|
||||||
|
* 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
|
* Sat Mar 14 2009 Neal Becker <ndbecker2@gmail.com> - 0.11-2
|
||||||
- Missed cython.py*
|
- Missed cython.py*
|
||||||
|
|
||||||
|
|
|
||||||
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 @@
|
||||||
2a6cd318e642f3c166bdd2ac6a9a2d9d Cython-0.11.tar.gz
|
cf9f98e982258f8516620277975016f3 Cython-0.12.1.tar.gz
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue