index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2017-06-09 14:52:19 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-06-09 14:52:19 +0200 |
commit | 80d6523ed8645286807382a6f3a90a841a09c9bb (patch) | |
tree | 31cb2b6fef7c2383f3f7e8a47eb3645dbd4adf1d /bin/get-package-updates | |
parent | c43196ade89ccb36d1075e55b04b8b61f24836f6 (diff) |
-rwxr-xr-x | bin/get-package-updates | 11 |
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}" |