diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-04 11:46:34 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-04 11:46:34 +0200 |
commit | 24c10aca3a4450ad931667c67ce1f2d59773426f (patch) | |
tree | f7dfb69fdef8e9c2e2f211b2457ac6b6dbd4cd3a | |
parent | d638db2bcaafad7288164b98cd324f1583ac491b (diff) | |
download | jenkins.debian.net-24c10aca3a4450ad931667c67ce1f2d59773426f.tar.xz |
reproducible: add maint_debian-x 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 4939b2db..fced5980 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -90,6 +90,7 @@ META_PKGSET[24]="maint_pkg-php-pear" META_PKGSET[25]="maint_pkg-javascript-devel" META_PKGSET[26]="maint_debian-boot" META_PKGSET[27]="maint_debian-ocaml" +META_PKGSET[28]="maint_debian-x" schedule_packages() { LC_USER="$REQUESTER" \ diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index 22c4f900..1338bdf9 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -362,6 +362,12 @@ update_pkg_sets() { update_if_similar ${META_PKGSET[27]}.pkgset fi + # debian-x@l.d.o maintainers + if [ ! -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[28]}.pkgset) ] || [ ! -f $TPATH/${META_PKGSET[28]}.pkgset ] ; then + grep-dctrl -sPackage -n -FMaintainer,Uploaders debian-x@lists.debian.org $SOURCES > $TMPFILE + update_if_similar ${META_PKGSET[28]}.pkgset + fi + } TMPFILE=$(mktemp --tmpdir=$TEMPDIR pkg-sets-XXXXXXXXX) |