update_arch_versions: move to new arch repo layout

testing, community* are gone; core-testing, extra-testing are new
also remove multilib, likely doesn't include anything that helps us.

and switch to a different mirror which apparently updates more often.
This commit is contained in:
Christoph Reiter 2023-05-21 20:51:01 +02:00
parent 7ca9efda81
commit 081835a3ee

View File

@ -17,10 +17,9 @@ REPOSITORIES = [
]
DEFAULT_REPO = "ucrt64"
ARCH_REPO_URL = "https://mirror.f4st.host/archlinux"
ARCH_REPO_URL = "https://ftp.halifax.rwth-aachen.de/archlinux"
ARCH_REPO_CONFIG = []
for repo in ["core", "extra", "community", "testing", "community-testing",
"multilib"]:
for repo in ["core", "core-testing", "extra", "extra-testing"]:
ARCH_REPO_CONFIG.append(
(ARCH_REPO_URL + "/{0}/os/x86_64/{0}.db".format(repo), repo)
)