summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortarek <none@none>2009-08-08 21:14:26 +0200
committertarek <none@none>2009-08-08 21:14:26 +0200
commitc2477907434d9c77b60bf662864680ef74a2aef7 (patch)
tree65edd9fbce3d8a3dc4f88b925b0c03c234740786
parent96f2536dcc1056dffa72f0877f1683b6633440f0 (diff)
downloadpython-setuptools-git-c2477907434d9c77b60bf662864680ef74a2aef7.tar.gz
removed ziade.org references. will use PyPI for eggs, and bitbucket.org for the bootstrap file
--HG-- branch : distribute extra : rebase_source : d73bb1ff47c9be9c7189d537410dc58bbf2e4f0d
-rw-r--r--buildout/bootstrap.py2
-rw-r--r--distribute_setup.py11
2 files changed, 6 insertions, 7 deletions
diff --git a/buildout/bootstrap.py b/buildout/bootstrap.py
index a0afe9d0..caacf081 100644
--- a/buildout/bootstrap.py
+++ b/buildout/bootstrap.py
@@ -34,7 +34,7 @@ try:
raise ImportError
except ImportError:
ez = {}
- exec urllib2.urlopen('http://nightly.ziade.org/bootstraping.py'
+ exec urllib2.urlopen('http://bitbucket.org/tarek/distribute/downloads/distribute_setup.py'
).read() in ez
ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
if to_reload:
diff --git a/distribute_setup.py b/distribute_setup.py
index c3f3fa34..df442d1e 100644
--- a/distribute_setup.py
+++ b/distribute_setup.py
@@ -31,14 +31,13 @@ except ImportError:
from md5 import md5
DEFAULT_VERSION = "0.6"
-#DEFAULT_URL = "http://pypi.python.org/packages/%s/d/distribute/" % sys.version[:3]
-DEFAULT_URL = "http://nightly.ziade.org/"
+DEFAULT_URL = "http://pypi.python.org/packages/%s/d/distribute/" % sys.version[:3]
md5_data = {
- 'distribute-0.6-py2.3.egg': 'a9ba0aaf677b912a90e9fb485fa4db19',
- 'distribute-0.6-py2.4.egg': 'a7c8ccf5609bee803497de62960b698c',
- 'distribute-0.6-py2.5.egg': 'c624cd74c056757908a1cdafa288d03c',
- 'distribute-0.6-py2.6.egg': '7ab763a7c8261759c8d2215c5cd3ee26',
+ 'distribute-0.6-py2.3.egg': '16c8d2490913748f1ebb363c90fa635e',
+ 'distribute-0.6-py2.4.egg': '41efe13d5283f9fd1d3a81119c6a00dd',
+ 'distribute-0.6-py2.5.egg': '93ae3b80f237983f3f23ae08a46516a1',
+ 'distribute-0.6-py2.6.egg': 'bc68d9e041be3193189177daee79cd02',
}
def _validate_md5(egg_name, data):