1
0
mirror of https://github.com/Luzifer/archrepo.git synced 2024-09-20 03:02:57 +00:00
archrepo/scripts/update-aur.sh
Knut Ahlers 9661a05f62
Stop using public registry
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2021-09-23 08:46:24 +02:00

35 lines
837 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
source ./scripts/script_framework.sh
REPO_DIR=${REPO_DIR:-$(pwd)}
PACKAGE=${1:-}
[ -z "${PACKAGE}" ] && fail "No package given as CLI argument"
# Create working dir
TMPDIR="/tmp/aur2repo_${PACKAGE}"
mkdir -p "${TMPDIR}/cfg"
# Ensure cleanup on script exit
function cleanup() {
rm -rf "${TMPDIR}"
}
trap cleanup EXIT
step "Fetching signing key"
vault read --field=key secret/jenkins/arch-signing >"${TMPDIR}/cfg/signing.asc"
step "Re-fetching Docker image"
docker pull gcr.io/luzifer-registry/arch-repo-builder
step "Building AUR package ${PACKAGE}"
docker run --rm -ti \
-v "${TMPDIR}/src:/src" \
-v "${TMPDIR}/cfg:/config" \
-v "${REPO_DIR}:/repo" \
-v "$(pwd)/scripts/pacman.conf:/etc/pacman.conf:ro" \
gcr.io/luzifer-registry/arch-repo-builder \
"https://aur.archlinux.org/${PACKAGE}.git"