1
0
mirror of https://github.com/Luzifer/archrepo.git synced 2024-09-20 11:12:57 +00:00
archrepo/scripts/do_cleanup.sh

26 lines
660 B
Bash
Raw Normal View History

#!/bin/bash
set -euo pipefail
function log() {
echo "[$(date +%H:%M:%S)] $@" >&2
}
syncdir="${REPO_DIR:-$(pwd)}"
log "Cleaning up old package versions..."
BASE_PATH="${syncdir}" python scripts/remove_old_versions.py
log "Adding remaining packages to database..."
packages=($(find "${syncdir}" -regextype egrep -regex '^.*\.pkg\.tar(\.xz|\.zst)$' | sort))
if [ "${#packages[@]}" -eq 0 ]; then
log "No packages found to add to repo, this looks like an error!"
exit 1
fi
log "Adding packages..."
repo-add --new --prevent-downgrade "${DATABASE}" "${packages[@]}"
log "All packages added, removing *.old copies..."
find "${syncdir}" -name '*.old' -delete