diff options
-rwxr-xr-x | bin/reproducible_common.sh | 1 | ||||
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 73ce8efb..a9f8934c 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -78,6 +78,7 @@ META_PKGSET[16]="grml" META_PKGSET[17]="grml_build-depends" META_PKGSET[18]="maint_pkg-perl-maintainers" META_PKGSET[19]="maint_pkg-java-maintainers" +META_PKGSET[20]="maint_pkg-haskell-maintainers" 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 ed8da647..219a79f1 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -288,6 +288,13 @@ update_pkg_sets() { update_if_similar ${META_PKGSET[19]}.pkgset fi + # pkg-haskell-maintainers + if [ ! -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[20]}.pkgset) ] || [ ! -f $TPATH/${META_PKGSET[20]}.pkgset ] ; then + grep-dctrl -sPackage -n -FMaintainer pkg-haskell-maintainers@lists.alioth.debian.org $SOURCES > $TMPFILE + grep-dctrl -FDepends -n ghc -sPackage $PACKAGES >> $TMPFILE + update_if_similar ${META_PKGSET[20]}.pkgset + fi + } TMPFILE=$(mktemp) |