summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_common.sh1
-rwxr-xr-xbin/reproducible_create_meta_pkg_sets.sh8
2 files changed, 9 insertions, 0 deletions
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."