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

Andreas Tille tille at debian.org
Tue Sep 29 09:27:59 UTC 2015


The following commit has been merged in the master branch:
commit d7b42f3853b534538e9b435c46c94bb988bcf93a
Author: Andreas Tille <tille at debian.org>
Date:   Tue Sep 29 11:27:32 2015 +0200

    Regard backported packages as up to date

diff --git a/misc/sql/gis-thermometer.sh b/misc/sql/gis-thermometer.sh
index f0c3780..1b298fa 100755
--- a/misc/sql/gis-thermometer.sh
+++ b/misc/sql/gis-thermometer.sh
@@ -59,7 +59,7 @@ SELECT b.source,
        homepage,
        wnpp,
        tasks.tasks,
-       CASE WHEN stable.version >= unstable.version THEN 'upToDate'
+       CASE WHEN stable.version >= unstable.version OR replace(stable_bpo.version, '~bpo.*', '') >= unstable.version THEN 'upToDate'
             WHEN stable.version <  unstable.version THEN 'debianOutOfDate'
             WHEN stable.version IS NOT NULL AND unstable.version IS NULL THEN 'obsolete'
             WHEN stable.version IS NULL AND testing.version IS NULL AND unstable.version IS NULL AND new.version IS NULL THEN 'unpackaged'
diff --git a/webtools/thermometer.py b/webtools/thermometer.py
index 76ba1f0..6081ded 100755
--- a/webtools/thermometer.py
+++ b/webtools/thermometer.py
@@ -104,7 +104,8 @@ def main():
            is_in_debian,
            vcs_browser,
            tasks.tasks,
-           CASE WHEN stable.version >= unstable.version THEN 'upToDate'
+           CASE WHEN stable.version >= unstable.version
+                  OR replace(stable_bpo.version, '~bpo.*', '') >= unstable.version THEN 'upToDate'
                 WHEN stable.version <  unstable.version THEN 'debianOutOfDate'
                 WHEN stable.version IS NOT NULL AND unstable.version IS NULL THEN 'obsolete'
                 WHEN stable.version IS NULL AND testing.version IS NULL AND unstable.version IS NULL AND new.version IS NULL THEN 'unpackaged'

-- 
Static and dynamic websites for Debian Pure Blends



More information about the Blends-commit mailing list