[Python-checkins] python/nondist/sandbox/setuptools easy_install.py, 1.2, 1.3

pje@users.sourceforge.net pje at users.sourceforge.net
Sun May 29 03:36:04 CEST 2005


Update of /cvsroot/python/python/nondist/sandbox/setuptools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10742

Modified Files:
	easy_install.py 
Log Message:
Add link to Python Eggs page in doc; fix a problem with non-standard source
distros (where setup.py is in the archive root).


Index: easy_install.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/easy_install.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- easy_install.py	29 May 2005 00:18:25 -0000	1.2
+++ easy_install.py	29 May 2005 01:36:01 -0000	1.3
@@ -13,7 +13,9 @@
 ------------------------------------
 
 For basic use of ``easy_install``, you need only supply the filename or URL of
-a source distribution or .egg file (Python Egg).
+a source distribution or .egg file (`Python Egg`__).
+
+__ http://peak.telecommunity.com/DevCenter/PythonEggs
 
 **Example 1**. Download a source distribution, automatically building and
 installing it::
@@ -160,8 +162,6 @@
 
 
 
-
-
 class Installer:
     """Manage a download/build/install process"""
 
@@ -279,7 +279,7 @@
                 )
             setup_script = setups[0]
 
-        self._run_setup(setups[0])
+        self._run_setup(setup_script)
         for egg in glob(
             os.path.join(os.path.dirname(setup_script),'dist','*.egg')
         ):



More information about the Python-checkins mailing list