[Blends-commit] [SCM] website branch, master, updated. f95294f41f29fc1f0928f9d8ea5d26340cd19156

Andreas Tille tille at debian.org
Mon Jun 3 14:21:48 UTC 2013


The following commit has been merged in the master branch:
commit f95294f41f29fc1f0928f9d8ea5d26340cd19156
Author: Andreas Tille <tille at debian.org>
Date:   Mon Jun 3 16:24:18 2013 +0200

    Add three latest Ubuntur releases to comply with http://pkg-grass.alioth.debian.org/ubuntugis-status.html

diff --git a/misc/sql/gis-thermometer.sh b/misc/sql/gis-thermometer.sh
index ed8481e..ae9cc90 100755
--- a/misc/sql/gis-thermometer.sh
+++ b/misc/sql/gis-thermometer.sh
@@ -18,7 +18,9 @@ SELECT b.source,
        unstable.version AS unstable,
        stable_bpo.version AS "stable-bpo",
        experimental.version AS experimental,
-       ubuntu.version AS ubuntu,
+       precise.version AS precise,
+       quantal.version AS quantal,
+       raring.version AS raring,
        d.unstable_upstream AS upstream,
        d.unstable_status AS status,
        homepage
@@ -97,10 +99,28 @@ SELECT b.source,
     FROM ubuntu_packages u
     JOIN blends_dependencies b ON b.package = u.package
     JOIN ubuntu_sources s ON u.source = s.source AND u.release = s.release
+    WHERE b.blend = '$1' AND u.release = 'precise'
+    GROUP BY u.source
+    ORDER BY u.source
+  ) precise ON b.source = precise.source
+ LEFT OUTER JOIN (
+  SELECT DISTINCT u.source, strip_binary_upload(MAX(s.version)) AS version
+    FROM ubuntu_packages u
+    JOIN blends_dependencies b ON b.package = u.package
+    JOIN ubuntu_sources s ON u.source = s.source AND u.release = s.release
     WHERE b.blend = '$1' AND u.release = 'quantal'
     GROUP BY u.source
     ORDER BY u.source
-  ) ubuntu ON b.source = ubuntu.source
+  ) quantal ON b.source = quantal.source
+ LEFT OUTER JOIN (
+  SELECT DISTINCT u.source, strip_binary_upload(MAX(s.version)) AS version
+    FROM ubuntu_packages u
+    JOIN blends_dependencies b ON b.package = u.package
+    JOIN ubuntu_sources s ON u.source = s.source AND u.release = s.release
+    WHERE b.blend = '$1' AND u.release = 'raring'
+    GROUP BY u.source
+    ORDER BY u.source
+  ) raring ON b.source = raring.source
   LEFT OUTER JOIN dehs d ON b.source = d.source
   ORDER BY b.source
 ;

-- 
Static and dynamic websites for Debian Pure Blends



More information about the Blends-commit mailing list