[Python-checkins] python/dist/src/Lib/distutils/command bdist.py,1.26,1.27 bdist_dumb.py,1.20,1.21 bdist_rpm.py,1.35,1.36 bdist_wininst.py,1.41,1.42 build.py,1.32,1.33 build_clib.py,1.25,1.26 build_ext.py,1.89,1.90 build_py.py,1.39,1.40 build_scripts.py,1.16,1.17 config.py,1.13,1.14 install.py,1.65,1.66 install_headers.py,1.8,1.9 install_lib.py,1.40,1.41 sdist.py,1.54,1.55

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Wed, 13 Nov 2002 18:25:44 -0800


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory usw-pr-cvs1:/tmp/cvs-serv2783/command

Modified Files:
	bdist.py bdist_dumb.py bdist_rpm.py bdist_wininst.py build.py 
	build_clib.py build_ext.py build_py.py build_scripts.py 
	config.py install.py install_headers.py install_lib.py 
	sdist.py 
Log Message:
Remove 'created by' lines; people can use CVS for this, and the information is often out of date

Index: bdist.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** bdist.py	4 Oct 2002 09:30:06 -0000	1.26
--- bdist.py	14 Nov 2002 02:25:42 -0000	1.27
***************
*** 4,9 ****
  distribution)."""
  
- # created 2000/03/29, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 4,7 ----

Index: bdist_dumb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_dumb.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** bdist_dumb.py	4 Jun 2002 20:14:42 -0000	1.20
--- bdist_dumb.py	14 Nov 2002 02:25:42 -0000	1.21
***************
*** 5,10 ****
  $exec_prefix)."""
  
- # created 2000/03/29, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 5,8 ----

Index: bdist_rpm.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_rpm.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** bdist_rpm.py	8 Nov 2002 15:11:42 -0000	1.35
--- bdist_rpm.py	14 Nov 2002 02:25:42 -0000	1.36
***************
*** 4,9 ****
  distributions)."""
  
- # created 2000/04/25, by Harry Henry Gebel
- 
  __revision__ = "$Id$"
  
--- 4,7 ----

Index: bdist_wininst.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_wininst.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** bdist_wininst.py	14 Nov 2002 01:44:35 -0000	1.41
--- bdist_wininst.py	14 Nov 2002 02:25:42 -0000	1.42
***************
*** 4,9 ****
  exe-program."""
  
- # created 2000/06/02, Thomas Heller
- 
  __revision__ = "$Id$"
  
--- 4,7 ----

Index: build.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build.py,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** build.py	10 Dec 2001 15:28:30 -0000	1.32
--- build.py	14 Nov 2002 02:25:42 -0000	1.33
***************
*** 3,8 ****
  Implements the Distutils 'build' command."""
  
- # created 1999/03/08, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 3,6 ----

Index: build_clib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_clib.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** build_clib.py	4 Jun 2002 20:14:43 -0000	1.25
--- build_clib.py	14 Nov 2002 02:25:42 -0000	1.26
***************
*** 5,11 ****
  module."""
  
- # created (an empty husk) 1999/12/18, Greg Ward
- # fleshed out 2000/02/03-04
- 
  __revision__ = "$Id$"
  
--- 5,8 ----

Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_ext.py,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -d -r1.89 -r1.90
*** build_ext.py	14 Nov 2002 01:44:34 -0000	1.89
--- build_ext.py	14 Nov 2002 02:25:42 -0000	1.90
***************
*** 5,10 ****
  extensions ASAP)."""
  
- # created 1999/08/09, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 5,8 ----

Index: build_py.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_py.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** build_py.py	4 Jun 2002 21:00:20 -0000	1.39
--- build_py.py	14 Nov 2002 02:25:42 -0000	1.40
***************
*** 3,8 ****
  Implements the Distutils 'build_py' command."""
  
- # created 1999/03/08, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 3,6 ----

Index: build_scripts.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_scripts.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** build_scripts.py	4 Jun 2002 20:14:43 -0000	1.16
--- build_scripts.py	14 Nov 2002 02:25:42 -0000	1.17
***************
*** 3,8 ****
  Implements the Distutils 'build_scripts' command."""
  
- # created 2000/05/23, Bastian Kleineidam
- 
  __revision__ = "$Id$"
  
--- 3,6 ----

Index: config.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/config.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** config.py	5 Nov 2002 16:12:02 -0000	1.13
--- config.py	14 Nov 2002 02:25:42 -0000	1.14
***************
*** 10,15 ****
  """
  
- # created 2000/05/29, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 10,13 ----

Index: install.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install.py,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -d -r1.65 -r1.66
*** install.py	11 Sep 2002 16:31:51 -0000	1.65
--- install.py	14 Nov 2002 02:25:42 -0000	1.66
***************
*** 5,10 ****
  from distutils import log
  
- # created 1999/03/13, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 5,8 ----

Index: install_headers.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_headers.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** install_headers.py	6 Dec 2001 20:57:12 -0000	1.8
--- install_headers.py	14 Nov 2002 02:25:42 -0000	1.9
***************
*** 4,9 ****
  files to the Python include directory."""
  
- # created 2000/05/26, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 4,7 ----

Index: install_lib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_lib.py,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** install_lib.py	4 Jun 2002 20:14:43 -0000	1.40
--- install_lib.py	14 Nov 2002 02:25:42 -0000	1.41
***************
*** 1,4 ****
- # created 1999/03/13, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 1,2 ----

Index: sdist.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/sdist.py,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -d -r1.54 -r1.55
*** sdist.py	4 Jun 2002 20:14:43 -0000	1.54
--- sdist.py	14 Nov 2002 02:25:42 -0000	1.55
***************
*** 3,8 ****
  Implements the Distutils 'sdist' command (create a source distribution)."""
  
- # created 1999/09/22, Greg Ward
- 
  __revision__ = "$Id$"
  
--- 3,6 ----