[Python-checkins] r50534 - in sandbox/branches/setuptools-0.6: setuptools.egg-info/entry_points.txt setuptools.txt setuptools/command/__init__.py setuptools/command/register.py

phillip.eby python-checkins at python.org
Mon Jul 10 22:08:21 CEST 2006


Author: phillip.eby
Date: Mon Jul 10 22:08:20 2006
New Revision: 50534

Added:
   sandbox/branches/setuptools-0.6/setuptools/command/register.py
      - copied unchanged from r50533, sandbox/trunk/setuptools/setuptools/command/register.py
Modified:
   sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt
   sandbox/branches/setuptools-0.6/setuptools.txt
   sandbox/branches/setuptools-0.6/setuptools/command/__init__.py
Log:
Fix ``register`` not obeying name/version set by ``egg_info`` command, if
``egg_info`` wasn't explicitly run first on the same command line.
(backport from trunk)


Modified: sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt	(original)
+++ sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt	Mon Jul 10 22:08:20 2006
@@ -38,6 +38,7 @@
 build_py = setuptools.command.build_py:build_py
 saveopts = setuptools.command.saveopts:saveopts
 egg_info = setuptools.command.egg_info:egg_info
+register = setuptools.command.register:register
 upload = setuptools.command.upload:upload
 install_egg_info = setuptools.command.install_egg_info:install_egg_info
 alias = setuptools.command.alias:alias

Modified: sandbox/branches/setuptools-0.6/setuptools.txt
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools.txt	(original)
+++ sandbox/branches/setuptools-0.6/setuptools.txt	Mon Jul 10 22:08:20 2006
@@ -2507,6 +2507,10 @@
 Release Notes/Change History
 ----------------------------
 
+0.6b4
+ * Fix ``register`` not obeying name/version set by ``egg_info`` command, if
+   ``egg_info`` wasn't explicitly run first on the same command line.
+
 0.6b3
  * Fix ``bdist_egg`` not including files in subdirectories of ``.egg-info``.
 

Modified: sandbox/branches/setuptools-0.6/setuptools/command/__init__.py
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools/command/__init__.py	(original)
+++ sandbox/branches/setuptools-0.6/setuptools/command/__init__.py	Mon Jul 10 22:08:20 2006
@@ -2,6 +2,7 @@
     'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop',
     'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts',
     'sdist', 'setopt', 'test', 'upload', 'install_egg_info', 'install_scripts',
+    'register',
 ]
 
 


More information about the Python-checkins mailing list