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

Lucas Nussbaum lucas at alioth.debian.org
Tue May 4 13:37:08 UTC 2010


Author: lucas
Date: 2010-05-04 13:36:54 +0000 (Tue, 04 May 2010)
New Revision: 1739

Modified:
   udd/config-org.yaml
   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:
lucid -> maverick

Modified: udd/config-org.yaml
===================================================================
--- udd/config-org.yaml	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/config-org.yaml	2010-05-04 13:36:54 UTC (rev 1739)
@@ -315,6 +315,19 @@
   sources-schema: sources
   release: experimental
 
+ubuntu-maverick:
+  type: src-pkg
+  archs: [amd64, i386]
+  directory: /org/mirrors/ubuntu.com/ftp/dists/maverick/
+  components: [main, multiverse, universe, restricted]
+  distribution: ubuntu
+  release: maverick
+  packages-table: ubuntu_packages
+  sources-table: ubuntu_sources
+  uploaders-table: ubuntu_uploaders
+  packages-schema: packages
+  sources-schema: sources
+
 ubuntu-lucid:
   type: src-pkg
   archs: [amd64, i386]

Modified: udd/web/cgi-bin/merges.cgi
===================================================================
--- udd/web/cgi-bin/merges.cgi	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/merges.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -5,7 +5,7 @@
 require 'uri'
 require 'net/http'
 
-URELEASE='lucid'
+URELEASE='maverick'
 
 puts "Content-type: text/html\n\n"
 
@@ -32,7 +32,7 @@
 EOF
 
 DREL='squeeze'
-UREL='lucid'
+UREL='maverick'
 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	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/merges.json.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='lucid'
+URELEASE='maverick'
 
 puts "Content-type: application/json\n\n"
 
 DREL='squeeze'
-UREL='lucid'
+UREL='maverick'
 
 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	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/rcbugs.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -3,7 +3,7 @@
 require 'dbi'
 require 'pp'
 
-URELEASE='lucid'
+URELEASE='maverick'
 
 puts "Content-type: text/html\n\n"
 

Modified: udd/web/cgi-bin/rcbugsl.cgi
===================================================================
--- udd/web/cgi-bin/rcbugsl.cgi	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/rcbugsl.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -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 = 'lucid' 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 = 'maverick' 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/lucid/+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/maverick/+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	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/sync-candidates.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='lucid'
+URELEASE='maverick'
 
 puts "Content-type: application/json\n\n"
 
 DREL='sid'
-UREL='lucid'
+UREL='maverick'
 
 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	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/ubuntu_ftbfs.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -6,7 +6,7 @@
 require 'net/http'
 require 'cgi'
 
-URELEASE='lucid'
+URELEASE='maverick'
 
 $cgi = CGI::new
 
@@ -42,8 +42,8 @@
 
 STDOUT.flush
 
-res32 = Net::HTTP.get(URI::parse('http://people.ubuntuwire.com/~lucas/ubuntu-nbs/res.lucid.32')).split(/\n/)
-res64 = Net::HTTP.get(URI::parse('http://people.ubuntuwire.com/~lucas/ubuntu-nbs/res.lucid.64')).split(/\n/)
+res32 = Net::HTTP.get(URI::parse('http://people.ubuntuwire.com/~lucas/ubuntu-nbs/res.maverick.32')).split(/\n/)
+res64 = Net::HTTP.get(URI::parse('http://people.ubuntuwire.com/~lucas/ubuntu-nbs/res.maverick.64')).split(/\n/)
 
 dbh = DBI::connect('DBI:Pg:dbname=udd;port=5441;host=localhost', 'guest')
 
@@ -90,7 +90,7 @@
     if fa[a].nil?
       print ",N/A"
     else
-      print ",http://people.ubuntuwire.org/~lucas/ubuntu-nbs/#{a}/#{r['source']}_#{fa['version']}_llucid#{a}.buildlog,#{fa[a][0]}"
+      print ",http://people.ubuntuwire.org/~lucas/ubuntu-nbs/#{a}/#{r['source']}_#{fa['version']}_lmaverick#{a}.buildlog,#{fa[a][0]}"
     end
   end
   puts
@@ -111,7 +111,7 @@
     if fa[a].nil?
       puts "<td>N/A</td>"
     else
-      puts "<td><a href=\"http://people.ubuntuwire.org/~lucas/ubuntu-nbs/#{a}/#{r['source']}_#{fa['version']}_llucid#{a}.buildlog\">#{fa[a][0]}</a></td>"
+      puts "<td><a href=\"http://people.ubuntuwire.org/~lucas/ubuntu-nbs/#{a}/#{r['source']}_#{fa['version']}_lmaverick#{a}.buildlog\">#{fa[a][0]}</a></td>"
     end
   end
   if fa['32'].nil? or fa['32'][0] == 'OK' # only amd64 failed
@@ -140,7 +140,7 @@
 puts "</table>"
 
 puts "<h2>Outdated results</h2>"
-puts "Those test builds were done with a version of the package that was superseded by a newer version in lucid.<br><br>"
+puts "Those test builds were done with a version of the package that was superseded by a newer version in maverick.<br><br>"
 puts "<table>"
 puts "<tr><th>Package</th><th>Section</th><th>Newer in Debian</th><th>i386</th><th>amd64</th><th>Reason</th></tr>"
 end

Modified: udd/web/cgi-bin/ubuntu_old_packages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntu_old_packages.cgi	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/ubuntu_old_packages.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='lucid'
+RELEASE='maverick'
 
 puts "Content-type: text/html\n\n"
 

Modified: udd/web/cgi-bin/ubuntupackages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntupackages.cgi	2010-05-04 13:32:38 UTC (rev 1738)
+++ udd/web/cgi-bin/ubuntupackages.cgi	2010-05-04 13:36:54 UTC (rev 1739)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='lucid'
+RELEASE='maverick'
 
 puts "Content-type: text/plain\n\n"
 




More information about the Collab-qa-commits mailing list