]> git.decadent.org.uk Git - dak.git/blob - daklib/regexes.py
add-user
[dak.git] / daklib / regexes.py
1 #!/usr/bin/env python
2 # vim:set et sw=4:
3
4 """
5 Central repository of regexes for dak
6
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
12 """
13
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.
18
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.
23
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
27
28 ###############################################################################
29
30 import re
31
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+$")
36
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$")
43
44 re_issource = re.compile (r"(.+)_(.+?)\.(orig\.tar\.gz|diff\.gz|tar\.gz|dsc)$")
45
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]+$")
49
50 re_parse_maintainer = re.compile(r"^\s*(\S.*\S)\s*\<([^\>]+)\>")
51 re_gpg_uid = re.compile('^uid.*<([^>]*)>')
52
53 re_srchasver = re.compile(r"^(\S+)\s+\((\S+)\)$")
54 re_verwithext = re.compile(r"^(\d+)(?:\.(\d+))(?:\s+\((\S+)\))?$")
55
56 re_srchasver = re.compile(r"^(\S+)\s+\((\S+)\)$")
57
58 html_escaping = {'"':'&quot;', '&':'&amp;', '<':'&lt;', '>':'&gt;'}
59 re_html_escaping = re.compile('|'.join(map(re.escape, html_escaping.keys())))
60
61 # From clean_proposed_updates.py
62 re_isdeb = re.compile (r"^(.+)_(.+?)_(.+?).u?deb$")
63
64 # From examine_package.py
65 re_package = re.compile(r"^(.+?)_.*")
66 re_doc_directory = re.compile(r".*/doc/([^/]*).*")
67
68 re_contrib = re.compile('^contrib/')
69 re_nonfree = re.compile('^non\-free/')
70
71 re_localhost = re.compile("localhost\.localdomain")
72 re_version = re.compile('^(.*)\((.*)\)')
73
74 re_newlinespace = re.compile('\n')
75 re_spacestrip = re.compile('(\s)')
76
77 # From import_archive.py
78 re_arch_from_filename = re.compile(r"binary-[^/]+")
79
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)
83
84 # From new_security_install.py
85 re_taint_free = re.compile(r"^['/;\-\+\.~\s\w]+$")
86
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)')
94
95 # From dak/rm.py
96 re_strip_source_version = re.compile (r'\s+.*$')
97 re_build_dep_arch = re.compile(r"\[[^]]+\]")
98
99 # From dak/transitions.py
100 re_broken_package = re.compile(r"[a-zA-Z]\w+\s+\-.*")
101
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