[Secure-testing-commits] r21301 - / bin lib/python

Thijs Kinkhorst thijs at alioth.debian.org
Sat Feb 16 17:19:27 UTC 2013


Author: thijs
Date: 2013-02-16 17:19:27 +0000 (Sat, 16 Feb 2013)
New Revision: 21301

Modified:
   Makefile
   bin/checklist
   lib/python/security_db.py
Log:
remove 'experimental' from the tracker: the unstable versions we track
cannot be applied there and it leads to false claims in the tracker
pages about the affectedness of packages in experimental.


Modified: Makefile
===================================================================
--- Makefile	2013-02-16 17:04:58 UTC (rev 21300)
+++ Makefile	2013-02-16 17:19:27 UTC (rev 21301)
@@ -47,7 +47,7 @@
 
 .PHONY: update-packages update-testing update-stable update-oldstable
 update-packages: update-testing
-	set -e ; for rel in sid experimental ; do \
+	set -e ; for rel in sid ; do \
 		for archive in main contrib non-free ; do \
 		$(PYTHON) bin/apt-update-file \
 			$(MIRROR)/dists/$$rel/$$archive/source/Sources \

Modified: bin/checklist
===================================================================
--- bin/checklist	2013-02-16 17:04:58 UTC (rev 21300)
+++ bin/checklist	2013-02-16 17:19:27 UTC (rev 21301)
@@ -320,7 +320,7 @@
 	}
 	print OUT "<br>";
 	print OUT "Total holes unfixed: $unfixed<br>\n";
-	print OUT "Total holes fixed in unstable (or experimental) but not $suite: $unprop_all ($fixedsta fixed in secure-testing archive)";
+	print OUT "Total holes fixed in unstable but not $suite: $unprop_all ($fixedsta fixed in secure-testing archive)";
 	if ($unprop_all != $unprop) {
 		print OUT " (+".($unprop - $unprop_all)." on some arches)";
 	}

Modified: lib/python/security_db.py
===================================================================
--- lib/python/security_db.py	2013-02-16 17:04:58 UTC (rev 21300)
+++ lib/python/security_db.py	2013-02-16 17:19:27 UTC (rev 21301)
@@ -1561,7 +1561,7 @@
             """SELECT string_list(release) AS releases, version
             FROM (SELECT release, version FROM source_packages
             WHERE name = ?
-            AND release IN ('lenny', 'squeeze', 'wheezy', 'sid', 'experimental') 
+            AND release IN ('lenny', 'squeeze', 'wheezy', 'sid') 
             ORDER BY release_to_number(release))
             GROUP BY version""", (pkg,)):
             yield releases.split(', '), version
@@ -1616,7 +1616,7 @@
             p.version AS version, s.vulnerable AS vulnerable
             FROM source_package_status AS s, source_packages AS p
             WHERE s.bug_name = ? AND p.rowid = s.package
-            AND release in ('lenny', 'squeeze', 'wheezy', 'sid', 'experimental')
+            AND release in ('lenny', 'squeeze', 'wheezy', 'sid')
             ORDER BY release_to_number(p.release), p.subrelease)
             GROUP BY package, version, vulnerable
             ORDER BY package, version COLLATE version""",




More information about the Secure-testing-commits mailing list