]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
change the 'ez_setup.py' script to have distinct desired & minimum required versions...
authorrobk-org <robk-org@allmydata.com>
Wed, 6 Jun 2007 19:49:03 +0000 (01:19 +0530)
committerrobk-org <robk-org@allmydata.com>
Wed, 6 Jun 2007 19:49:03 +0000 (01:19 +0530)
and change zfec/setup.py's invocation of ez_setup to require 0.6a9 (which happens to be the default
version installed by apt-get on dapper machines) while leaving the default (desired) version at 0.6c5

darcs-hash:90f9f375e316df0fb43d3cb656ffbdae1a7b3ae2

zfec/ez_setup.py
zfec/setup.py

index aa877860cb0bbae57d8de0878b37b18a8e9aef9e..d33c823cf57426e4ef48b5f136139d86663ea17f 100755 (executable)
@@ -15,7 +15,7 @@ This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
 
-DEFAULT_VERSION = "0.6c3"
+DEFAULT_VERSION = "0.6c5"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {
@@ -58,7 +58,7 @@ def _validate_md5(egg_name, data):
 
 
 def use_setuptools(
-    version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir
+    version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, min_version=None
 ):
     """Automatically find/download setuptools and make it available on sys.path
 
@@ -84,7 +84,9 @@ def use_setuptools(
 
     import pkg_resources
     try:
-        pkg_resources.require("setuptools>="+version)
+        if not min_version:
+            min_version = version
+        pkg_resources.require("setuptools>="+min_version)
 
     except pkg_resources.VersionConflict, e:
         # XXX could we install in a subprocess here?
@@ -92,7 +94,7 @@ def use_setuptools(
             "The required version of setuptools (>=%s) is not available, and\n"
             "can't be installed while this script is running. Please install\n"
             " a more recent version first.\n\n(Currently using %r)"
-        ) % (version, e.args[0])
+        ) % (min_version, e.args[0])
         sys.exit(2)
 
 def download_setuptools(
index e04d54c84daca9870933e560911fe6c22dbea595..80d8b97649e9600e69fe54c03521339ea4518f1a 100755 (executable)
@@ -25,7 +25,7 @@
 # more details.
 
 from ez_setup import use_setuptools
-use_setuptools()
+use_setuptools(min_version='0.6a9')
 
 from setuptools import Extension, find_packages, setup