[Python-checkins] CVS: distutils/distutils/command bdist_rpm.py,1.21,1.22

Greg Ward python-dev@python.org
Sun, 24 Sep 2000 18:53:05 -0700


Update of /cvsroot/python/distutils/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv10996

Modified Files:
	bdist_rpm.py 
Log Message:
Added a bunch of missing "=" signs in the option table.
Removed script options -- don't think they ever worked, weren't
  very well thought through, etc.


Index: bdist_rpm.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/bdist_rpm.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** bdist_rpm.py	2000/09/25 01:41:13	1.21
--- bdist_rpm.py	2000/09/25 01:53:01	1.22
***************
*** 49,98 ****
          # info in setup.cfg, although they are of course free to
          # supply it on the command line.
!         ('distribution-name', None,
           "name of the (Linux) distribution to which this "
           "RPM applies (*not* the name of the module distribution!)"),
!         ('group', None,
           "package classification [default: \"Development/Libraries\"]"),
!         ('release', None,
           "RPM release number"),
!         ('serial', None,
           "RPM serial number"),
!         ('vendor', None,
           "RPM \"vendor\" (eg. \"Joe Blow <joe@example.com>\") "
           "[default: maintainer or author from setup script]"),
!         ('packager', None,
           "RPM packager (eg. \"Jane Doe <jane@example.net>\")"
           "[default: vendor]"),
!         ('doc-files', None,
           "list of documentation files (space or comma-separated)"),
!         ('changelog', None,
           "path to RPM changelog"),
!         ('icon', None,
           "name of icon file"),
!         ('prep-script', None,
!          "pre-build script  (Bourne shell code)"),
!         ('build-script', None,
!          "build script (Bourne shell code)"),
!         ('install-script', None,
!          "installation script (Bourne shell code)"),
!         ('clean-script', None,
!          "clean script (Bourne shell code)"),
!         ('pre-install', None,
!          "pre-install script (Bourne shell code)"),
!         ('post-install', None,
!          "post-install script (Bourne shell code)"),
!         ('pre-uninstall', None,
!          "pre-uninstall script (Bourne shell code)"),
!         ('post-uninstall', None,
!          "post-uninstall script (Bourne shell code)"),
!         ('provides', None,
           "capabilities provided by this package"),
!         ('requires', None,
           "capabilities required by this package"),
!         ('conflicts', None,
           "capabilities which conflict with this package"),
!         ('build-requires', None,
           "capabilities required to build this package"),
!         ('obsoletes', None,
           "capabilities made obsolete by this package"),
  
--- 49,82 ----
          # info in setup.cfg, although they are of course free to
          # supply it on the command line.
!         ('distribution-name=', None,
           "name of the (Linux) distribution to which this "
           "RPM applies (*not* the name of the module distribution!)"),
!         ('group=', None,
           "package classification [default: \"Development/Libraries\"]"),
!         ('release=', None,
           "RPM release number"),
!         ('serial=', None,
           "RPM serial number"),
!         ('vendor=', None,
           "RPM \"vendor\" (eg. \"Joe Blow <joe@example.com>\") "
           "[default: maintainer or author from setup script]"),
!         ('packager=', None,
           "RPM packager (eg. \"Jane Doe <jane@example.net>\")"
           "[default: vendor]"),
!         ('doc-files=', None,
           "list of documentation files (space or comma-separated)"),
!         ('changelog=', None,
           "path to RPM changelog"),
!         ('icon=', None,
           "name of icon file"),
!         ('provides=', None,
           "capabilities provided by this package"),
!         ('requires=', None,
           "capabilities required by this package"),
!         ('conflicts=', None,
           "capabilities which conflict with this package"),
!         ('build-requires=', None,
           "capabilities required to build this package"),
!         ('obsoletes=', None,
           "capabilities made obsolete by this package"),