summaryrefslogtreecommitdiffstats
path: root/rpmbuild-remote.py
diff options
context:
space:
mode:
Diffstat (limited to 'rpmbuild-remote.py')
-rw-r--r--rpmbuild-remote.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py
index 4c5334c..d03d751 100644
--- a/rpmbuild-remote.py
+++ b/rpmbuild-remote.py
@@ -11,6 +11,15 @@ import os
LOG = logging.getLogger('rpmbuild-remote')
LOG.addHandler(logging.StreamHandler())
+EXTENSIONS = (
+ 'patch',
+ 'bz2',
+ 'gz',
+ 'tgz',
+ 'lzma',
+ 'xz'
+)
+
def get_parser():
"""Return a commandline parser"""
parser = optparse.OptionParser(usage="%prog [options]... <files>...")
@@ -56,7 +65,7 @@ def main():
if ext == '.srpm' or ext == '.spec':
jobs.append([arg])
else:
- if ext not in ('.gz', '.tgz', '.bz2', '.patch'):
+ if ext not in EXTENSIONS:
LOG.warning("Uncommon source extension %s for file %s. "
"Please double check files." % (ext, arg))
if len(jobs) == 0: