[Collab-qa-commits] r2051 - in udd/web: . cgi-bin cgi-bin/attic

Lucas Nussbaum lucas at alioth.debian.org
Mon Oct 17 07:51:32 UTC 2011


Author: lucas
Date: 2011-10-17 07:51:31 +0000 (Mon, 17 Oct 2011)
New Revision: 2051

Modified:
   udd/web/bugs.cgi
   udd/web/cgi-bin/attic/sources_in_ubuntu_but_not_in_debian_by_popcon.cgi
   udd/web/cgi-bin/attic/ubuntu_stats.cgi
   udd/web/cgi-bin/merges.cgi
   udd/web/cgi-bin/merges.json.cgi
   udd/web/cgi-bin/rcbugsl.cgi
   udd/web/cgi-bin/sync-candidates.cgi
   udd/web/cgi-bin/ubuntu_ftbfs.cgi
   udd/web/cgi-bin/ubuntu_old_packages.cgi
   udd/web/cgi-bin/ubuntubugs.cgi
   udd/web/cgi-bin/ubuntupackages.cgi
Log:
ubuntu oneiric released

Modified: udd/web/bugs.cgi
===================================================================
--- udd/web/bugs.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/bugs.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -39,7 +39,7 @@
  ['outdatedwheezy', 'outdated binaries in wheezy', "bugs.source in (select distinct p1.source from packages_summary p1, packages_summary p2 where p1.source = p2.source and p1.release='wheezy' and p2.release='wheezy' and p1.source_version != p2.source_version)"],
  ['outdatedsid', 'outdated binaries in sid', "bugs.source in (select distinct p1.source from packages_summary p1, packages_summary p2 where p1.source = p2.source and p1.release='sid' and p2.release='sid' and p1.source_version != p2.source_version)"],
  ['needmig', 'different versions in wheezy and sid', "bugs.source in (select s1.source from sources s1, sources s2 where s1.source = s2.source and s1.release = 'wheezy' and s2.release='sid' and s1.version != s2.version)"],
- ['newerubuntu', 'newer in Ubuntu than in sid', "bugs.source in (select s1.source from sources_uniq s1, ubuntu_sources s2 where s1.source = s2.source and s1.release = 'sid' and s2.release='oneiric' and s1.version < s2.version)"],
+ ['newerubuntu', 'newer in Ubuntu than in sid', "bugs.source in (select s1.source from sources_uniq s1, ubuntu_sources s2 where s1.source = s2.source and s1.release = 'sid' and s2.release='precise' and s1.version < s2.version)"],
  ['rtwheezy-will-remove', 'RT tag for wheezy: will-remove', "id in (select id from bugs_usertags where email='release.debian.org at packages.debian.org' and tag='wheezy-will-remove')"],
  ['rtwheezy-can-defer', 'RT tag for wheezy: can-defer', "id in (select id from bugs_usertags where email='release.debian.org at packages.debian.org' and tag='wheezy-can-defer')"],
  ['rtwheezy-is-blocker', 'RT tag for wheezy: is-blocker', "id in (select id from bugs_usertags where email='release.debian.org at packages.debian.org' and tag='wheezy-is-blocker')"],

