5 Central repository of regexes for dak
7 @contact: Debian FTP Master <ftpmaster@debian.org>
8 @copyright: 2001, 2002, 2003, 2004, 2005, 2006 James Troup <james@nocrew.org>
9 @copyright: 2009 Mark Hymers <mhy@debian.org>
10 @copyright: 2009 Joerg Jaspert <joerg@debian.org>
11 @license: GNU General Public License version 2 or later
14 # This program is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2 of the License, or
17 # (at your option) any later version.
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 ###############################################################################
32 re_isanum = re.compile (r"^\d+$")
33 re_default_answer = re.compile(r"\[(.*)\]")
34 re_fdnic = re.compile(r"\n\n")
35 re_bin_only_nmu = re.compile(r"\+b\d+$")
37 re_comments = re.compile(r"\#.*")
38 re_whitespace_comment = re.compile(r"^\s*(#|$)")
39 re_no_epoch = re.compile(r"^\d+\:")
40 re_no_revision = re.compile(r"-[^-]+$")
41 re_arch_from_filename = re.compile(r"/binary-[^/]+/")
42 re_extract_src_version = re.compile (r"(\S+)\s*\((.*)\)")
43 re_isadeb = re.compile (r"(.+?)_(.+?)_(.+)\.u?deb$")
45 orig_source_ext_re = r"orig(?:-.+)?\.tar\.(?:gz|bz2)"
46 re_orig_source_ext = re.compile(orig_source_ext_re + "$")
47 re_source_ext = re.compile("(" + orig_source_ext_re + r"|debian\.tar\.(?:gz|bz2)|diff\.gz|tar\.(?:gz|bz2)|dsc)$")
48 re_issource = re.compile(r"(.+)_(.+?)\." + re_source_ext.pattern)
49 re_is_orig_source = re.compile (r"(.+)_(.+?)\.orig(?:-.+)?\.tar\.(?:gz|bz2)$")
51 re_single_line_field = re.compile(r"^(\S*?)\s*:\s*(.*)")
52 re_multi_line_field = re.compile(r"^\s(.*)")
53 re_taint_free = re.compile(r"^[-+~/\.\w]+$")
55 re_parse_maintainer = re.compile(r"^\s*(\S.*\S)\s*\<([^\>]+)\>")
56 re_gpg_uid = re.compile('^uid.*<([^>]*)>')
58 re_srchasver = re.compile(r"^(\S+)\s+\((\S+)\)$")
59 re_verwithext = re.compile(r"^(\d+)(?:\.(\d+))(?:\s+\((\S+)\))?$")
61 re_srchasver = re.compile(r"^(\S+)\s+\((\S+)\)$")
63 html_escaping = {'"':'"', '&':'&', '<':'<', '>':'>'}
64 re_html_escaping = re.compile('|'.join(map(re.escape, html_escaping.keys())))
66 # From clean_proposed_updates.py
67 re_isdeb = re.compile (r"^(.+)_(.+?)_(.+?).u?deb$")
69 # From examine_package.py
70 re_package = re.compile(r"^(.+?)_.*")
71 re_doc_directory = re.compile(r".*/doc/([^/]*).*")
73 re_contrib = re.compile('^contrib/')
74 re_nonfree = re.compile('^non\-free/')
76 re_localhost = re.compile("localhost\.localdomain")
77 re_version = re.compile('^(.*)\((.*)\)')
79 re_newlinespace = re.compile('\n')
80 re_spacestrip = re.compile('(\s)')
82 # From import_archive.py
83 re_arch_from_filename = re.compile(r"binary-[^/]+")
85 # From import_ldap_fingerprints.py
86 re_gpg_fingerprint = re.compile(r"^\s+Key fingerprint = (.*)$", re.MULTILINE)
87 re_debian_address = re.compile(r"^.*<(.*)@debian\.org>$", re.MULTILINE)
89 # From new_security_install.py
90 re_taint_free = re.compile(r"^['/;\-\+\.~\s\w]+$")
92 # From process_unchecked.py
93 re_valid_version = re.compile(r"^([0-9]+:)?[0-9A-Za-z\.\-\+:~]+$")
94 re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$")
95 re_changelog_versions = re.compile(r"^\w[-+0-9a-z.]+ \([^\(\) \t]+\)")
96 re_strip_revision = re.compile(r"-([^-]+)$")
97 re_strip_srcver = re.compile(r"\s+\(\S+\)$")
98 re_spacestrip = re.compile('(\s)')
101 re_strip_source_version = re.compile (r'\s+.*$')
102 re_build_dep_arch = re.compile(r"\[[^]]+\]")
104 # From dak/transitions.py
105 re_broken_package = re.compile(r"[a-zA-Z]\w+\s+\-.*")
107 # From dak/add_user.py
108 re_gpg_fingerprint = re.compile(r"^fpr:+(.*):$", re.MULTILINE);
109 # The next one is dirty
110 re_user_address = re.compile(r"^pub:.*<(.*)@.*>.*$", re.MULTILINE);
111 re_user_mails = re.compile(r"^(pub|uid):[^rdin].*<(.*@.*)>.*$", re.MULTILINE);
112 re_user_name = re.compile(r"^pub:.*:(.*)<.*$", re.MULTILINE);
113 re_re_mark = re.compile(r'^RE:')
115 re_parse_lintian = re.compile(r"^(W|E|O): (.*?): ([^ ]*) ?(.*)$")