[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.27, 1.28

pje@users.sourceforge.net pje at users.sourceforge.net
Fri Jul 8 07:09:25 CEST 2005


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

Modified Files:
	EasyInstall.txt 
Log Message:
Added support for defining command aliases in distutils configuration
files, under the "[aliases]" section.  To prevent recursion and to allow
aliases to call the command of the same name, a given alias can be expanded
only once per command-line invocation.  You can define new aliases with the
"alias" command, either for the local, global, or per-user configuration.


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- EasyInstall.txt	8 Jul 2005 04:48:20 -0000	1.27
+++ EasyInstall.txt	8 Jul 2005 05:09:23 -0000	1.28
@@ -495,7 +495,13 @@
    name or version).  Also, this means that if you use the various ``--tag``
    options of "egg_info", any distributions generated will use the tags in the
    version, not just egg distributions.
-   
+
+ * Added support for defining command aliases in distutils configuration files,
+   under the "[aliases]" section.  To prevent recursion and to allow aliases to
+   call the command of the same name, a given alias can be expanded only once
+   per command-line invocation.  You can define new aliases with the "alias"
+   command, either for the local, global, or per-user configuration.
+
  * Added "rotate" command to delete old distribution files, given a set of
    patterns to match and the number of files to keep.  (Keeps the most
    recently-modified distribution files matching each pattern.)



More information about the Python-checkins mailing list