diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-11 13:11:36 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-11 13:11:36 +0200 |
commit | c1eada4cccdc458f405f106f3691e726fbbdcee7 (patch) | |
tree | 80be6024a2ab9ab2e6ed99db7b0f0bc8718085a7 | |
parent | b7370bfd8e12d2cf11e52a8e918a238c837b3db4 (diff) | |
download | jenkins.debian.net-c1eada4cccdc458f405f106f3691e726fbbdcee7.tar.xz |
reproducible: add maint_debian-boot package set
-rwxr-xr-x | bin/reproducible_common.sh | 1 | ||||
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 6 |
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) |