Compare commits

..

2 commits

2 changed files with 19 additions and 4 deletions

View file

@ -14,7 +14,8 @@ traperr() {
trap traperr ERR trap traperr ERR
PACKAGES=( "$@" ) PACKAGES=("$@")
EXTRA_ARGS=()
if [ ${#PACKAGES[@]} -eq 0 ]; then if [ ${#PACKAGES[@]} -eq 0 ]; then
echo "${BOLD}${RED}ERROR:${RESET}${BOLD} no packages specified${RESET}" echo "${BOLD}${RED}ERROR:${RESET}${BOLD} no packages specified${RESET}"
@ -24,7 +25,20 @@ fi
for package in "${PACKAGES[@]}"; do for package in "${PACKAGES[@]}"; do
( (
# change to package directory # change to package directory
cd "$package" || exit 1; cd "$package" || exit 1
# capture output for parsing dependencies
makepkg_output=$(makepkg --printsrcinfo)
# cache downloaded crates
if grep -q "depends = rust\|cargo" <<<"$makepkg_output"; then
EXTRA_ARGS+=(--bind-rw /var/cache/cargo:/build/.cargo)
fi
# cache downloaded modules
if grep -q "depends = go" <<<"$makepkg_output"; then
EXTRA_ARGS+=(--bind-rw /var/cache/golang:/build/go)
fi
# build signed package in chroot & add to local repo # build signed package in chroot & add to local repo
aur build \ aur build \
@ -32,7 +46,8 @@ for package in "${PACKAGES[@]}"; do
--gpg-sign \ --gpg-sign \
--remove \ --remove \
--force \ --force \
--makepkg-conf=/etc/aurutils/makepkg-grawlinson.conf --makepkg-conf=/etc/aurutils/makepkg-grawlinson.conf \
"${EXTRA_ARGS[@]}"
) )
done done

@ -1 +1 @@
Subproject commit 657cc9ab2307b6dcac6baf53551b19025aea6609 Subproject commit f2477d9d1cc43a1d6717cf99e87df02b1669fe17