[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.39, 1.40 ez_setup.py, 1.18, 1.19 setup.py, 1.29, 1.30 setuptools.txt, 1.12, 1.13

pje@users.sourceforge.net pje at users.sourceforge.net
Wed Jul 13 02:10:02 CEST 2005


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

Modified Files:
	EasyInstall.txt ez_setup.py setup.py setuptools.txt 
Log Message:
Prep for 0.5a12 release; update docs.


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- EasyInstall.txt	12 Jul 2005 16:08:59 -0000	1.39
+++ EasyInstall.txt	13 Jul 2005 00:10:00 -0000	1.40
@@ -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.5a11"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a12"
 
 **Example 3**. Download a source distribution from a specified URL,
 automatically building and installing it::
@@ -593,6 +593,14 @@
    in Exemaker.  So, don't use Exemaker to wrap ``easy_install.py``, or at any
    rate don't expect it to work with all packages.
 
+0.5a12
+ * Fix ``python -m easy_install`` not working due to setuptools being installed
+   as a zipfile.  Update safety scanner to check for modules that might be used
+   as ``python -m`` scripts.
+
+ * Misc. fixes for win32.exe support, including changes to support Python 2.4's
+   changed ``bdist_wininst`` format.
+
 0.5a10
  * Put the ``easy_install`` module back in as a module, as it's needed for
  ``python -m`` to run it!

Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- ez_setup.py	12 Jul 2005 23:22:06 -0000	1.18
+++ ez_setup.py	13 Jul 2005 00:10:00 -0000	1.19
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a11"
+DEFAULT_VERSION = "0.5a12"
 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.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- setup.py	12 Jul 2005 23:22:32 -0000	1.29
+++ setup.py	13 Jul 2005 00:10:00 -0000	1.30
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
     
-VERSION = "0.5a11"
+VERSION = "0.5a12"
 
 from setuptools import setup, find_packages
 

Index: setuptools.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.txt,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- setuptools.txt	12 Jul 2005 16:09:00 -0000	1.12
+++ setuptools.txt	13 Jul 2005 00:10:00 -0000	1.13
@@ -1332,6 +1332,18 @@
 Release Notes/Change History
 ----------------------------
 
+0.5a12
+ * The zip-safety scanner now checks for modules that might be used with
+   ``python -m``, and marks them as unsafe for zipping, since Python 2.4 can't
+   handle ``-m`` on zipped modules.
+
+ * Updated extraction/cache mechanism for zipped resources to avoid inter-
+   process and inter-thread races during extraction.  The default cache
+   location can now be set via the ``PYTHON_EGGS_CACHE`` environment variable,
+   and the default Windows cache is now a ``Python-Eggs`` subdirectory of the
+   current user's "Application Data" directory, if the ``PYTHON_EGGS_CACHE``
+   variable isn't set.
+
 0.5a11
  * Fix breakage of the "develop" command that was caused by the addition of
    ``--always-unzip`` to the ``easy_install`` command.



More information about the Python-checkins mailing list