Compare commits

...

4 Commits
master ... f7

Author SHA1 Message Date
Fedora Release Engineering b1929e5ee0 dist-git conversion 2010-07-28 08:49:44 +00:00
Bill Nottingham 050f76c1ae Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 00:16:59 +00:00
Neal Becker f5009a1c3e Initial 2008-04-15 00:05:44 +00:00
Kevin Fenzi 65a32501fa Initialize branch F-7 for Cython 2008-04-14 19:43:17 +00:00
5 changed files with 81 additions and 21 deletions

View File

1
.gitignore vendored Normal file
View File

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

79
Cython.spec Normal file
View File

@ -0,0 +1,79 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")}
Name: Cython
Version: 0.9.6.13.1
Release: 3%{?dist}
Summary: A language for writing Python extension modules
Group: Development/Tools
License: Python
URL: http://www.cython.org
Source0: http://www.cython.org/Cython-%{version}.tar.gz
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
for writing Python extension modules.
For more info, see:
Doc/About.html for a description of the language
INSTALL.txt for installation instructions
USAGE.txt for usage instructions
Demos for usage examples
%prep
%setup -q -n Cython-%{version}
%build
%{__python} setup.py build
%install
rm -rf $RPM_BUILD_ROOT
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_bindir}/cython
%{python_sitelib}/Cython
%if 0%{?fedora} >= 9
%{python_sitelib}/Cython*egg-info
%endif
%doc *.txt Demos Doc Tools
%changelog
* 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).
- Add correct entry for egg-info (F9+).
* Mon Apr 14 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-2
- Change License to Python
- Install About.html
- Fix mixed spaces/tabs
- Don't use --record
* Tue Apr 8 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13.1-1
- Update to 0.9.6.13.1
* Mon Apr 7 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.13-1
- Update to 0.9.6.13
- Add docs
* Tue Feb 26 2008 Neal Becker <ndbecker2@gmail.com> - 0.9.6.12-1
- Initial version

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

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