aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts/import_orig.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/scripts/import_orig.py')
-rw-r--r--gbp/scripts/import_orig.py36
1 files changed, 19 insertions, 17 deletions
diff --git a/gbp/scripts/import_orig.py b/gbp/scripts/import_orig.py
index 47c56d92..8f3cf27f 100644
--- a/gbp/scripts/import_orig.py
+++ b/gbp/scripts/import_orig.py
@@ -18,6 +18,7 @@
"""Import a new upstream version into a Git repository"""
import os
+import re
import sys
import tempfile
import gbp.command_wrappers as gbpc
@@ -461,22 +462,13 @@ def build_parser(name):
parser.add_option("--uscan", dest='uscan', action="store_true",
default=False, help="use uscan(1) to download the new tarball.")
parser.add_option("--download", dest='download', action="store_true",
- default=False, help="Download from URL via http(s).")
+ default=False, help="Ignored. Accepted for compatibility.")
return parser
def parse_args(argv):
"""Parse the command line arguments
@return: options and arguments
-
- # Silence error output
- >>> _gbp_log_error_bak = gbp.log.error
- >>> gbp.log.error = lambda x: None
- >>> parse_args(['arg0', '--download', '--uscan'])
- (None, None)
- >>> parse_args(['arg0', '--download', 'first', 'second'])
- (None, None)
- >>> gbp.log.error = _gbp_log_error_bak
"""
parser = build_parser(argv[0])
@@ -489,17 +481,27 @@ def parse_args(argv):
if options.no_dch:
gbp.log.warn("'--no-dch' passed. This is now the default, please remove this option.")
- if options.uscan and options.download:
- gbp.log.error("Either uscan or --download can be used, not both.")
- return None, None
-
- if options.download and len(args) != 1:
- gbp.log.error("Need exactly one URL to download not %s" % args)
- return None, None
+ if options.download:
+ gbp.log.warn("Passing --download explicitly is deprecated.")
+ options.download = is_download(args)
return options, args
+def is_download(args):
+ """
+ >>> is_download(["http://foo.example.com"])
+ True
+ >>> is_download([])
+ False
+ >>> is_download(["foo-1.1.orig.tar.gz"])
+ False
+ """
+ if args and re.match("https?://", args[0]):
+ return True
+ return False
+
+
def main(argv):
ret = 0
tmpdir = ''