diff options
author | Gustavo Niemeyer <gustavo@niemeyer.net> | 2002-11-06 18:44:26 (GMT) |
---|---|---|
committer | Gustavo Niemeyer <gustavo@niemeyer.net> | 2002-11-06 18:44:26 (GMT) |
commit | fbceb01ef0cc7cf5386f0e2c2d75b1b09dd291f9 (patch) | |
tree | 3b574b19f1e7a0a7d47a1b83c8c1afcfb705be06 /Misc | |
parent | 4dbf192f2b7d267636244de70faf8c5d78790655 (diff) | |
download | cpython-fbceb01ef0cc7cf5386f0e2c2d75b1b09dd291f9.zip cpython-fbceb01ef0cc7cf5386f0e2c2d75b1b09dd291f9.tar.gz cpython-fbceb01ef0cc7cf5386f0e2c2d75b1b09dd291f9.tar.bz2 |
Fixed bug "[#466200] ability to specify a 'verify' script".
* Lib/distutils/command/bdist_rpm.py
(bdist_rpm.initialize_options): Included verify_script attribute.
(bdist_rpm.finalize_package_data): Ensure that verify_script is a filename.
(bdist_rpm._make_spec_file): Included verify_script in script_options
tuple.
* Misc/NEWS
Mention change.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -355,7 +355,7 @@ Extension modules - Fixed bug #470582: sre module would return a tuple (None, 'a', 'ab') when applying the regular expression '^((a)c)?(ab)$' on 'ab'. It now returns (None, None, 'ab'), as expected. Also fixed handling of - lastindex/lastgroup match attributes in a similar cases. For example, + lastindex/lastgroup match attributes in similar cases. For example, when running the expression r'(a)(b)?b' over 'ab', lastindex must be 1, not 2. @@ -558,6 +558,10 @@ Library - New pdb command `pp' which is like `p' except that it pretty-prints the value of its expression argument. +- Now bdist_rpm distutils command understands a verify_script option in + the config file, including the contents of the referred filename in + the "%verifyscript" section of the rpm spec file. + Tools/Demos ----------- |