[Collab-qa-commits] r2086 - in udd: . sql
Iain Lane
laney at alioth.debian.org
Wed Nov 9 18:31:55 UTC 2011
Author: laney
Date: 2011-11-09 18:31:54 +0000 (Wed, 09 Nov 2011)
New Revision: 2086
Modified:
udd/config-org.yaml
udd/sql/setup.sql
Log:
Add a table for Ubuntu's Lintian lab output
Thanks to Evan Broder.
Modified: udd/config-org.yaml
===================================================================
--- udd/config-org.yaml 2011-11-09 15:04:56 UTC (rev 2085)
+++ udd/config-org.yaml 2011-11-09 18:31:54 UTC (rev 2086)
@@ -938,6 +938,13 @@
table: lintian
schema: lintian
+ubuntu-lintian:
+ type: lintian
+ update-command: rm -f /org/udd.debian.org/mirrors/ubuntu.lintian.log && wget -q http://lintian.ubuntuwire.org/lintian.log -O /org/udd.debian.org/mirrors/ubuntu.lintian.log
+ path: /org/udd.debian.org/mirrors/ubuntu.lintian.log
+ table: ubuntu_lintian
+ schema: lintian
+
dehs:
type: dehs
update-command: rm -f /org/udd.debian.org/mirrors/dehs.txt && wget -q http://qa.debian.org/cgi-bin/udd-dehs -O /org/udd.debian.org/mirrors/dehs.txt
Modified: udd/sql/setup.sql
===================================================================
--- udd/sql/setup.sql 2011-11-09 15:04:56 UTC (rev 2085)
+++ udd/sql/setup.sql 2011-11-09 18:31:54 UTC (rev 2086)
@@ -416,6 +416,16 @@
GRANT SELECT ON lintian TO PUBLIC;
+CREATE TABLE ubuntu_lintian (
+ package TEXT NOT NULL,
+ tag_type lintian_tagtype NOT NULL,
+ package_type TEXT,
+ tag TEXT NOT NULL,
+ information TEXT
+);
+
+GRANT SELECT ON ubuntu_lintian TO PUBLIC;
+
-- Debtags
-- one row per <package, tag> *pair*
More information about the Collab-qa-commits
mailing list