diff options
author | Greg Ward <gward@python.net> | 2000-09-25 01:53:01 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-25 01:53:01 (GMT) |
commit | d644ca2120ea2e53cca869332ca98a4638949255 (patch) | |
tree | 5e3958c6a36074dc163c832f3f6898e75f667835 /Lib/distutils | |
parent | af64aed5cfb23dc9af9475a1d810ed9f440b00bb (diff) | |
download | cpython-d644ca2120ea2e53cca869332ca98a4638949255.zip cpython-d644ca2120ea2e53cca869332ca98a4638949255.tar.gz cpython-d644ca2120ea2e53cca869332ca98a4638949255.tar.bz2 |
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.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/bdist_rpm.py | 44 |
1 files changed, 14 insertions, 30 deletions
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py index d585e8c..c293f1f 100644 --- a/Lib/distutils/command/bdist_rpm.py +++ b/Lib/distutils/command/bdist_rpm.py @@ -48,52 +48,36 @@ class bdist_rpm (Command): # to "bdist_rpm". The idea is that packagers would put this # info in setup.cfg, although they are of course free to # supply it on the command line. - ('distribution-name', None, + ('distribution-name=', None, "name of the (Linux) distribution to which this " "RPM applies (*not* the name of the module distribution!)"), - ('group', None, + ('group=', None, "package classification [default: \"Development/Libraries\"]"), - ('release', None, + ('release=', None, "RPM release number"), - ('serial', None, + ('serial=', None, "RPM serial number"), - ('vendor', None, + ('vendor=', None, "RPM \"vendor\" (eg. \"Joe Blow <joe@example.com>\") " "[default: maintainer or author from setup script]"), - ('packager', None, + ('packager=', None, "RPM packager (eg. \"Jane Doe <jane@example.net>\")" "[default: vendor]"), - ('doc-files', None, + ('doc-files=', None, "list of documentation files (space or comma-separated)"), - ('changelog', None, + ('changelog=', None, "path to RPM changelog"), - ('icon', None, + ('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, + ('provides=', None, "capabilities provided by this package"), - ('requires', None, + ('requires=', None, "capabilities required by this package"), - ('conflicts', None, + ('conflicts=', None, "capabilities which conflict with this package"), - ('build-requires', None, + ('build-requires=', None, "capabilities required to build this package"), - ('obsoletes', None, + ('obsoletes=', None, "capabilities made obsolete by this package"), # Actions to take when building RPM |