diff options
-rwxr-xr-x | bin/reproducible_setup.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/reproducible_setup.sh b/bin/reproducible_setup.sh index 4d112fe4..1ee7cbee 100755 --- a/bin/reproducible_setup.sh +++ b/bin/reproducible_setup.sh @@ -33,6 +33,14 @@ cat >/var/lib/jenkins/reproducible.init <<-EOF .timeout 30000 EOF +# blacklist some packages +for PKG in linux cups zurl openclipart ; do + RESULT=$(sqlite3 -init $INIT $PACKAGES_DB " SELECT name FROM source_packages WHERE status = 'blacklisted' AND name = '$PGK'") + if [ "$RESULT" = "" ] ; then + sqlite3 -init $INIT $PACKAGES_DB "REPLACE into source_packages VALUES ('$PKG','0','blacklisted',date('now'))" + fi +done + # FIXME: needed as long as there is no backport for debbindiff # or as long as we dont run it within pbuilder... # fetch git repo for the debbindiff command used in reproducible_build.sh |