[Qa-jenkins-scm] [jenkins.debian.net] 01/01: reproducible Arch Linux: ignore syslinux from building
Holger Levsen
holger at layer-acht.org
Sat Dec 2 16:51:01 UTC 2017
This is an automated email from the git hooks/post-receive script.
holger pushed a commit to branch master
in repository jenkins.debian.net.
commit 7f29b3c0442420447b0f079cee5f77ac5fb4f87b
Author: Holger Levsen <holger at layer-acht.org>
Date: Sat Dec 2 16:50:47 2017 +0000
reproducible Arch Linux: ignore syslinux from building
Signed-off-by: Holger Levsen <holger at layer-acht.org>
---
bin/reproducible_build_archlinux_pkg.sh | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh
index 6dc7c47..e8d5e0d 100755
--- a/bin/reproducible_build_archlinux_pkg.sh
+++ b/bin/reproducible_build_archlinux_pkg.sh
@@ -47,6 +47,11 @@ choose_package() {
for REPO in $(echo $ARCHLINUX_REPOS | sed -s "s# #\n#g" | sort -R | xargs echo ); do
# try to find packages which have been triggered
for PKG in $(cat ${ARCHLINUX_PKGS}_$REPO | cut -d ' ' -f1 | sort -R | xargs echo ) ; do
+ # ignore blacklisted packages (should be noted in the web pages later)
+ case $PKG in
+ syslinux) continue ;;
+ *) ;;
+ esac
# if triggered...
if [ -f $BASE/archlinux/$REPO/$PKG/pkg.needs_build ] ; then
REPOSITORY=$REPO
@@ -63,6 +68,11 @@ choose_package() {
for REPO in $(echo $ARCHLINUX_REPOS | sed -s "s# #\n#g" | sort -R | xargs echo ); do
# trz to find packages which never been built before
for PKG in $(cat ${ARCHLINUX_PKGS}_$REPO | cut -d ' ' -f1 | sort -R | xargs echo ) ; do
+ # ignore blacklisted packages (should be noted in the web pages later)
+ case $PKG in
+ syslinux) continue ;;
+ *) ;;
+ esac
# if new...
if [ ! -d $BASE/archlinux/$REPO/$PKG ] ; then
REPOSITORY=$REPO
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git
More information about the Qa-jenkins-scm
mailing list