X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fregexes.py;h=ee26430ce8673b1908b5a948cce877898328e4f7;hb=9ab279e1f1cdff0fc689c894abcd7d0620603555;hp=48b5281435e7a333beee65e51141dd5286f85195;hpb=0d80b258098ff470433efa4d9c1f81b404883195;p=dak.git diff --git a/daklib/regexes.py b/daklib/regexes.py old mode 100644 new mode 100755 index 48b52814..ee26430c --- a/daklib/regexes.py +++ b/daklib/regexes.py @@ -1,9 +1,15 @@ #!/usr/bin/env python # vim:set et sw=4: -"""Central repository of regexes for dak""" -# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 James Troup -# Copyright (C) 2009 Mark Hymers +""" +Central repository of regexes for dak + +@contact: Debian FTP Master +@copyright: 2001, 2002, 2003, 2004, 2005, 2006 James Troup +@copyright: 2009 Mark Hymers +@copyright: 2009 Joerg Jaspert +@license: GNU General Public License version 2 or later +""" # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -92,3 +98,12 @@ re_build_dep_arch = re.compile(r"\[[^]]+\]") # From dak/transitions.py re_broken_package = re.compile(r"[a-zA-Z]\w+\s+\-.*") + +# From dak/add_user.py +re_gpg_fingerprint = re.compile(r"^fpr:+(.*):$", re.MULTILINE); +# The next one is dirty +re_user_address = re.compile(r"^pub:.*<(.*)@.*>.*$", re.MULTILINE); +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:') +