From f5ad44aa5d762d877702fea385ac9be9c90175de Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 14 Jan 2015 14:18:55 +0100 Subject: reproducible: add new meta pgk set: those which had a DSA in the past --- bin/reproducible_common.sh | 1 + bin/reproducible_create_meta_pkg_sets.sh | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 6a8b7896..6881d02a 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -151,6 +151,7 @@ META_PKGSET[7]="tails_build-depends" META_PKGSET[8]="maint_pkg-perl-maintainers" META_PKGSET[9]="popcon_top1337-installed-sources" META_PKGSET[10]="installed_on_debian.org" +META_PKGSET[11]="had_a_DSA" init_html() { SUITE=sid diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index cb0f863f..169efa34 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -185,6 +185,14 @@ if [ -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[10]}.pkgset) ] ; update_if_similar ${META_PKGSET[10]}.pkgset fi +# packages which had a DSA +if [ -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[11]}.pkgset) ] ; then + svn export svn://svn.debian.org/svn/secure-testing/data/DSA/list $TMPFILE2 + grep DSA $TMPFILE2 | cut -d " " -f5|sort -u > $TMPFILE + convert_into_source_packages_only + update_if_similar ${META_PKGSET[11]}.pkgset +fi + # finally echo "All meta package sets created successfully." -- cgit v1.2.3-54-g00ecf