From: Ansgar Burchardt Date: Sat, 4 Apr 2015 10:48:59 +0000 (+0200) Subject: generate-d-i: Do not hardcode suite ids. X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=7066337f607d0b8e116557a94ab2d4978094f2be generate-d-i: Do not hardcode suite ids. The suite.id for testing and testing-proposed-updates changed with the wheezy release. --- diff --git a/scripts/debian/generate-d-i b/scripts/debian/generate-d-i index 49e93d29..5d6bca78 100755 --- a/scripts/debian/generate-d-i +++ b/scripts/debian/generate-d-i @@ -10,6 +10,9 @@ export PAGER=cat exec > $webdir/d-i 2>&1 +testing_id=$(psql -t -c "SELECT id FROM suite WHERE suite_name='testing'") +testing_pu_id=$(psql -t -c "SELECT id FROM suite WHERE suite_name='testing-proposed-updates'") +unstable_id=$(psql -t -c "SELECT id FROM suite WHERE suite_name='unstable'") echo "udeb's in testing that don't (anymore) correspond to any testing source:" psql -c " @@ -21,8 +24,8 @@ psql -c " FROM bin_associations ba LEFT JOIN binaries b on (ba.bin = b.id) LEFT JOIN source s on (b.source = s.id) - WHERE ba.suite = 4 - AND s.id NOT IN (SELECT source from src_associations WHERE suite = 4) + WHERE ba.suite = ${testing_id} + AND s.id NOT IN (SELECT source from src_associations WHERE suite = ${testing_id}) AND b.type = 'udeb' ORDER BY s.source, b.package, b.architecture; " @@ -37,9 +40,9 @@ psql -c " FROM bin_associations ba LEFT JOIN binaries b on (ba.bin=b.id) LEFT JOIN source s on (b.source=s.id) - WHERE ba.suite=5 - AND NOT EXISTS (SELECT 1 FROM bin_associations ba2 WHERE ba2.suite = 4 AND ba2.bin = ba.bin) - AND s.id IN (SELECT source from src_associations WHERE suite=4) + WHERE ba.suite = ${unstable_id} + AND NOT EXISTS (SELECT 1 FROM bin_associations ba2 WHERE ba2.suite = ${testing_id} AND ba2.bin = ba.bin) + AND s.id IN (SELECT source from src_associations WHERE suite = ${testing_id}) AND b.type = 'udeb' AND b.architecture NOT IN (4,8,12) ORDER BY s.source, b.package, b.architecture; @@ -55,9 +58,9 @@ psql -c " FROM bin_associations ba LEFT JOIN binaries b ON ba.bin = b.id LEFT JOIN source s ON b.source = s.id - WHERE ba.suite = 3 - AND NOT EXISTS (SELECT 1 FROM bin_associations ba2 WHERE ba2.suite = 4 AND ba2.bin = ba.bin) - AND s.id IN (SELECT source from src_associations WHERE suite = 4) + WHERE ba.suite = ${testing_pu_id} + AND NOT EXISTS (SELECT 1 FROM bin_associations ba2 WHERE ba2.suite = ${testing_id} AND ba2.bin = ba.bin) + AND s.id IN (SELECT source from src_associations WHERE suite = ${testing_id}) AND b.type = 'udeb' AND b.architecture NOT IN (4,8,12) ORDER BY s.source, b.package, b.architecture;