From 80d6523ed8645286807382a6f3a90a841a09c9bb Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 9 Jun 2017 14:52:19 +0200 Subject: bin/get-package-updates: blacklist lib32-* instead of ignoring --- bin/get-package-updates | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'bin/get-package-updates') diff --git a/bin/get-package-updates b/bin/get-package-updates index 328f8e3..c3b49a7 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -149,9 +149,7 @@ for repo in "${!repo_paths[@]}"; do grep -v -- '-i686/PKGBUILD$' | \ sed 's|^\(\S\+\) \(.\)\t\([^/]\+\)/repos/\([^/]\+\)-[^/-]\+/PKGBUILD$|\2 \3 \1 \4|' | \ # ignore staging and testing - grep -v '\(staging\|testing\)$' | \ - # ignore lib32- packages (they should all have a pendent built for x86_64) - grep -v '^. lib32-' + grep -v '\(staging\|testing\)$' done | \ sort -u | \ while read -r mode package git_revision repository; do @@ -274,7 +272,14 @@ echo 'apply blacklisting' black_listed='' black_listed_new="$( cat "${repo_paths["archlinux32"]}/blacklist" + ls "${work_dir}/package-infos/" | \ + grep '^lib32-.*\.depends' | \ + sed ' + s|^.*/|| + s|\(\.[^.]\+\)\{3\}$|| + ' )" + while [ -n "${black_listed_new}" ]; do black_listed="$( printf '%s\n%s' "${black_listed}" "${black_listed_new}" -- cgit v1.2.3-54-g00ecf