diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-09-26 20:33:30 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-09-26 20:33:30 +0000 |
commit | a8c9f6eb93a474592e553f78dc0b6f004c2528cd (patch) | |
tree | 300f152e5961b62814324bc795c7ee1b76aa6c49 /dev-python/setuptools/files | |
parent | Marking openttd-0.7.2 ppc64 for bug 285403 (diff) | |
download | historical-a8c9f6eb93a474592e553f78dc0b6f004c2528cd.tar.gz historical-a8c9f6eb93a474592e553f78dc0b6f004c2528cd.tar.bz2 historical-a8c9f6eb93a474592e553f78dc0b6f004c2528cd.zip |
Version bump.
Package-Manager: portage-14440-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-python/setuptools/files')
-rw-r--r-- | dev-python/setuptools/files/distribute-0.6.2-provide_setuptools.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/setuptools/files/distribute-0.6.2-provide_setuptools.patch b/dev-python/setuptools/files/distribute-0.6.2-provide_setuptools.patch new file mode 100644 index 000000000000..33e60652949d --- /dev/null +++ b/dev-python/setuptools/files/distribute-0.6.2-provide_setuptools.patch @@ -0,0 +1,22 @@ +--- setup.py ++++ setup.py +@@ -57,7 +57,7 @@ + before_install() + + dist = setup( +- name="distribute", ++ name="setuptools", + version=VERSION, + description="Easily download, build, install, upgrade, and uninstall " + "Python packages", +--- setuptools/package_index.py ++++ setuptools/package_index.py +@@ -143,7 +143,7 @@ + yield urlparse.urljoin(url, htmldecode(match.group(1))) + + user_agent = "Python-urllib/%s distribute/%s" % ( +- sys.version[:3], require('distribute')[0].version ++ sys.version[:3], require('setuptools')[0].version + ) + + |