Modified: udd/web/cgi-bin/attic/sources_in_ubuntu_but_not_in_debian_by_popcon.cgi
===================================================================
--- udd/web/cgi-bin/attic/sources_in_ubuntu_but_not_in_debian_by_popcon.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/attic/sources_in_ubuntu_but_not_in_debian_by_popcon.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -10,7 +10,7 @@
 my $sth = $dbh->prepare(<<EOF
 	SELECT DISTINCT ubu.source, insts
         FROM (SELECT DISTINCT source FROM ubuntu_sources
-                WHERE release = 'oneiric')
+                WHERE release = 'precise')
           AS ubu,
              ubuntu_popcon_src
         WHERE NOT EXISTS (SELECT * FROM sources WHERE distribution = 'debian'

Modified: udd/web/cgi-bin/attic/ubuntu_stats.cgi
===================================================================
--- udd/web/cgi-bin/attic/ubuntu_stats.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/attic/ubuntu_stats.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -2,7 +2,7 @@
 
 require 'dbi'
 require 'pp'
-RELEASE='maverick'
+RELEASE='precise'
 
 puts "Content-type: text/plain\n\n"
 

Modified: udd/web/cgi-bin/merges.cgi
===================================================================
--- udd/web/cgi-bin/merges.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/merges.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -5,7 +5,7 @@
 require 'uri'
 require 'net/http'
 
-URELEASE='oneiric'
+URELEASE='precise'
 
 puts "Content-type: text/html\n\n"
 
@@ -32,7 +32,7 @@
 EOF
 
 DREL='sid'
-UREL='oneiric'
+UREL='precise'
 puts "Debian release: #{DREL}<br>"
 puts "Ubuntu release: #{UREL}<br>"
 puts "Bugs data refreshed once a day. Packages data refreshed twice a day.<br>"

Modified: udd/web/cgi-bin/merges.json.cgi
===================================================================
--- udd/web/cgi-bin/merges.json.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/merges.json.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='oneiric'
+URELEASE='precise'
 
 puts "Content-type: application/json\n\n"
 
 DREL='sid'
-UREL='oneiric'
+UREL='precise'
 
 dbh = DBI::connect('DBI:Pg:dbname=udd;port=5441;host=localhost', 'guest')
 

Modified: udd/web/cgi-bin/rcbugsl.cgi
===================================================================
--- udd/web/cgi-bin/rcbugsl.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/rcbugsl.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -79,13 +79,13 @@
 puts "<table>"
 puts "<tr><th>bug</th><th>package</th><th>source</th><th>versions (D/U)</th><th>popcon</th><th>title</th></tr>"
 
-sth = dbh.prepare("WITH ubudeb AS (select distinct on (d.source, u.source) d.source as dsource, u.source as usource, d.version as dversion, u.version as uversion from sources_uniq d, ubuntu_sources u where d.release = 'sid' and d.distribution = 'debian' and u.release = 'oneiric' and u.distribution = 'ubuntu' and u.source = d.source and u.version > d.version order by d.source asc, u.source asc, d.version desc)
+sth = dbh.prepare("WITH ubudeb AS (select distinct on (d.source, u.source) d.source as dsource, u.source as usource, d.version as dversion, u.version as uversion from sources_uniq d, ubuntu_sources u where d.release = 'sid' and d.distribution = 'debian' and u.release = 'precise' and u.distribution = 'ubuntu' and u.source = d.source and u.version > d.version order by d.source asc, u.source asc, d.version desc)
 select id, bugs.package, bugs.source, title, dversion, uversion, insts from bugs, ubudeb, popcon_src where popcon_src.source = bugs.source and id in (select id from bugs_rt_affects_testing_and_unstable) and id in (select id from bugs_tags where tag='patch') and severity >= 'serious' and ubudeb.dsource = bugs.source and bugs.source in ('#{spkgss}') order by id")
 sth.execute ; rows = sth.fetch_all
 rows.each do |r|
    puts "<tr><td><a href=\"http://bugs.debian.org/#{r['id']}\">#{r['id']}</a></td>"
    puts "<td>#{r['package']}</td>"
-   puts "<td><a href=\"http://packages.qa.debian.org/#{r['source']}\">#{r['source']}</a> <a href=\"https://launchpad.net/ubuntu/oneiric/+source/#{r['source']}/+changelog\">UbCh</a></td>"
+   puts "<td><a href=\"http://packages.qa.debian.org/#{r['source']}\">#{r['source']}</a> <a href=\"https://launchpad.net/ubuntu/precise/+source/#{r['source']}/+changelog\">UbCh</a></td>"
    puts "<td>#{r['dversion']} / #{r['uversion']}</td>"
    puts "<td>#{r['insts']}</td>"
    puts "<td>#{r['title']}</td>"

Modified: udd/web/cgi-bin/sync-candidates.cgi
===================================================================
--- udd/web/cgi-bin/sync-candidates.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/sync-candidates.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='oneiric'
+URELEASE='precise'
 
 puts "Content-type: application/json\n\n"
 
 DREL='sid'
-UREL='oneiric'
+UREL='precise'
 
 dbh = DBI::connect('DBI:Pg:dbname=udd;port=5441;host=localhost', 'guest')
 

Modified: udd/web/cgi-bin/ubuntu_ftbfs.cgi
===================================================================
--- udd/web/cgi-bin/ubuntu_ftbfs.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/ubuntu_ftbfs.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -6,7 +6,7 @@
 require 'net/http'
 require 'cgi'
 
-URELEASE='oneiric'
+URELEASE='precise'
 
 $cgi = CGI::new
 

Modified: udd/web/cgi-bin/ubuntu_old_packages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntu_old_packages.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/ubuntu_old_packages.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='oneiric'
+RELEASE='precise'
 
 puts "Content-type: text/html\n\n"
 

Modified: udd/web/cgi-bin/ubuntubugs.cgi
===================================================================
--- udd/web/cgi-bin/ubuntubugs.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/ubuntubugs.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -10,7 +10,7 @@
 from (select package, count(distinct bugs.bug) as bugs
 from ubuntu_bugs_tasks tasks,ubuntu_bugs bugs
 where tasks.bug = bugs.bug
-and distro in ('', 'Ubuntu')
+and distro in ('Ubuntu')
 and status not in ('Invalid', 'Fix Released', 'Won''t Fix', 'Opinion')
 group by package) tbugs
 full join

Modified: udd/web/cgi-bin/ubuntupackages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntupackages.cgi	2011-10-17 07:50:48 UTC (rev 2050)
+++ udd/web/cgi-bin/ubuntupackages.cgi	2011-10-17 07:51:31 UTC (rev 2051)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='oneiric'
+RELEASE='precise'
 
 puts "Content-type: text/plain\n\n"
 




More information about the Collab-qa-commits mailing list