]> git.decadent.org.uk Git - dak.git/commitdiff
Sanity check the provides field
authorJoerg Jaspert <joerg@debian.org>
Sat, 19 Apr 2008 21:20:49 +0000 (23:20 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sat, 19 Apr 2008 21:20:49 +0000 (23:20 +0200)
ChangeLog
dak/process_unchecked.py

index 65e898ebbab112fc688276bc7d2e6a2f3286dec2..c6b4a9e2383ec0103382affb1e3c2fc7c2098acb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-19  Joerg Jaspert  <joerg@debian.org>
+
+       * dak/process_unchecked.py (check_files): Sanity check the
+       provides field, which closes #472783
+
 2008-04-18  Joerg Jaspert  <joerg@debian.org>
 
        * config/debian/dak.conf: Add mapping stable-proposed-updates
index 30737ed1252fb7d7996d1612541798ad76d87db4..0b8241e47a99cad82564bb0035c3b4c0bd403d96 100755 (executable)
@@ -44,6 +44,7 @@ re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$")
 re_changelog_versions = re.compile(r"^\w[-+0-9a-z.]+ \([^\(\) \t]+\)")
 re_strip_revision = re.compile(r"-([^-]+)$")
 re_strip_srcver = re.compile(r"\s+\(\S+\)$")
+re_spacestrip = re.compile('(\s)')
 
 ################################################################################
 
@@ -461,6 +462,16 @@ def check_files():
             if depends == '':
                 reject("%s: Depends field is empty." % (file))
 
+            # Sanity-check the Provides field
+            provides = re_spacestrip.sub('', control.Find("Provides"))
+            if provides == '':
+                reject("%s: Provides field is empty." % (file))
+            prov_list = provides.split(",")
+            for prov in prov_list:
+                if not re_valid_pkg_name.match(prov):
+                    reject("%s: Invalid Provides field content %s." % (file, prov))
+
+
             # Check the section & priority match those given in the .changes (non-fatal)
             if control.Find("Section") and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
                 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ")