summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.sh1
-rwxr-xr-xbin/reproducible_create_meta_pkg_sets.sh6
2 files changed, 7 insertions, 0 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 55da7b1e..d40c1a82 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -81,6 +81,7 @@ META_PKGSET[19]="maint_pkg-perl-maintainers"
META_PKGSET[20]="maint_pkg-java-maintainers"
META_PKGSET[21]="maint_pkg-haskell-maintainers"
META_PKGSET[22]="maint_pkg-ruby-extras-maintainers"
+META_PKGSET[23]="maint_debian-boot"
schedule_packages() {
# these packages are manually scheduled, so should have high priority,
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh
index cf00c766..fc980075 100755
--- a/bin/reproducible_create_meta_pkg_sets.sh
+++ b/bin/reproducible_create_meta_pkg_sets.sh
@@ -312,6 +312,12 @@ update_pkg_sets() {
update_if_similar ${META_PKGSET[22]}.pkgset
fi
+ # debian-boot@l.d.o maintainers
+ if [ ! -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[23]}.pkgset) ] || [ ! -f $TPATH/${META_PKGSET[23]}.pkgset ] ; then
+ grep-dctrl -sPackage -n -FMaintainer debian-boot@lists.debian.org $SOURCES > $TMPFILE
+ update_if_similar ${META_PKGSET[23]}.pkgset
+ fi
+
}
TMPFILE=$(mktemp)