[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.44, 1.45 ez_setup.py, 1.20, 1.21 pkg_resources.py, 1.46, 1.47 setup.cfg, 1.1, 1.2 setup.py, 1.31, 1.32

pje@users.sourceforge.net pje at users.sourceforge.net
Mon Jul 18 04:06:48 CEST 2005


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

Modified Files:
	EasyInstall.txt ez_setup.py pkg_resources.py setup.cfg 
	setup.py 
Log Message:
Massive API refactoring; see setuptools.txt changelog for details.  Also,
add ``#egg=project-version`` link support, and docs on how to make your
package available for EasyInstall to find.


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- EasyInstall.txt	18 Jul 2005 01:39:45 -0000	1.44
+++ EasyInstall.txt	18 Jul 2005 02:06:15 -0000	1.45
@@ -67,7 +67,7 @@
 **Example 2**. Install or upgrade a package by name and version by finding
 links on a given "download page"::
 
-    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a13"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.6a0"
 
 **Example 3**. Download a source distribution from a specified URL,
 automatically building and installing it::

Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- ez_setup.py	16 Jul 2005 16:17:29 -0000	1.20
+++ ez_setup.py	18 Jul 2005 02:06:15 -0000	1.21
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a13"
+DEFAULT_VERSION = "0.6a0"
 DEFAULT_URL     = "http://www.python.org/packages/source/s/setuptools/"
 
 import sys, os

Index: pkg_resources.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/pkg_resources.py,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- pkg_resources.py	18 Jul 2005 01:39:45 -0000	1.46
+++ pkg_resources.py	18 Jul 2005 02:06:15 -0000	1.47
@@ -232,7 +232,7 @@
         """
         self.entry_keys.setdefault(entry, [])
         self.entries.append(entry)
-        for dist in find_distributions(entry, False):
+        for dist in find_distributions(entry, True):
             self.add(dist, entry)
 
 

Index: setup.cfg
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.cfg,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- setup.cfg	8 Jul 2005 15:52:05 -0000	1.1
+++ setup.cfg	18 Jul 2005 02:06:15 -0000	1.2
@@ -1,4 +1,5 @@
 [aliases]
-source = register sdist binary
 binary = bdist_egg upload --show-response
+develop = develop
+source = register sdist binary
 

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- setup.py	16 Jul 2005 16:17:29 -0000	1.31
+++ setup.py	18 Jul 2005 02:06:15 -0000	1.32
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
     
-VERSION = "0.5a13"
+VERSION = "0.6a0"
 
 from setuptools import setup, find_packages
 



More information about the Python-checkins mailing list