diff -r 2a8ccff8f337 Lib/distutils/command/bdist_rpm.py --- a/Lib/distutils/command/bdist_rpm.py Wed Oct 05 22:44:12 2011 +0200 +++ b/Lib/distutils/command/bdist_rpm.py Fri Oct 07 10:35:42 2011 +1300 @@ -365,16 +365,29 @@ self.spawn(rpm_cmd) if not self.dry_run: + if self.distribution.has_ext_modules(): + pyversion = get_python_version() + else: + pyversion = 'any' + if not self.binary_only: srpm = os.path.join(rpm_dir['SRPMS'], source_rpm) assert(os.path.exists(srpm)) self.move_file(srpm, self.dist_dir) + filename = os.path.join(self.dist_dir, source_rpm) + self.distribution.dist_files.append(('bdist_rpm', pyversion, + filename)) if not self.source_only: for rpm in binary_rpms: rpm = os.path.join(rpm_dir['RPMS'], rpm) if os.path.exists(rpm): self.move_file(rpm, self.dist_dir) + filename = os.path.join(self.dist_dir, + os.path.basename(rpm)) + self.distribution.dist_files.append(('bdist_rpm', + pyversion, + filename)) def _dist_path(self, path): return os.path.join(self.dist_dir, os.path.basename(path))