From 67fba32a01a1942e03eb1ba00f2a597ed11edfea Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 31 May 2017 11:16:27 +0200 Subject: bin/get-package-updates: ignore lib32-* packages --- bin/get-package-updates | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bin/get-package-updates') diff --git a/bin/get-package-updates b/bin/get-package-updates index cca4beb..ce02978 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -91,7 +91,9 @@ 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\)$' + grep -v '\(staging\|testing\)$' | \ + # ignore lib32- packages (they should all have a pendent built for x86_64) + grep -v '^. lib32-' done | \ sort -u | \ while read -r mode package git_revision repository; do -- cgit v1.2.3-54-g00ecf