[Collab-qa-commits] r1761 - in ddpo-by-mail: . archives

Lucas Nussbaum lucas at alioth.debian.org
Sun Aug 1 19:46:02 UTC 2010


Author: lucas
Date: 2010-08-01 19:45:55 +0000 (Sun, 01 Aug 2010)
New Revision: 1761

Added:
   ddpo-by-mail/archives/20100517.tar.bz2
   ddpo-by-mail/archives/20100612.tar.bz2
   ddpo-by-mail/archives/20100801.tar.bz2
   ddpo-by-mail/archives/2010323.tar.bz2
   ddpo-by-mail/archives/2010418.tar.bz2
   ddpo-by-mail/archives/2010517.tar.bz2
Modified:
   ddpo-by-mail/ddpo-config.rb
   ddpo-by-mail/udddata.rb
Log:
ddpo-by-mail fixes + run

Added: ddpo-by-mail/archives/20100517.tar.bz2
===================================================================
(Binary files differ)


Property changes on: ddpo-by-mail/archives/20100517.tar.bz2
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: ddpo-by-mail/archives/20100612.tar.bz2
===================================================================
(Binary files differ)


Property changes on: ddpo-by-mail/archives/20100612.tar.bz2
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: ddpo-by-mail/archives/20100801.tar.bz2
===================================================================
(Binary files differ)


Property changes on: ddpo-by-mail/archives/20100801.tar.bz2
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: ddpo-by-mail/archives/2010323.tar.bz2
===================================================================
(Binary files differ)


Property changes on: ddpo-by-mail/archives/2010323.tar.bz2
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: ddpo-by-mail/archives/2010418.tar.bz2
===================================================================
(Binary files differ)


Property changes on: ddpo-by-mail/archives/2010418.tar.bz2
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: ddpo-by-mail/archives/2010517.tar.bz2
===================================================================
(Binary files differ)


Property changes on: ddpo-by-mail/archives/2010517.tar.bz2
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Modified: ddpo-by-mail/ddpo-config.rb
===================================================================
--- ddpo-by-mail/ddpo-config.rb	2010-08-01 13:59:45 UTC (rev 1760)
+++ ddpo-by-mail/ddpo-config.rb	2010-08-01 19:45:55 UTC (rev 1761)
@@ -16,11 +16,13 @@
 EXC_EMAILS = [
   'abartlet at samba.org',
   'andreas.schreiner at sonnenmulde.at',
+  'asleepandfalling at gmail.com',
   'bahner at linpro.no',
   'bartm at debian.org',
   'bartm at knars.be',
   'bas at debian.org',
   'bastiaan at veelo.net',
+  'behabadi at usc.edu',
   'broonie at debian.org',
   'broonie at sirena.org.uk',
   'c.hey at web.de',
@@ -36,6 +38,7 @@
   'greg at kroah.com',
   'gurkan at linuks.mine.nu',
   'ilmari at ilmari.org',
+  'jaime.dc at gmail.com',
   'jordens at debian.org',
   'josealbertogonzalez at gmail.com',
   'julianschmidt at uni-muenster.de',
@@ -49,6 +52,7 @@
   'matthewh at vetsci.usyd.edu.au',
   'mpalmer at debian.org',
   'mpalmer at hezmatt.org',
+  'nigelj at gmail.com',
   'paulomaracondes at gmail.com',
   'pkg-grub-devel at lists.alioth.debian.org',
   'rmh at aybabtu.com',
@@ -62,6 +66,8 @@
   'stephrom at yahoo.fr',
   'sven.hallau at wincor-nixdorf.com',
   'sysadmin at polyconseil.fr',
+  'tildar at gmail.com',
+  'tillea at rki.de',
   'tim+debian at cidev.nl',
   'vorlon at debian.org',
   'wlynch at sharth.ath.cx',
@@ -96,10 +102,10 @@
 EXC_EMAILS_PKGS['mail.to.depa at gmail.com'] = ['icedove']
 EXC_EMAILS_PKGS['wolf at kondancemilch.de'] = ['apt-proxy']
 
-BUG_AGE = 1
-AGE_IN_DEBIAN = 20
+BUG_AGE = 0
+AGE_IN_DEBIAN = 18
 LAST_IN_SYNC = 14
-LAST_IN_SYNC_SERIOUS = 24
+LAST_IN_SYNC_SERIOUS = 20
 # etch released on 2007-04-08. So
 # (Date::today - Date::parse('2007-04-08')).to_i
 

Modified: ddpo-by-mail/udddata.rb
===================================================================
--- ddpo-by-mail/udddata.rb	2010-08-01 13:59:45 UTC (rev 1760)
+++ ddpo-by-mail/udddata.rb	2010-08-01 19:45:55 UTC (rev 1761)
@@ -71,13 +71,13 @@
       @dehs[r['source']] = [ r['unstable_version'], r['unstable_upstream']]
     end
     # bugs
-    @dbh.select_all("select bugs.id, bugs_packages.source, bugs.title from bugs, bugs_packages where bugs.id = bugs_packages.id and severity >= 'serious' and bugs.id in (select id from bugs_rt_affects_unstable)") do |r|
+    @dbh.select_all("select bugs.id, bugs_packages.source, bugs.title from bugs, bugs_packages where bugs.id = bugs_packages.id and severity >= 'serious' and bugs.id in (select id from bugs_rt_affects_unstable) and bugs.id not in (select id from bugs_merged_with where id > merged_with)") do |r|
       @rcbugs[r['source']] = [] if @rcbugs[r['source']].empty?
       @rcbugs[r['source']] << [r['id'], r['title']]
     end
     emails = RGEMAILS.join("','")
     tags = RGTAGS.keys.join("','")
-    @dbh.select_all("select bugs.id, bugs_packages.source, bugs.title, bugs_usertags.tag from bugs, bugs_packages, bugs_usertags where bugs.id = bugs_packages.id and bugs.id = bugs_usertags.id and bugs.id in (select id from bugs_rt_affects_unstable) and tag in ('#{tags}') and email in ('#{emails}')") do |r|
+    @dbh.select_all("select bugs.id, bugs_packages.source, bugs.title, bugs_usertags.tag from bugs, bugs_packages, bugs_usertags where bugs.id = bugs_packages.id and bugs.id = bugs_usertags.id and bugs.id in (select id from bugs_rt_affects_unstable) and tag in ('#{tags}') and email in ('#{emails}') and bugs.id not in (select id from bugs_merged_with where id > merged_with)") do |r|
       @rgbugs[r['source']] = [] if @rgbugs[r['source']].empty?
       @rgbugs[r['source']] << [r['id'], r['title'], r['tag']]
     end




More information about the Collab-qa-commits mailing list