index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2017-10-27 13:53:01 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-10-27 13:53:01 +0200 |
commit | 50defdbff0c4cb8501490f2d0505a62b1e7d617e (patch) | |
tree | ecea0b4e0abe7b4c5a5f06a3d206ee0126552146 | |
parent | 74a5527a14e6394ed70655c1cbe17c1ef9f4e32a (diff) |
-rwxr-xr-x | bin/get-package-updates | 13 |
diff --git a/bin/get-package-updates b/bin/get-package-updates index dc80e7e..1868728 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -11,8 +11,6 @@ # TODO: (might be connected to above): find out who deletes loop-files which # should not be deleted -# TODO: remove extra whitelist cases - # shellcheck source=conf/default.conf . "${0%/*}/../conf/default.conf" @@ -367,17 +365,6 @@ while [ -n "${black_listed_new}" ]; do awk '{print $2}' | \ sort -k1,1 | \ join -1 1 -2 2 -o 2.1 - "${work_dir}/newest-dependencies" | \ - while read -r pkg; do - if [ "${pkg}" = 'dev86' ] || \ - [ "${pkg}" = 'python-pysocks' ] || \ - [ "${pkg}" = 'wine' ] || \ - [ "${pkg}" = 'wine-staging' ] || \ - [ "${pkg}" = 'wine-staging-nine' ]; then - >&2 printf 'blacklisting: %s would be black listed, but is ignored.\n' "${pkg}" - else - echo "${pkg}" - fi - done | \ sort -u ) black_listed_new=$( |