X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fregexes.py;h=daf16ff653006220e35a23d4af38b3dc2c115fed;hb=d0d94b9b1e5b21a6769991ffcb8a4eb4983efc71;hp=00896243e025152bde31f8faeed3b98d4aac061c;hpb=794af281d5da81cd6fb49ad35ed94ecb3e4173df;p=dak.git diff --git a/daklib/regexes.py b/daklib/regexes.py index 00896243..daf16ff6 100755 --- a/daklib/regexes.py +++ b/daklib/regexes.py @@ -112,3 +112,7 @@ re_user_mails = re.compile(r"^(pub|uid):[^rdin].*<(.*@.*)>.*$", re.MULTILINE); re_user_name = re.compile(r"^pub:.*:(.*)<.*$", re.MULTILINE); re_re_mark = re.compile(r'^RE:') +re_parse_lintian = re.compile(r"^(?PW|E|O): (?P.*?): (?P[^ ]*) ?(?P.*)$") + +# in process-upload +re_match_expired = re.compile(r"^The key used to sign .+ has expired on .+$")