[Python-checkins] CVS: distutils/distutils/command sdist.py,1.13,1.14 bdist_dumb.py,1.2,1.3
Greg Ward
python-dev@python.org
2000年4月21日 22:51:30 -0400 (EDT)
Update of /projects/cvsroot/distutils/distutils/command
In directory newcnri:/tmp/cvs-serv24466
Modified Files:
sdist.py bdist_dumb.py
Log Message:
Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object.
Index: sdist.py
===================================================================
RCS file: /projects/cvsroot/distutils/distutils/command/sdist.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** sdist.py 2000年04月21日 04:37:12 1.13
--- sdist.py 2000年04月22日 02:51:24 1.14
***************
*** 5,9 ****
# created 1999年09月22日, Greg Ward
! __revision__ = "$Id: sdist.py,v 1.13 2000年04月21日 04:37:12 gward Exp $"
import sys, os, string, re
--- 5,9 ----
# created 1999年09月22日, Greg Ward
! __revision__ = "$Id: sdist.py,v 1.14 2000年04月22日 02:51:24 gward Exp $"
import sys, os, string, re
***************
*** 503,507 ****
# Don't warn about missing meta-data here -- should be (and is!)
# done elsewhere.
! base_dir = self.distribution.get_full_name()
# Remove any files that match "base_dir" from the fileset -- we
--- 503,507 ----
# Don't warn about missing meta-data here -- should be (and is!)
# done elsewhere.
! base_dir = self.distribution.get_fullname()
# Remove any files that match "base_dir" from the fileset -- we
Index: bdist_dumb.py
===================================================================
RCS file: /projects/cvsroot/distutils/distutils/command/bdist_dumb.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** bdist_dumb.py 2000年03月31日 05:22:47 1.2
--- bdist_dumb.py 2000年04月22日 02:51:25 1.3
***************
*** 7,11 ****
# created 2000年03月29日, Greg Ward
! __revision__ = "$Id: bdist_dumb.py,v 1.2 2000年03月31日 05:22:47 gward Exp $"
import os
--- 7,11 ----
# created 2000年03月29日, Greg Ward
! __revision__ = "$Id: bdist_dumb.py,v 1.3 2000年04月22日 02:51:25 gward Exp $"
import os
***************
*** 71,75 ****
# And make an archive relative to the root of the
# pseudo-installation tree.
! archive_basename = "%s.%s" % (self.distribution.get_full_name(),
get_platform())
print "output_dir = %s" % output_dir
--- 71,75 ----
# And make an archive relative to the root of the
# pseudo-installation tree.
! archive_basename = "%s.%s" % (self.distribution.get_fullname(),
get_platform())
print "output_dir = %s" % output_dir