[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.34, 1.35 ez_setup.py, 1.14, 1.15 setup.py, 1.24, 1.25 setuptools.txt, 1.7, 1.8

pje@users.sourceforge.net pje at users.sourceforge.net
Mon Jul 11 06:22:00 CEST 2005


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

Modified Files:
	EasyInstall.txt ez_setup.py setup.py setuptools.txt 
Log Message:
Update to 0.5a9, add zip_safe flag, and fix a doc error.


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- EasyInstall.txt	11 Jul 2005 04:12:47 -0000	1.34
+++ EasyInstall.txt	11 Jul 2005 04:21:56 -0000	1.35
@@ -29,7 +29,7 @@
 -------------------------
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.win32.exe>`_.
 All others should just download `ez_setup.py
 <http://peak.telecommunity.com/dist/ez_setup.py>`_, and run it; this will
 download and install the appropriate ``setuptools`` egg for your Python
@@ -70,7 +70,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.5a8"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a9"
 
 **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.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- ez_setup.py	8 Jul 2005 15:52:05 -0000	1.14
+++ ez_setup.py	11 Jul 2005 04:21:56 -0000	1.15
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a8"
+DEFAULT_VERSION = "0.5a9"
 DEFAULT_URL     = "http://www.python.org/packages/source/s/setuptools/"
 
 import sys, os

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- setup.py	9 Jul 2005 04:27:38 -0000	1.24
+++ setup.py	11 Jul 2005 04:21:57 -0000	1.25
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
     
-VERSION = "0.5a8"
+VERSION = "0.5a9"
 
 from setuptools import setup, find_packages
 
@@ -35,7 +35,7 @@
     packages = find_packages(),
     py_modules = ['pkg_resources'],
     scripts = ['easy_install.py'],
-
+    zip_safe = True,
 
 
 

Index: setuptools.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.txt,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- setuptools.txt	11 Jul 2005 04:12:47 -0000	1.7
+++ setuptools.txt	11 Jul 2005 04:21:57 -0000	1.8
@@ -64,7 +64,7 @@
 =========================
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.win32.exe>`_.
 All others should just download `ez_setup.py`_ and run it; this will
 download and install the appropriate egg for your Python version.
 
@@ -1053,6 +1053,8 @@
     no ``package_dir`` set, this option defaults to the current directory.
 
 
+.. _rotate:
+
 ``rotate`` - Delete outdated distribution files
 ===============================================
 



More information about the Python-checkins mailing list