# packages not tested on specific architectures
case $architecture in
- ppc64el|s390x)
- remove_packages $MAINSRC buildapp cffi cl-unicode pgloader sbcl plv8
- ;;
i386)
- remove_packages $MAINSRC h3-pg "postgresql-.*-age"
+ remove_packages $MAINSRC h3-pg pgfaceting "postgresql-.*-age"
+ ;;
+ ppc64el)
+ remove_packages $MAINSRC buildapp cffi cl-unicode pgloader sbcl plv8
+ ;;
+ s390x)
+ remove_packages $MAINSRC buildapp cffi cl-unicode pgloader sbcl plv8 pgfaceting
;;
esac
# list of all packages
MAINPKG=$(awk '/^Package:/ { print $2 }' $DISTSDIR/$DIST/main/binary-${architecture}/Packages)
+# exclude packages not installable on some architectures
+case $architecture in
+ i386|s390x)
+ MAINPKG=$(echo "$MAINPKG" | grep -v "pgfaceting") # pg-roaringbitmap missing on s390x
+ ;;
+esac
+
# run debcheck
DEBCHECK="dose-debcheck -v -f -e"