aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorUnit 193 <unit193@unit193.net>2021-12-16 19:58:11 -0500
committerGuido Günther <agx@sigxcpu.org>2021-12-19 11:39:08 +0100
commitf268448bc6b2655886409ded56f9fba1bcf5a74b (patch)
treedc8b566faa71d4e6dbcfcc340ae4bff84fa6156e
parent1065bca7a5c12835087e6f1822730808c9aa202f (diff)
uscan: Remove pre-devscripts 2.10.70 compat code
We can rely on the <target> element being present in dehs output. The output it looks for from uscan no longer matches anyway.
-rw-r--r--gbp/deb/uscan.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/gbp/deb/uscan.py b/gbp/deb/uscan.py
index 4eb70a6b..1757ddb3 100644
--- a/gbp/deb/uscan.py
+++ b/gbp/deb/uscan.py
@@ -69,16 +69,6 @@ class Uscan(object):
if m:
source = '../%s' % m.group(1)
break
- elif row.startswith('<messages>'):
- m = re.match(r".*symlinked ([^\s]+) to it", row)
- if m:
- source = "../%s" % m.group(1)
- break
- m = re.match(r"Successfully downloaded updated package "
- "([^<]+)", row)
- if m:
- source = "../%s" % m.group(1)
- break
# Try to determine the already downloaded sources name
else:
d = {}