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

Lucas Nussbaum lucas at alioth.debian.org
Tue Oct 12 09:11:02 UTC 2010


Author: lucas
Date: 2010-10-12 09:11:00 +0000 (Tue, 12 Oct 2010)
New Revision: 1822

Modified:
   udd/config-org.yaml
   udd/web/bugs.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:
maverick released. maverick->natty everywhere

Modified: udd/config-org.yaml
===================================================================
--- udd/config-org.yaml	2010-10-12 09:03:18 UTC (rev 1821)
+++ udd/config-org.yaml	2010-10-12 09:11:00 UTC (rev 1822)
@@ -216,6 +216,20 @@
   sources-schema: sources
   release: experimental
 
+ubuntu-natty:
+  type: src-pkg
+  archs: [amd64, i386]
+  directory: /org/mirrors/ubuntu.com/ftp/dists/natty/
+  components: [main, multiverse, universe, restricted]
+  distribution: ubuntu
+  release: natty
+  packages-table: ubuntu_packages
+  sources-table: ubuntu_sources
+  uploaders-table: ubuntu_uploaders
+  packages-schema: packages
+  sources-schema: sources
+
+
 ubuntu-maverick:
   type: src-pkg
   archs: [amd64, i386]

Modified: udd/web/bugs.cgi
===================================================================
--- udd/web/bugs.cgi	2010-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/bugs.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -28,7 +28,7 @@
  ['outdatedsqueeze', 'outdated binaries in squeeze', "bugs.source in (select distinct p1.source from packages_summary p1, packages_summary p2 where p1.source = p2.source and p1.release='squeeze' and p2.release='squeeze' 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 squeeze and sid', "bugs.source in (select s1.source from sources s1, sources s2 where s1.source = s2.source and s1.release = 'squeeze' 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='maverick' 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)"],
 ]
 
 TYPES = [

Modified: udd/web/cgi-bin/attic/ubuntu_python_patches.cgi
===================================================================
--- udd/web/cgi-bin/attic/ubuntu_python_patches.cgi	2010-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/attic/ubuntu_python_patches.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -23,7 +23,7 @@
 lower = 0
 higher = 0
 tbl = str()
-rel = {'d':'sid', 'u':'maverick'}
+rel = {'d':'sid', 'u':'natty'}
 apt_pkg.InitSystem()
 conn = connect(database="udd", port=5441, host="localhost", user="guest")
 cur = conn.cursor()                    

Modified: udd/web/cgi-bin/merges.cgi
===================================================================
--- udd/web/cgi-bin/merges.cgi	2010-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/merges.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -5,7 +5,7 @@
 require 'uri'
 require 'net/http'
 
-URELEASE='maverick'
+URELEASE='natty'
 
 puts "Content-type: text/html\n\n"
 
@@ -32,7 +32,7 @@
 EOF
 
 DREL='sid'
-UREL='maverick'
+UREL='natty'
 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-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/merges.json.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='maverick'
+URELEASE='natty'
 
 puts "Content-type: application/json\n\n"
 
 DREL='sid'
-UREL='maverick'
+UREL='natty'
 
 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-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/rcbugs.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -3,7 +3,7 @@
 require 'dbi'
 require 'pp'
 
-URELEASE='maverick'
+URELEASE='natty'
 
 puts "Content-type: text/html\n\n"
 

Modified: udd/web/cgi-bin/rcbugsl.cgi
===================================================================
--- udd/web/cgi-bin/rcbugsl.cgi	2010-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/rcbugsl.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -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 = '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)
+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)
 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/maverick/+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/natty/+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-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/sync-candidates.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -6,12 +6,12 @@
 require 'net/http'
 require 'json/pure'
 
-URELEASE='maverick'
+URELEASE='natty'
 
 puts "Content-type: application/json\n\n"
 
 DREL='sid'
-UREL='maverick'
+UREL='natty'
 
 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-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/ubuntu_ftbfs.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -6,7 +6,7 @@
 require 'net/http'
 require 'cgi'
 
-URELEASE='maverick'
+URELEASE='natty'
 
 $cgi = CGI::new
 

Modified: udd/web/cgi-bin/ubuntu_old_packages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntu_old_packages.cgi	2010-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/ubuntu_old_packages.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='maverick'
+RELEASE='natty'
 
 puts "Content-type: text/html\n\n"
 

Modified: udd/web/cgi-bin/ubuntupackages.cgi
===================================================================
--- udd/web/cgi-bin/ubuntupackages.cgi	2010-10-12 09:03:18 UTC (rev 1821)
+++ udd/web/cgi-bin/ubuntupackages.cgi	2010-10-12 09:11:00 UTC (rev 1822)
@@ -3,7 +3,7 @@
 
 require 'dbi'
 
-RELEASE='maverick'
+RELEASE='natty'
 
 puts "Content-type: text/plain\n\n"
 




More information about the Collab-qa-commits mailing list