Package: udd Severity: wishlist Tags: patch User: [email protected] Usertags: udd
Hi, Attached is the following: commit 8aa63e80fa72a33ff0d454ca616ea63bedad7ca5 Author: Chris Lamb <[email protected]> Date: Sun Jul 24 14:44:32 2016 +0100 Add reproducible builds usertag filter. web/bugs.cgi | 1 + 1 file changed, 1 insertion(+) Regards, -- ,''`. : :' : Chris Lamb `. `'` [email protected] / chris-lamb.co.uk `-
From 8aa63e80fa72a33ff0d454ca616ea63bedad7ca5 Mon Sep 17 00:00:00 2001 From: Chris Lamb <[email protected]> Date: Sun, 24 Jul 2016 14:44:32 +0100 Subject: [PATCH] Add reproducible builds usertag filter. --- web/bugs.cgi | 1 + 1 file changed, 1 insertion(+) diff --git a/web/bugs.cgi b/web/bugs.cgi index 938f87e..1747394 100755 --- a/web/bugs.cgi +++ b/web/bugs.cgi @@ -95,6 +95,7 @@ TYPES = [ ['multimedia', 'Multimedia team', "bugs.source in (select source from sources where maintainer ~ '[email protected]')"], ['otr', 'pkg-otr-team bugs', "bugs.source in (select source from sources where maintainer ~ '[email protected]' or uploaders ~ '[email protected]')"], ['apparmor', 'AppArmor team', "bugs.source in (select source from sources where maintainer ~ '[email protected]' or uploaders ~ '[email protected]')"], + ['reproducible', 'Reproducible Builds team', 'id in (select id from bugs_usertags where email = \'[email protected]\')', false], ['kfreebsd', 'GNU/kFreeBSD bugs', 'id in (select id from bugs_usertags where email = \'[email protected]\' and tag=\'kfreebsd\')', false], ['hurd', 'GNU/Hurd bugs', 'id in (select id from bugs_usertags where email = \'[email protected]\' and tag=\'hurd\')', false], ['gift', 'bugs tagged newcomer or <a href="https://wiki.debian.org/qa.debian.org/GiftTag">Gift</a>', 'id in (select id from bugs_usertags where email = \'[email protected]\' and tag=\'gift\' union select id from bugs_tags where tag=\'newcomer\')', false], -- 2.8.1

