Patch #970015: Replace - by _ in version and release.

This commit is contained in:
Martin v. Löwis 2004-08-25 13:04:53 +00:00
parent cf525241bb
commit cae9e673d6
2 changed files with 4 additions and 3 deletions

View File

@ -332,8 +332,8 @@ class bdist_rpm (Command):
# definitions and headers
spec_file = [
'%define name ' + self.distribution.get_name(),
'%define version ' + self.distribution.get_version(),
'%define release ' + self.release,
'%define version ' + self.distribution.get_version().replace('-','_'),
'%define release ' + self.release.replace('-','_'),
'',
'Summary: ' + self.distribution.get_description(),
]

View File

@ -57,7 +57,8 @@ Extension modules
Library
-------
- bdist_rpm now includes version and release in the BuildRoot.
- bdist_rpm now includes version and release in the BuildRoot, and
replaces - by ``_`` in version and release.
- distutils build/build_scripts now has an -e option to specify the
path to the Python interpreter for installed scripts.