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_no_epoch = re.compile(r"^\d+\:")
39 re_no_revision = re.compile(r"-[^-]+$")
40 re_arch_from_filename = re.compile(r"/binary-[^/]+/")
41 re_extract_src_version = re.compile (r"(\S+)\s*\((.*)\)")
42 re_isadeb = re.compile (r"(.+?)_(.+?)_(.+)\.u?deb$")
44 re_issource = re.compile (r"(.+)_(.+?)\.(orig\.tar\.gz|diff\.gz|tar\.gz|dsc)$")
46 re_single_line_field = re.compile(r"^(\S*)\s*:\s*(.*)")
47 re_multi_line_field = re.compile(r"^\s(.*)")
48 re_taint_free = re.compile(r"^[-+~/\.\w]+$")
50 re_parse_maintainer = re.compile(r"^\s*(\S.*\S)\s*\<([^\>]+)\>")
51 re_gpg_uid = re.compile('^uid.*<([^>]*)>')
53 re_srchasver = re.compile(r"^(\S+)\s+\((\S+)\)$")
54 re_verwithext = re.compile(r"^(\d+)(?:\.(\d+))(?:\s+\((\S+)\))?$")
56 re_srchasver = re.compile(r"^(\S+)\s+\((\S+)\)$")
58 html_escaping = {'"':'"', '&':'&', '<':'<', '>':'>'}
59 re_html_escaping = re.compile('|'.join(map(re.escape, html_escaping.keys())))
61 # From clean_proposed_updates.py
62 re_isdeb = re.compile (r"^(.+)_(.+?)_(.+?).u?deb$")
64 # From examine_package.py
65 re_package = re.compile(r"^(.+?)_.*")
66 re_doc_directory = re.compile(r".*/doc/([^/]*).*")
68 re_contrib = re.compile('^contrib/')
69 re_nonfree = re.compile('^non\-free/')
71 re_localhost = re.compile("localhost\.localdomain")
72 re_version = re.compile('^(.*)\((.*)\)')
74 re_newlinespace = re.compile('\n')
75 re_spacestrip = re.compile('(\s)')
77 # From import_archive.py
78 re_arch_from_filename = re.compile(r"binary-[^/]+")
80 # From import_ldap_fingerprints.py
81 re_gpg_fingerprint = re.compile(r"^\s+Key fingerprint = (.*)$", re.MULTILINE)
82 re_debian_address = re.compile(r"^.*<(.*)@debian\.org>$", re.MULTILINE)
84 # From new_security_install.py
85 re_taint_free = re.compile(r"^['/;\-\+\.~\s\w]+$")
87 # From process_unchecked.py
88 re_valid_version = re.compile(r"^([0-9]+:)?[0-9A-Za-z\.\-\+:~]+$")
89 re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$")
90 re_changelog_versions = re.compile(r"^\w[-+0-9a-z.]+ \([^\(\) \t]+\)")
91 re_strip_revision = re.compile(r"-([^-]+)$")
92 re_strip_srcver = re.compile(r"\s+\(\S+\)$")
93 re_spacestrip = re.compile('(\s)')
96 re_strip_source_version = re.compile (r'\s+.*$')
97 re_build_dep_arch = re.compile(r"\[[^]]+\]")
99 # From dak/transitions.py
100 re_broken_package = re.compile(r"[a-zA-Z]\w+\s+\-.*")
102 # From dak/add_user.py
103 re_gpg_fingerprint = re.compile(r"^fpr:+(.*):$", re.MULTILINE);
104 # The next one is dirty
105 re_user_address = re.compile(r"^pub:.*<(.*)@.*>.*$", re.MULTILINE);
106 re_user_mails = re.compile(r"^(pub|uid):[^rdin].*<(.*@.*)>.*$", re.MULTILINE);
107 re_user_name = re.compile(r"^pub:.*:(.*)<.*$", re.MULTILINE);
108 re_re_mark = re.compile(r'^RE:')