]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setuptools upgrade to 0.6c6
authortahoe <tahoe@arnowaschk.de>
Tue, 31 Jul 2007 23:18:11 +0000 (16:18 -0700)
committertahoe <tahoe@arnowaschk.de>
Tue, 31 Jul 2007 23:18:11 +0000 (16:18 -0700)
src/simplejson/ez_setup/__init__.py
src/simplejson/setup.py
src/zfec/ez_setup.py
src/zfec/setup.py

index d33c823cf57426e4ef48b5f136139d86663ea17f..abbe1820a1bde1f78ab56480bf5b2d0381cd3220 100644 (file)
@@ -15,7 +15,7 @@ This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
 
-DEFAULT_VERSION = "0.6c5"
+DEFAULT_VERSION = "0.6c6"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {
@@ -40,6 +40,7 @@ md5_data = {
     'setuptools-0.6c5-py2.3.egg': 'ee9fd80965da04f2f3e6b3576e9d8167',
     'setuptools-0.6c5-py2.4.egg': 'afe2adf1c01701ee841761f5bcd8aa64',
     'setuptools-0.6c5-py2.5.egg': 'a8d3f61494ccaa8714dfed37bccd3d5d',
+    'setuptools-0.6c6-py2.5.egg': 'b2f8a7520709a5b34f80946de5f02f53',
 }
 
 import sys, os
@@ -90,6 +91,7 @@ def use_setuptools(
 
     except pkg_resources.VersionConflict, e:
         # XXX could we install in a subprocess here?
+       # --arnowa here we would need an elegant update solution, i think
         print >>sys.stderr, (
             "The required version of setuptools (>=%s) is not available, and\n"
             "can't be installed while this script is running. Please install\n"
index 01d1e43354de0b470b8fce2656db82ee2a96f114..ac1892203d23e7da60b9df204e786851afbfe5b9 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 import ez_setup
-ez_setup.use_setuptools(min_version="0.6a9")
+ez_setup.use_setuptools(min_version="0.6c6")
 
 from setuptools import setup, find_packages, Extension, Feature
 from distutils.command.build_ext import build_ext
index d33c823cf57426e4ef48b5f136139d86663ea17f..34469f0aa1a8ea27f6487a8732df89a0233e18d8 100644 (file)
@@ -15,7 +15,7 @@ This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
 
-DEFAULT_VERSION = "0.6c5"
+DEFAULT_VERSION = "0.6c6"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {
@@ -40,6 +40,7 @@ md5_data = {
     'setuptools-0.6c5-py2.3.egg': 'ee9fd80965da04f2f3e6b3576e9d8167',
     'setuptools-0.6c5-py2.4.egg': 'afe2adf1c01701ee841761f5bcd8aa64',
     'setuptools-0.6c5-py2.5.egg': 'a8d3f61494ccaa8714dfed37bccd3d5d',
+    'setuptools-0.6c6-py2.5.egg': 'b2f8a7520709a5b34f80946de5f02f53',
 }
 
 import sys, os
@@ -90,6 +91,7 @@ def use_setuptools(
 
     except pkg_resources.VersionConflict, e:
         # XXX could we install in a subprocess here?
+        # --arnowa here we would need an elegant update solution, i think
         print >>sys.stderr, (
             "The required version of setuptools (>=%s) is not available, and\n"
             "can't be installed while this script is running. Please install\n"
@@ -157,7 +159,7 @@ def main(argv, version=DEFAULT_VERSION):
             if egg and os.path.exists(egg):
                 os.unlink(egg)
     else:
-        if setuptools.__version__ == '0.0.1':
+        if setuptools.__version__ == "0.0.1": #Does this happen?? --arnowa
             # tell the user to uninstall obsolete version
             use_setuptools(version)
 
index a8c08d8390c9264fbc46d1c52bc2ab6186369438..8f4e31fe6aedcb61f0461bee567733968cfee078 100644 (file)
@@ -20,7 +20,7 @@
 # http://allmydata.com/.
 
 from ez_setup import use_setuptools
-use_setuptools(min_version='0.6a9')
+use_setuptools(min_version='0.6c6')
 
 from setuptools import Extension, find_packages, setup