rpms/TurboGears/F-8 TurboGears-1.0.4.4-setup.patch, NONE, 1.1 .cvsignore, 1.10, 1.11 TurboGears.spec, 1.30, 1.31 sources, 1.10, 1.11 TurboGears-1.0.4.3-sqlalchemy-backport.patch, 1.1, NONE

Luke Macken (lmacken) fedora-extras-commits at redhat.com
Thu May 15 03:38:36 UTC 2008


Author: lmacken

Update of /cvs/pkgs/rpms/TurboGears/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv26282

Modified Files:
	.cvsignore TurboGears.spec sources 
Added Files:
	TurboGears-1.0.4.4-setup.patch 
Removed Files:
	TurboGears-1.0.4.3-sqlalchemy-backport.patch 
Log Message:
Update to 1.0.4.4


TurboGears-1.0.4.4-setup.patch:

--- NEW FILE TurboGears-1.0.4.4-setup.patch ---
--- setup.py.setup	2008-03-03 16:30:58.000000000 -0500
+++ setup.py	2008-05-14 22:00:26.000000000 -0400
@@ -14,7 +14,6 @@
 # setup params
 install_requires = [
     "CherryPy >= 2.3.0,<3.0.0alpha",
-    "ConfigObj >= 4.3.2",
     "DecoratorTools >= 1.4",
     "FormEncode >= 0.7.1",
     "PasteScript >= 1.6.2",
@@ -57,10 +56,6 @@
 
 # python 2.5 compatible list
 if sys.version_info < (2, 5):
-    install_requires.extend([
-        "elementtree >= 1.2.6",
-        "cElementTree >= 1.0.5",
-        ])
     tgtesttools.extend([
         "pysqlite"
         ])


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/TurboGears/F-8/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- .cvsignore	17 Feb 2008 17:44:21 -0000	1.10
+++ .cvsignore	15 May 2008 03:37:20 -0000	1.11
@@ -1 +1 @@
-TurboGears-1.0.4.3.tar.gz
+TurboGears-1.0.4.4.tar.gz


Index: TurboGears.spec
===================================================================
RCS file: /cvs/pkgs/rpms/TurboGears/F-8/TurboGears.spec,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- TurboGears.spec	22 Feb 2008 18:46:42 -0000	1.30
+++ TurboGears.spec	15 May 2008 03:37:20 -0000	1.31
@@ -2,27 +2,21 @@
 %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
 
 Name:           TurboGears
-Version:        1.0.4.3
-Release:        2%{?dist}
+Version:        1.0.4.4
+Release:        3%{?dist}
 Summary:        Back-to-front web development in Python
 
 Group:          Development/Languages
 License:        MIT
 URL:            http://www.turbogears.org
-Source0:        http://files.turbogears.org/eggs/%{name}-%{version}.tar.gz
-Patch0:         %{name}-%{version}-setuptools.patch
-# Upstream fixes for sqlalchemy
-Patch1:		%{name}-1.0.4.3-sqlalchemy-backport.patch
+Source0:        http://pypi.python.org/packages/source/T/%{name}/%{name}-%{version}.tar.gz
+Patch0:         %{name}-%{version}-cherrypyreq.patch
+Patch1:         %{name}-%{version}-setup.patch
+
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:      noarch
 
-BuildRequires: python-devel python-setuptools-devel
-
-# ElementTree is part of python 2.5 on FC7+
-%if 0%{?fedora} <= 6
-BuildRequires:  python-elementtree >= 1.2.6
-Requires: python-elementtree >= 1.2.6
-%endif
+BuildRequires:  python-devel python-setuptools-devel
 
 %if 0%{?fedora} >= 9
 Requires:       python-cherrypy2
@@ -41,7 +35,7 @@
 Requires:       python-turbokid >= 1.0.4
 Requires:       python-tgfastdata
 Requires:       python-simplejson >= 1.3
-Requires:       python-paste-script >= 0.9.7
+Requires:       python-paste-script >= 1.6.2
 Requires:       python-configobj >= 4.3.2
 Requires:       python-ruledispatch
 Requires:       python-nose >= 0.9.1
@@ -66,8 +60,8 @@
 
 %prep
 %setup -q
-%patch0 -b .setuptools
-%patch1 -p1 -b .sa
+%patch0 -b .cherrypyreq
+%patch1 -b .setup
 
 
 %build
@@ -89,6 +83,21 @@
 %{python_sitelib}/turbogears/
 
 %changelog
+* Wed May 14 2008 Luke Macken <lmacken at redhat.com> 1.0.4.4-3
+- Add TurboGears-1.0.4.4-setup.patch to remove some unnecessary egg 
+  dependencies
+
+* Tue Mar 11 2008 Luke Macken <lmacken at redhat.com> 1.0.4.4-2
+- Add TurboGears-1.0.4.4-cherrypyreq.patch to explicitly require the
+  appropriate version of CherryPy when necessary.
+
+* Fri Mar  7 2008 Luke Macken <lmacken at redhat.com> 1.0.4.4-1
+- Update to 1.0.4.4
+- Remove the setuptools and sqlalchemy-backport patches
+
+* Fri Feb 29 2008 Luke Macken <lmacken at redhat.com> 1.0.4.3-3
+- Require python-paste-script >= 1.6.2 (Bug #435525)
+
 * Thu Feb 21 2008 Toshio Kuratomi <tkuratom at redhat.com> 1.0.4.3-2
 - Fixes for SQLAlchemy-0.4 and exceptions.  Upstream Bug #1721.
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/TurboGears/F-8/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources	17 Feb 2008 17:44:21 -0000	1.10
+++ sources	15 May 2008 03:37:20 -0000	1.11
@@ -1 +1 @@
-a19eb069bd8dde75c23ec8f9eceef38e  TurboGears-1.0.4.3.tar.gz
+a03a66fcf7d687fd7bd4205a01fd21dd  TurboGears-1.0.4.4.tar.gz


--- TurboGears-1.0.4.3-sqlalchemy-backport.patch DELETED ---




More information about the fedora-extras-commits mailing list