summaryrefslogtreecommitdiff
path: root/bin/get-package-updates
diff options
context:
space:
mode:
Diffstat (limited to 'bin/get-package-updates')
-rwxr-xr-xbin/get-package-updates17
1 files changed, 0 insertions, 17 deletions
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}"