rpms/TurboGears/devel TurboGears-0.8.9-setuptools.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 TurboGears.spec, 1.1, 1.2 sources, 1.2, 1.3 TurboGears-0.8a5-optim.patch, 1.1, NONE TurboGears-0.8a5-setuptools.patch, 1.1, NONE

Luke Macken (lmacken) fedora-extras-commits at redhat.com
Thu Jul 6 18:53:18 UTC 2006


Author: lmacken

Update of /cvs/extras/rpms/TurboGears/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv3949

Modified Files:
	.cvsignore TurboGears.spec sources 
Added Files:
	TurboGears-0.8.9-setuptools.patch 
Removed Files:
	TurboGears-0.8a5-optim.patch TurboGears-0.8a5-setuptools.patch 
Log Message:
* Thu Jul 6 2006 Luke Macken <lmacken at redhat.com> 0.8.9-2
- Add TurboGears-0.8.9-setuptools.patch

* Thu Jul 6 2006 Luke Macken <lmacken at redhat.com> 0.8.9-1
- Bump to 0.8.9
- Remove TurboGears-0.8a5-optim.patch and TurboGears-0.8a5-setuptools.patch



TurboGears-0.8.9-setuptools.patch:

--- NEW FILE TurboGears-0.8.9-setuptools.patch ---
--- TurboGears-0.8.9/setup.py.orig	2006-07-06 14:26:21.000000000 -0400
+++ TurboGears-0.8.9/setup.py	2006-07-06 14:26:40.000000000 -0400
@@ -35,11 +35,7 @@
 The latest development version is available in <a href="http://www.turbogears.org/svn/turbogears/trunk#egg=turbogears-dev">the TurboGears subversion repository</a>.""",
     url="http://www.turbogears.org",
     zip_safe=False,
-    install_requires = ["kid >= 0.8",
-        "CherryPy >= 2.1.1",
-        "SQLObject >= 0.7.1dev_r1457", "json-py >= 3.4",
-        "elementtree >= 1.2.6",
-        "cElementTree >= 1.0.2", "FormEncode >= 0.4",
+    install_requires = ["FormEncode >= 0.4",
         "setuptools >= 0.6a8", "TestGears >= 0.2"],
     packages=find_packages(),
     package_data = find_package_data(where='turbogears', 
--- TurboGears-0.8.9/docgen.py.orig	2006-07-06 14:26:44.000000000 -0400
+++ TurboGears-0.8.9/docgen.py	2006-07-06 14:26:51.000000000 -0400
@@ -4,7 +4,6 @@
 import time
 from setuptools import Command
 import pkg_resources
-pkg_resources.require("Kid >= 0.6.4")
 import kid
 import re
 from distutils import log
@@ -238,4 +237,4 @@
         outfile.write(masterdoc)
         outfile.close()
         self.currentfiles.add(outfn)
-        
\ No newline at end of file
+        


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/TurboGears/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	21 Feb 2006 07:16:42 -0000	1.2
+++ .cvsignore	6 Jul 2006 18:53:18 -0000	1.3
@@ -1 +1 @@
-TurboGears-0.8a5.tar.gz
+TurboGears-0.8.9.tar.gz


Index: TurboGears.spec
===================================================================
RCS file: /cvs/extras/rpms/TurboGears/devel/TurboGears.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TurboGears.spec	21 Feb 2006 07:16:42 -0000	1.1
+++ TurboGears.spec	6 Jul 2006 18:53:18 -0000	1.2
@@ -3,16 +3,15 @@
 %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
 
 Name:           TurboGears
-Version:        0.8a5
-Release:        1%{?dist}
+Version:        0.8.9
+Release:        2%{?dist}
 Summary:        Back-to-front web development in Python
 
 Group:          Development/Languages
 License:        MIT
 URL:            http://www.turbogears.org/
 Source0:        http://www.turbogears.org/download/eggs/%{name}-%{version}.tar.gz
-Patch:          TurboGears-0.8a5-setuptools.patch
-Patch1:         TurboGears-0.8a5-optim.patch
+Patch0:         %{name}-%{version}-setuptools.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
@@ -37,12 +36,10 @@
 
 %prep
 %setup -q
-%patch -p1 -b .setuptools
-%patch1 -p1 -b .optim
+%patch0 -p1
 find docs -type f -exec chmod a-x {} \; -exec sed -i 's/\r//g' {} \;
 
 %build
-find \( -name \*.setuptools -o -name \*.optim \) -exec rm {} \;
 CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
 
 %install
@@ -60,5 +57,12 @@
 %{python_sitelib}/turbogears
 
 %changelog
+* Thu Jul 6 2006 Luke Macken <lmacken at redhat.com> 0.8.9-2
+- Add TurboGears-0.8.9-setuptools.patch
+
+* Thu Jul 6 2006 Luke Macken <lmacken at redhat.com> 0.8.9-1
+- Bump to 0.8.9
+- Remove TurboGears-0.8a5-optim.patch and TurboGears-0.8a5-setuptools.patch
+
 * Sat Feb 18 2006 Ignacio Vazquez-Abrams <ivazquez at ivazquez.net> 0.8a5-1
 - Initial RPM release


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/TurboGears/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources	21 Feb 2006 07:16:42 -0000	1.2
+++ sources	6 Jul 2006 18:53:18 -0000	1.3
@@ -1 +1 @@
-ff1c1737fac46eb7ec931c05c461bc68  TurboGears-0.8a5.tar.gz
+65ae29ce01fd1e0bad4924b12b4c3706  TurboGears-0.8.9.tar.gz


--- TurboGears-0.8a5-optim.patch DELETED ---


--- TurboGears-0.8a5-setuptools.patch DELETED ---




More information about the fedora-extras-commits mailing list