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

Lucas Nussbaum lucas at alioth.debian.org
Sun May 15 08:29:17 UTC 2011


Author: lucas
Date: 2011-05-15 08:29:17 +0000 (Sun, 15 May 2011)
New Revision: 1945

Removed:
   udd/web/cgi-bin/bugs.cgi
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_python_patches.cgi
   udd/web/cgi-bin/merges.cgi
   udd/web/cgi-bin/merges.json.cgi
   udd/web/cgi-bin/rcbugs.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/ubuntupackages.cgi
Log:
ubuntu natty -> oneiric

Modified: udd/web/bugs.cgi
===================================================================
--- udd/web/bugs.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/bugs.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -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='natty' 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)"],
  ['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-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/attic/sources_in_ubuntu_but_not_in_debian_by_popcon.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -10,7 +10,7 @@
 my $sth = $dbh->prepare(<<EOF
 	SELECT DISTINCT ubu.source, insts
         FROM (SELECT DISTINCT source FROM ubuntu_sources
-                WHERE release = 'natty')
+                WHERE release = 'oneiric')
           AS ubu,
              ubuntu_popcon_src
         WHERE NOT EXISTS (SELECT * FROM sources WHERE distribution = 'debian'

Modified: udd/web/cgi-bin/attic/ubuntu_python_patches.cgi
===================================================================
--- udd/web/cgi-bin/attic/ubuntu_python_patches.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/attic/ubuntu_python_patches.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -23,7 +23,7 @@
 lower = 0
 higher = 0
 tbl = str()
-rel = {'d':'sid', 'u':'natty'}
+rel = {'d':'sid', 'u':'oneiric'}
 apt_pkg.InitSystem()
 conn = connect(database="udd", port=5441, host="localhost", user="guest")
 cur = conn.cursor()                    

Deleted: udd/web/cgi-bin/bugs.cgi
===================================================================
--- udd/web/cgi-bin/bugs.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/bugs.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -1 +0,0 @@
-link ../bugs.cgi
\ No newline at end of file

Modified: udd/web/cgi-bin/merges.cgi
===================================================================
--- udd/web/cgi-bin/merges.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/merges.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -5,7 +5,7 @@
 require 'uri'
 require 'net/http'
 
-URELEASE='natty'
+URELEASE='oneiric'
 
 puts "Content-type: text/html\n\n"
 
@@ -32,7 +32,7 @@
 EOF
 
 DREL='sid'
-UREL='natty'
+UREL='oneiric'
 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-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/merges.json.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='natty'
+URELEASE='oneiric'
 
 puts "Content-type: application/json\n\n"
 
 DREL='sid'
-UREL='natty'
+UREL='oneiric'
 
 dbh = DBI::connect('DBI:Pg:dbname=udd;port=5441;host=localhost', 'guest')
 

Modified: udd/web/cgi-bin/rcbugs.cgi
===================================================================
--- udd/web/cgi-bin/rcbugs.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/rcbugs.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -3,7 +3,7 @@
 require 'dbi'
 require 'pp'
 
-URELEASE='natty'
+URELEASE='oneiric'
 
 puts "Content-type: text/html\n\n"
 

Modified: udd/web/cgi-bin/rcbugsl.cgi
===================================================================
--- udd/web/cgi-bin/rcbugsl.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/rcbugsl.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -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 = 'natty' 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 = '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)
 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/natty/+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/oneiric/+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-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/sync-candidates.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='natty'
+URELEASE='oneiric'
 
 puts "Content-type: application/json\n\n"
 
 DREL='sid'
-UREL='natty'
+UREL='oneiric'
 
 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-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/ubuntu_ftbfs.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -6,7 +6,7 @@
 require 'net/http'
 require 'cgi'
 
-URELEASE='natty'
+URELEASE='oneiric'
 
 $cgi = CGI::new
 

Modified: udd/web/cgi-bin/ubuntu_old_packages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntu_old_packages.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/ubuntu_old_packages.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='natty'
+RELEASE='oneiric'
 
 puts "Content-type: text/html\n\n"
 

Modified: udd/web/cgi-bin/ubuntupackages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntupackages.cgi	2011-05-15 08:20:30 UTC (rev 1944)
+++ udd/web/cgi-bin/ubuntupackages.cgi	2011-05-15 08:29:17 UTC (rev 1945)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='natty'
+RELEASE='oneiric'
 
 puts "Content-type: text/plain\n\n"
 




More information about the Collab-qa-commits mailing list