index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | bin/get-package-updates | 17 |
diff --git a/bin/get-package-updates b/bin/get-package-updates index df5cf7e..fa4f1d7 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -9,23 +9,6 @@ . "${0%/*}/../conf/default.conf" -# find the PKGBUILD of a given package in a given repository -# TODO: -# _properly_ include repository of package customizations - -find_pkgbuild() { - - for prefix in "${repo_paths["packages"]}" "${repo_paths["community"]}"; do - [ -d "${prefix}/$1" ] || continue - ls "${prefix}/$1/repos/$2-"*"/PKGBUILD" 2> /dev/null && break - done | \ - tr ' ' '\n' | \ - grep -v -- '-i686/PKGBUILD$' | \ - grep -v -- '-\(staging\|testing\)-[^/]\+/PKGBUILD$' | \ - sort | \ - tail -n1 -} - # Create a lock file for build list. exec 9> "${lock_file}" |