From: Michael Pöhn Date: Thu, 22 Feb 2018 22:29:30 +0000 (+0100) Subject: allow dashes and underscores in signature file names when checking for reproducability X-Git-Tag: 1.0.3~25^2 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8cca83aec47377a2f97a6ee5c24ff8d3f1a72f29;p=fdroidserver.git allow dashes and underscores in signature file names when checking for reproducability --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index b0af59fc..83dfb441 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -2278,7 +2278,7 @@ def place_srclib(root_dir, number, libpath): o.write('android.library.reference.%d=%s\n' % (number, relpath)) -apk_sigfile = re.compile(r'META-INF/[0-9A-Za-z]+\.(SF|RSA|DSA|EC)') +apk_sigfile = re.compile(r'META-INF/[0-9A-Za-z_\-]+\.(SF|RSA|DSA|EC)') def signer_fingerprint_short(sig):