[Python-checkins] CVS: distutils/distutils/command sdist.py,1.17,1.18

Greg Ward python-dev@python.org
Tue, 25 Apr 2000 21:14:38 -0400 (EDT)


Update of /projects/cvsroot/distutils/distutils/command
In directory newcnri:/tmp/cvs-serv22111

Modified Files:
	sdist.py 
Log Message:
Supply short form for --manifest-only (-o) and --force-manifest (-f)
options.


Index: sdist.py
===================================================================
RCS file: /projects/cvsroot/distutils/distutils/command/sdist.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** sdist.py	2000/04/26 01:12:40	1.17
--- sdist.py	2000/04/26 01:14:33	1.18
***************
*** 5,9 ****
  # created 1999/09/22, Greg Ward
  
! __revision__ = "$Id: sdist.py,v 1.17 2000/04/26 01:12:40 gward Exp $"
  
  import sys, os, string, re
--- 5,9 ----
  # created 1999/09/22, Greg Ward
  
! __revision__ = "$Id: sdist.py,v 1.18 2000/04/26 01:14:33 gward Exp $"
  
  import sys, os, string, re
***************
*** 31,37 ****
           "include the default file set in the manifest "
           "[default; disable with --no-defaults]"),
!         ('manifest-only', None,
           "just regenerate the manifest and then stop"),
!         ('force-manifest', None,
           "forcibly regenerate the manifest and carry on as usual"),
          ('formats=', None,
--- 31,37 ----
           "include the default file set in the manifest "
           "[default; disable with --no-defaults]"),
!         ('manifest-only', 'o',
           "just regenerate the manifest and then stop"),
!         ('force-manifest', 'f',
           "forcibly regenerate the manifest and carry on as usual"),
          ('formats=', None,