aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild-updated-packages.bash18
1 files changed, 13 insertions, 5 deletions
diff --git a/build-updated-packages.bash b/build-updated-packages.bash
index 197c536..037473f 100755
--- a/build-updated-packages.bash
+++ b/build-updated-packages.bash
@@ -8,16 +8,24 @@ cd "$PKGBUILD_DIR"
# Get commit sha from PKGVER of PKGBUILD
#
# Arguments:
-# $1 Path to the directory containing the PKGBUILD
+# $1 Whether the source is a PKGBUILD or string
+# $2 Path to the directory containing the PKGBUILD
# to get the sha from
get_pkgver_sha() {
- (source "$1"/PKGBUILD
- printf "%s" "$(sed -r 's/.*\.r[0-9]*\.g?//' <<<$pkgver)")
+ if [[ "$1" -eq "pkgbuild" ]]; then
+ source "$1"/PKGBUILD
+ elif [[ "$1" -eq "string" ]]; then
+ pkgver="$2"
+ else
+ printf "%s\n" "get_pkgver_sha failed" 1>&2
+ fi
+
+ printf "%s" "$(sed -r 's/.*\.r[0-9]*\.g?//' <<<$pkgver)"
}
main() {
for package in "${packages[@]}"; do
- old_version[$package]=$(get_pkgver_sha "$package")
+ old_version[$package]=$(get_pkgver_sha "pkgbuild" "$package")
(cd "$package"
makepkg --nobuild &>/dev/null) &
done
@@ -25,7 +33,7 @@ main() {
local needs_rebuild=()
for package in "${packages[@]}"; do
- new_head=$(get_pkgver_sha "$package")
+ new_head=$(get_pkgver_sha "pkgbuild" "$package")
if [[ "${old_version[$package]}" != "$new_head" ]]; then
needs_rebuild+=("$package")