From 52b632b7793cdc630b3064da70c880f1ad554610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toshio=20=E3=81=8F=E3=82=89=E3=81=A8=E3=81=BF?= Date: Tue, 29 Sep 2009 16:11:22 +0000 Subject: [PATCH 1/8] Initialize branch F-12 for Cython --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From 97ae04b6b0b13623e1a54e7f6a0a08a61176e494 Mon Sep 17 00:00:00 2001 From: Neal Becker Date: Mon, 23 Nov 2009 20:05:58 +0000 Subject: [PATCH 2/8] update to 0.12 --- .cvsignore | 2 +- Cython.spec | 8 +++++++- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index d083d41..ec1e8bb 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Cython-0.11.3.tar.gz +Cython-0.12.tar.gz diff --git a/Cython.spec b/Cython.spec index 5e8f7ab..4dcece3 100644 --- a/Cython.spec +++ b/Cython.spec @@ -3,7 +3,7 @@ Name: Cython -Version: 0.11.3 +Version: 0.12 #Release: 1.rc1%{?dist} Release: 1%{?dist} Summary: A language for writing Python extension modules @@ -64,6 +64,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Nov 23 2009 Neal Becker - 0.12-1.rc1 +- Make that 0.12 + +* Mon Nov 23 2009 Neal Becker - 0.12.1-1.rc1 +- Update to 0.12.1 + * Sun Sep 27 2009 Neal Becker - 0.11.3-1.rc1 - Update to 0.11.3rc1 - Update to 0.11.3 diff --git a/sources b/sources index 3204f7e..d726410 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -470d1f928886f4e59463d7ead5d5e300 Cython-0.11.3.tar.gz +2302bb8cd9defddf899e3c6840436d37 Cython-0.12.tar.gz From 167cfaf9cf5ec70e6f9864d656f774aa953f3a57 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 00:16:59 +0000 Subject: [PATCH 3/8] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0a46fe6..13b182c 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: Cython -# $Id$ +# $Id: Makefile,v 1.1 2008/04/14 19:42:43 kevin Exp $ 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 +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 3a161fff4ed7aeec6f70c822c79bedea9ad2dad2 Mon Sep 17 00:00:00 2001 From: Neal Becker Date: Tue, 2 Feb 2010 12:30:57 +0000 Subject: [PATCH 4/8] update to 0.12.1 --- .cvsignore | 2 +- Cython.spec | 13 +++++++++---- sources | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index ec1e8bb..8a272a6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -Cython-0.12.tar.gz +Cython-0.12.1.tar.gz diff --git a/Cython.spec b/Cython.spec index 4dcece3..fb59e6e 100644 --- a/Cython.spec +++ b/Cython.spec @@ -3,18 +3,19 @@ Name: Cython -Version: 0.12 +Version: 0.12.1 +#Version: 0.13 #Release: 1.rc1%{?dist} -Release: 1%{?dist} +Release: 3%{?dist} Summary: A language for writing Python extension modules -#%define upstreamversion %{version}.rc1 +##%define upstreamversion %{version}.rc1 %define upstreamversion %{version} Group: Development/Tools License: Python URL: http://www.cython.org -Source0: http://www.cython.org/Cython-%{upstreamversion}.tar.gz +Source: http://www.cython.org/Cython-%{upstreamversion}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel python-setuptools @@ -64,6 +65,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 2 2010 Neal Becker - 0.12.1-2 +- typo +- stupid rpm comments + * Mon Nov 23 2009 Neal Becker - 0.12-1.rc1 - Make that 0.12 diff --git a/sources b/sources index d726410..c737eb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2302bb8cd9defddf899e3c6840436d37 Cython-0.12.tar.gz +cf9f98e982258f8516620277975016f3 Cython-0.12.1.tar.gz From 2294d5974fbdf71c5997b534c916e60ce00fb03e Mon Sep 17 00:00:00 2001 From: Neal Becker Date: Fri, 5 Feb 2010 12:14:53 +0000 Subject: [PATCH 5/8] update to 0.12.1 --- Cython.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Cython.spec b/Cython.spec index fb59e6e..c242fad 100644 --- a/Cython.spec +++ b/Cython.spec @@ -6,7 +6,7 @@ Name: Cython Version: 0.12.1 #Version: 0.13 #Release: 1.rc1%{?dist} -Release: 3%{?dist} +Release: 4%{?dist} Summary: A language for writing Python extension modules ##%define upstreamversion %{version}.rc1 @@ -49,8 +49,8 @@ rm -rf $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT -%check -%{__python} runtests.py -x numpy +##%%check +##%%{__python} runtests.py -x numpy %files %defattr(-,root,root,-) @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 5 2010 Neal Becker - 0.12.1-4 +- Disable check for now as it fails on PPC + * Tue Feb 2 2010 Neal Becker - 0.12.1-2 - typo - stupid rpm comments From bc600910c24a266731b883ea342d85ed4a2301f6 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 17 Feb 2010 00:46:12 +0000 Subject: [PATCH 6/8] Initialize branch F-13 for Cython --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..baa94ef --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-13 From 095f524055bcc8b62548638ea5fbb3705df4d6f5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 08:49:47 +0000 Subject: [PATCH 7/8] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 13b182c..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: Cython -# $Id: Makefile,v 1.1 2008/04/14 19:42:43 kevin Exp $ -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 $$d/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) diff --git a/branch b/branch deleted file mode 100644 index baa94ef..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-13 From 25579f1043fe85709963ae27d36373ce929e02a4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 08:49:48 +0000 Subject: [PATCH 8/8] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 13b182c..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: Cython -# $Id: Makefile,v 1.1 2008/04/14 19:42:43 kevin Exp $ -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 $$d/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) diff --git a/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12