summaryrefslogtreecommitdiff
path: root/bin/get-package-updates
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-05-31 11:16:27 +0200
committerErich Eckner <git@eckner.net>2017-05-31 11:16:27 +0200
commit67fba32a01a1942e03eb1ba00f2a597ed11edfea (patch)
tree6b400b628dd29818e3ee807a2f20a01a730a836c /bin/get-package-updates
parent8c2c3ec8abbc89a708c617f99191645f95c64e78 (diff)
downloadbuilder-67fba32a01a1942e03eb1ba00f2a597ed11edfea.tar.xz
bin/get-package-updates: ignore lib32-* packages
Diffstat (limited to 'bin/get-package-updates')
-rwxr-xr-xbin/get-package-updates4
1 files changed, 3 insertions, 1 deletions
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