[Python-modules-commits] r1172 - in /packages/turbogears/trunk/debian: changelog control patches/01_disable_requirements.diff

kov at users.alioth.debian.org kov at users.alioth.debian.org
Sat Jul 22 17:36:14 UTC 2006


Author: kov
Date: Sat Jul 22 17:36:13 2006
New Revision: 1172

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1172
Log:
preparing new upstream release; updating patch to avoid new requirements
which are not really needed

Modified:
    packages/turbogears/trunk/debian/changelog
    packages/turbogears/trunk/debian/control
    packages/turbogears/trunk/debian/patches/01_disable_requirements.diff

Modified: packages/turbogears/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/turbogears/trunk/debian/changelog?rev=1172&op=diff
==============================================================================
--- packages/turbogears/trunk/debian/changelog (original)
+++ packages/turbogears/trunk/debian/changelog Sat Jul 22 17:36:13 2006
@@ -1,3 +1,13 @@
+turbogears (0.9a8-1) UNRELEASED; urgency=low
+
+  * New upstream release (Closes: #379078)
+  * debian/patches/01_disable_requirements.diff:
+  - updated to the new version; also avoid using ez_setup, which would
+    require a newer setuptools which is not in Debian yet without the
+    need;
+
+ -- Gustavo Noronha Silva <kov at debian.org>  Sun, 16 Jul 2006 17:12:01 -0300
+
 turbogears (0.9a6-3) experimental; urgency=low
 
   * debian/python-turbogears.install, debian/rules,

Modified: packages/turbogears/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/turbogears/trunk/debian/control?rev=1172&op=diff
==============================================================================
--- packages/turbogears/trunk/debian/control (original)
+++ packages/turbogears/trunk/debian/control Sat Jul 22 17:36:13 2006
@@ -10,7 +10,7 @@
 Package: python-turbogears
 Architecture: all
 XB-Python-Version: ${python:Versions}
-Depends: ${python:Depends}, python-cherrypy (>= 2.2.1), python-kid (>= 0.8), python-sqlobject (>= 0.7.0.99.really.0.7.1b1-1), python-celementtree (>= 1.0.5-6), python-elementtree (>= 1.2.6-9), python-formencode (>= 0.5.1-2), python-pastedeploy (>= 0.5), python-pastescript (>= 0.5.1), python-paste, python-simplejson (>= 1.3), python-configobj (>= 4.3.0), python-dispatch, python-nose (>= 0.8), python-turbokid (>= 0.9.5), python-turbojson (>= 0.9.2), python-cheetah (>> 1.0-1), python-setuptools (>= 0.6b3-1)
+Depends: ${python:Depends}, python-cherrypy (>= 2.2.1), python-kid (>= 0.9), python-sqlobject (>= 0.7.0.99.really.0.7.1b1-1), python-celementtree (>= 1.0.5-6), python-elementtree (>= 1.2.6-9), python-formencode (>= 0.5.1-2), python-pastedeploy (>= 0.5), python-pastescript (>= 0.5.1), python-paste, python-simplejson (>= 1.3), python-configobj (>= 4.3.0), python-dispatch, python-nose (>= 0.8), python-turbokid (>= 0.9.5), python-turbojson (>= 0.9.2), python-cheetah (>> 1.0-1), python-setuptools (>= 0.6b3-1)
 Description: Python-based web framework
  TurboGears takes the best components available and combines them into
  one easy-to-install, documented whole. TurboGears includes parts that

Modified: packages/turbogears/trunk/debian/patches/01_disable_requirements.diff
URL: http://svn.debian.org/wsvn/python-modules/packages/turbogears/trunk/debian/patches/01_disable_requirements.diff?rev=1172&op=diff
==============================================================================
--- packages/turbogears/trunk/debian/patches/01_disable_requirements.diff (original)
+++ packages/turbogears/trunk/debian/patches/01_disable_requirements.diff Sat Jul 22 17:36:13 2006
@@ -1,21 +1,29 @@
---- setup.py~	2006-05-09 08:18:12.000000000 -0300
-+++ setup.py	2006-07-09 15:27:34.000000000 -0300
+--- setup.py~	2006-07-21 08:45:57.000000000 -0300
++++ setup.py	2006-07-22 13:45:54.000000000 -0300
+@@ -1,5 +1,5 @@
+-from ez_setup import use_setuptools
+-use_setuptools()
++#from ez_setup import use_setuptools
++#use_setuptools()
+ from setuptools import setup, find_packages
+ from pkg_resources import DistributionNotFound
+ 
 @@ -34,14 +34,14 @@
  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 = ["TurboJson >= 0.9.2", "TurboCheetah >= 0.9.5",
--        "TurboKid >= 0.9.5",
+-    install_requires = ["TurboJson >= 0.9.4", "TurboCheetah >= 0.9.5",
+-        "TurboKid >= 0.9.8",
 -        "CherryPy >= 2.2.1",
--        "SQLObject >= 0.7.1dev_r1457", "simplejson >= 1.3",
+-        "SQLObject >= 0.7.1dev_r1457, < 0.7.99", "simplejson >= 1.3",
 -        "elementtree >= 1.2.6", "PasteScript >= 0.5.1",
 -        "cElementTree >= 1.0.5", "FormEncode >= 0.5.1",
 -        "setuptools >= 0.6a11",
 -        "RuleDispatch", "ConfigObj >= 4.3.0", "nose >= 0.8"],
-+    #install_requires = ["TurboJson >= 0.9.2", "TurboCheetah >= 0.9.5",
-+    #    "TurboKid >= 0.9.5",
++    #install_requires = ["TurboJson >= 0.9.4", "TurboCheetah >= 0.9.5",
++    #    "TurboKid >= 0.9.8",
 +    #    "CherryPy >= 2.2.1",
-+    #    "SQLObject >= 0.7.1dev_r1457", "simplejson >= 1.3",
++    #    "SQLObject >= 0.7.1dev_r1457, < 0.7.99", "simplejson >= 1.3",
 +    #    "elementtree >= 1.2.6", "PasteScript >= 0.5.1",
 +    #    "cElementTree >= 1.0.5", "FormEncode >= 0.5.1",
 +    #    "setuptools >= 0.6a11",




More information about the Python-modules-commits mailing list