[Python-checkins] python/nondist/sandbox/setuptools/setuptools.egg-info entry_points.txt, 1.4, 1.5

pje@users.sourceforge.net pje at users.sourceforge.net
Mon Aug 22 01:33:52 CEST 2005


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

Modified Files:
	entry_points.txt 
Log Message:
Fix problem w/bdist_rpm and setuptools, reported by Walter Doerwald.  I
was trying to have setuptools fix distutils' broken filename handling that
assumes people haven't put punctuation in their distribution names, 
including '-' (which prevents unambiguous parsing of distribution names).
However, bdist_rpm's attempt to guess a source distribution's filename 
isn't compatible with this fix, without making other changes.  I decided
therefore to drop the fixes for the sake of backward compatibility, but
monkeypatch bdist_rpm so that it runs "egg_info" first, to ensure that any
--tag-svn-revision or other tagging options take effect.


Index: entry_points.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.egg-info/entry_points.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- entry_points.txt	6 Aug 2005 21:17:50 -0000	1.4
+++ entry_points.txt	21 Aug 2005 23:33:40 -0000	1.5
@@ -17,6 +17,7 @@
 depends.txt = setuptools.command.egg_info:warn_depends_obsolete
 
 [distutils.commands]
+bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
 rotate = setuptools.command.rotate:rotate
 develop = setuptools.command.develop:develop
 setopt = setuptools.command.setopt:setopt



More information about the Python-checkins mailing list