aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-13 08:13:26 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-13 08:13:26 -0400
commit40da992b5e706a5bb5ac438256633828c2640f53 (patch)
tree176e5af0017a56fde5d61126e813672edaab1d49
parent94e2f8b4674735b16f02651a9fac29a7d5f75835 (diff)
downloadexternal_python_setuptools-40da992b5e706a5bb5ac438256633828c2640f53.tar.gz
external_python_setuptools-40da992b5e706a5bb5ac438256633828c2640f53.tar.bz2
external_python_setuptools-40da992b5e706a5bb5ac438256633828c2640f53.zip
Setuptools 0.7 only supports Python 2.4+.
Moved external references for ctypes and Windows SSL builds to an authoritative location (with the project on bitbucket).
-rwxr-xr-xsetup.py11
-rw-r--r--setuptools.egg-info/dependency_links.txt7
-rw-r--r--setuptools.egg-info/requires.txt8
3 files changed, 12 insertions, 14 deletions
diff --git a/setup.py b/setup.py
index 164f4edb..c5dcbdba 100755
--- a/setup.py
+++ b/setup.py
@@ -209,8 +209,8 @@ dist = setup(
""").strip().splitlines(),
extras_require = {
"ssl:sys_platform=='win32'": "wincertstore==0.1",
- "ssl:sys_platform=='win32' and python_version in '2.3, 2.4'": "ctypes==1.0.2",
- "ssl:python_version in '2.3, 2.4, 2.5'":"ssl==1.16",
+ "ssl:sys_platform=='win32' and python_version=='2.4'": "ctypes==1.0.2",
+ "ssl:python_version in '2.4, 2.5'":"ssl==1.16",
"certs": "certifi==0.0.8",
},
dependency_links = [
@@ -218,10 +218,9 @@ dist = setup(
'http://pypi.python.org/packages/source/s/ssl/ssl-1.16.tar.gz#md5=fb12d335d56f3c8c7c1fefc1c06c4bfb',
'http://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c',
'http://sourceforge.net/projects/ctypes/files/ctypes/1.0.2/ctypes-1.0.2.win32-py2.3.exe/download#md5=9afe4b75240a8808a24df7a76b6081e3',
- 'http://sourceforge.net/projects/ctypes/files/ctypes/1.0.2/ctypes-1.0.2.win32-py2.4.exe/download#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc',
- 'http://peak.telecommunity.com/dist/ssl-1.16-py2.3-win32.egg#md5=658f74b3eb6f32050e8531bb73de8e74',
- 'http://peak.telecommunity.com/dist/ssl-1.16-py2.4-win32.egg#md5=3cfa2c526dc66e318e8520b6f1aadce5',
- 'http://peak.telecommunity.com/dist/ssl-1.16-py2.5-win32.egg#md5=85ad1cda806d639743121c0bbcb5f39b',
+ 'http://bitbucket.org/pypa/setuptools/downloads/ctypes-1.0.2.win32-py2.4.exe#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc',
+ 'http://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.4-win32.egg#md5=3cfa2c526dc66e318e8520b6f1aadce5',
+ 'http://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.5-win32.egg#md5=85ad1cda806d639743121c0bbcb5f39b',
],
scripts = [],
# tests_require = "setuptools[ssl]",
diff --git a/setuptools.egg-info/dependency_links.txt b/setuptools.egg-info/dependency_links.txt
index d490c300..a725f332 100644
--- a/setuptools.egg-info/dependency_links.txt
+++ b/setuptools.egg-info/dependency_links.txt
@@ -2,7 +2,6 @@ http://pypi.python.org/packages/source/c/certifi/certifi-0.0.8.tar.gz#md5=dc5f5e
http://pypi.python.org/packages/source/s/ssl/ssl-1.16.tar.gz#md5=fb12d335d56f3c8c7c1fefc1c06c4bfb
http://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c
http://sourceforge.net/projects/ctypes/files/ctypes/1.0.2/ctypes-1.0.2.win32-py2.3.exe/download#md5=9afe4b75240a8808a24df7a76b6081e3
-http://sourceforge.net/projects/ctypes/files/ctypes/1.0.2/ctypes-1.0.2.win32-py2.4.exe/download#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc
-http://peak.telecommunity.com/dist/ssl-1.16-py2.3-win32.egg#md5=658f74b3eb6f32050e8531bb73de8e74
-http://peak.telecommunity.com/dist/ssl-1.16-py2.4-win32.egg#md5=3cfa2c526dc66e318e8520b6f1aadce5
-http://peak.telecommunity.com/dist/ssl-1.16-py2.5-win32.egg#md5=85ad1cda806d639743121c0bbcb5f39b
+http://bitbucket.org/pypa/setuptools/downloads/ctypes-1.0.2.win32-py2.4.exe#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc
+http://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.4-win32.egg#md5=3cfa2c526dc66e318e8520b6f1aadce5
+http://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.5-win32.egg#md5=85ad1cda806d639743121c0bbcb5f39b
diff --git a/setuptools.egg-info/requires.txt b/setuptools.egg-info/requires.txt
index 9ddbc5ac..91d84d9c 100644
--- a/setuptools.egg-info/requires.txt
+++ b/setuptools.egg-info/requires.txt
@@ -3,11 +3,11 @@
[ssl:sys_platform=='win32']
wincertstore==0.1
+[ssl:sys_platform=='win32' and python_version=='2.4']
+ctypes==1.0.2
+
[certs]
certifi==0.0.8
-[ssl:sys_platform=='win32' and python_version in '2.3, 2.4']
-ctypes==1.0.2
-
-[ssl:python_version in '2.3, 2.4, 2.5']
+[ssl:python_version in '2.4, 2.5']
ssl==1.16 \ No newline at end of file