diff options
author | PJ Eby <distutils-sig@python.org> | 2005-09-24 19:44:27 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-09-24 19:44:27 +0000 |
commit | 0ae86e5c56ef3fb2b6ddc1e5ac95b36452ba5104 (patch) | |
tree | 869886160566270f4bb014ec780bdbc6c2b501fa /setuptools.txt | |
parent | b6b29d019d1c33c75ee45fe8846525c75f1ed404 (diff) | |
download | external_python_setuptools-0ae86e5c56ef3fb2b6ddc1e5ac95b36452ba5104.tar.gz external_python_setuptools-0ae86e5c56ef3fb2b6ddc1e5ac95b36452ba5104.tar.bz2 external_python_setuptools-0ae86e5c56ef3fb2b6ddc1e5ac95b36452ba5104.zip |
Fix a bug parsing #egg links reported by Ben Bangert on the distutils-sig.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041251
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/setuptools.txt b/setuptools.txt index ec6f443e..956d84ea 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -1066,8 +1066,11 @@ So, if your ``url`` or ``download_url`` point either directly to a downloadable source distribution, or to HTML page(s) that have direct links to such, then EasyInstall will be able to locate downloads automatically. If you want to make Subversion checkouts available, then you should create links with either -``#egg=project`` or ``#egg=project-version`` added to the URL (replacing -``project`` and ``version`` with appropriate values). +``#egg=project`` or ``#egg=project-version`` added to the URL. You should +replace ``project`` and ``version`` with the values they would have in an egg +filename. (Be sure to actually generate an egg and then use the initial part +of the filename, rather than trying to guess what the escaped form of the +project name and version number will be.) Note that Subversion checkout links are of lower precedence than other kinds of distributions, so EasyInstall will not select a Subversion checkout for |