Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/bin/build-packages
diff options
context:
space:
mode:
Diffstat (limited to 'bin/build-packages')
-rwxr-xr-xbin/build-packages35
1 files changed, 0 insertions, 35 deletions
diff --git a/bin/build-packages b/bin/build-packages
index d18f0e0..a5cd235 100755
--- a/bin/build-packages
+++ b/bin/build-packages
@@ -492,41 +492,6 @@ while [ "${count}" -ne 0 ] && \
date -u --iso-8601=seconds | \
cut -d+ -f1
).build-log"
- ( # new shell is intentional
- set -e
- CARCH="${arch}"
- . /usr/share/makepkg/util/source.sh
- bash -c ' # new shell is intentional
- CARCH="'"${arch}"'"
- . PKGBUILD
- printf '"'"'%s\n'"'"' "${source[@]}"
- ' \
- | grep '^git+' \
- | while read -r netfile; do
- fragment=$(get_uri_fragment "$netfile")
- [ -z "${fragment}" ] && continue
- case "${fragment%%=*}" in
- 'commit'|'tag')
- ref="${fragment##*=}"
- ;;
- 'branch')
- ref="origin/${fragment##*=}"
- ;;
- *)
- continue
- esac
- path=$(get_filename "$netfile")
- [ -d "${path}" ] && continue
- git init --bare "${path}"
- url=$(get_url "$netfile")
- url=${url#git+}
- url=${url%%#*}
- url=${url%%\?*}
- git -C "${path}" remote add origin "${url}"
- git -C "${path}" fetch --depth=1 origin "${ref}"
- git -C "${path}" fetch --depth=1 origin
- done
- )
if CARCH="${arch}" makepkg --verifysource 2> "${log_file}"; then
success=true
rm "${log_file}"