Make SRPMs pyversion 'any'.
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py
index c7b94e8..7968d14 100644
--- a/Lib/distutils/command/bdist_rpm.py
+++ b/Lib/distutils/command/bdist_rpm.py
@@ -347,7 +347,7 @@
                 srpms = glob.glob(os.path.join(rpm_dir['SRPMS'], "*.rpm"))
                 assert len(srpms) == 1, \
                        "unexpected number of SRPM files found: %s" % srpms
-                dist_file = ('bdist_rpm', '',
+                dist_file = ('bdist_rpm', 'any',
                              os.path.join(self.dist_dir,
                                           os.path.basename(srpms[0])))
                 self.distribution.dist_files.append(dist_file)