From 30b94e608f2137d76f8a1b9dfc5720c864fd8a31 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 21 Sep 2021 11:19:28 +0200 Subject: [PATCH] change pacman to use system makepkg.conf pacman.conf and mirrorlist --- usr/lib/initcpio/install/archboot_base | 6 +- usr/share/archboot/pacman/etc/makepkg.conf | 147 ---- usr/share/archboot/pacman/etc/pacman.conf | 99 --- .../archboot/pacman/etc/pacman.d/mirrorlist | 761 ------------------ 4 files changed, 3 insertions(+), 1010 deletions(-) delete mode 100644 usr/share/archboot/pacman/etc/makepkg.conf delete mode 100644 usr/share/archboot/pacman/etc/pacman.conf delete mode 100644 usr/share/archboot/pacman/etc/pacman.d/mirrorlist diff --git a/usr/lib/initcpio/install/archboot_base b/usr/lib/initcpio/install/archboot_base index 1f990c003..fd98a450d 100644 --- a/usr/lib/initcpio/install/archboot_base +++ b/usr/lib/initcpio/install/archboot_base @@ -213,9 +213,9 @@ build () done add_dir "/var/cache/pacman/pkg" add_dir "/var/lib/pacman" - add_file "/usr/share/archboot/pacman/etc/pacman.conf" "/etc/pacman.conf" - add_file "/usr/share/archboot/pacman/etc/makepkg.conf" "/etc/makepkg.conf" - add_file "/usr/share/archboot/pacman/etc/pacman.d/mirrorlist" "/etc/pacman.d/mirrorlist" + add_file "/etc/pacman.conf" + add_file "/etc/makepkg.conf" + add_file "/etc/pacman.d/mirrorlist" # add pacman initialisation of gpg keys add_file "/usr/share/archboot/pacman/etc/systemd/system/etc-pacman.d-gnupg.mount" "/etc/systemd/system/etc-pacman.d-gnupg.mount" add_file "/usr/share/archboot/pacman/etc/systemd/system/pacman-init.service" "/etc/systemd/system/pacman-init.service" diff --git a/usr/share/archboot/pacman/etc/makepkg.conf b/usr/share/archboot/pacman/etc/makepkg.conf deleted file mode 100644 index d8bf59e39..000000000 --- a/usr/share/archboot/pacman/etc/makepkg.conf +++ /dev/null @@ -1,147 +0,0 @@ -#!/hint/bash -# -# /etc/makepkg.conf -# - -######################################################################### -# SOURCE ACQUISITION -######################################################################### -# -#-- The download utilities that makepkg should use to acquire sources -# Format: 'protocol::agent' -DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u' - 'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' - 'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' - 'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' - 'rsync::/usr/bin/rsync --no-motd -z %u %o' - 'scp::/usr/bin/scp -C %u %o') - -# Other common tools: -# /usr/bin/snarf -# /usr/bin/lftpget -c -# /usr/bin/wget - -#-- The package required by makepkg to download VCS sources -# Format: 'protocol::package' -VCSCLIENTS=('bzr::bzr' - 'git::git' - 'hg::mercurial' - 'svn::subversion') - -######################################################################### -# ARCHITECTURE, COMPILE FLAGS -######################################################################### -# -CARCH="x86_64" -CHOST="x86_64-pc-linux-gnu" - -#-- Compiler and Linker Flags -CPPFLAGS="-D_FORTIFY_SOURCE=2" -CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt" -CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt" -LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" -#RUSTFLAGS="-C opt-level=2" -#-- Make Flags: change this for DistCC/SMP systems -#MAKEFLAGS="-j2" -#-- Debugging flags -DEBUG_CFLAGS="-g -fvar-tracking-assignments" -DEBUG_CXXFLAGS="-g -fvar-tracking-assignments" -#DEBUG_RUSTFLAGS="-C debuginfo=2" - -######################################################################### -# BUILD ENVIRONMENT -######################################################################### -# -# Defaults: BUILDENV=(!distcc !color !ccache check !sign) -# A negated environment option will do the opposite of the comments below. -# -#-- distcc: Use the Distributed C/C++/ObjC compiler -#-- color: Colorize output messages -#-- ccache: Use ccache to cache compilation -#-- check: Run the check() function if present in the PKGBUILD -#-- sign: Generate PGP signature file -# -BUILDENV=(!distcc color !ccache check !sign) -# -#-- If using DistCC, your MAKEFLAGS will also need modification. In addition, -#-- specify a space-delimited list of hosts running in the DistCC cluster. -#DISTCC_HOSTS="" -# -#-- Specify a directory for package building. -#BUILDDIR=/tmp/makepkg - -######################################################################### -# GLOBAL PACKAGE OPTIONS -# These are default values for the options=() settings -######################################################################### -# -# Default: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug) -# A negated option will do the opposite of the comments below. -# -#-- strip: Strip symbols from binaries/libraries -#-- docs: Save doc directories specified by DOC_DIRS -#-- libtool: Leave libtool (.la) files in packages -#-- staticlibs: Leave static library (.a) files in packages -#-- emptydirs: Leave empty directories in packages -#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip -#-- purge: Remove files specified by PURGE_TARGETS -#-- debug: Add debugging flags as specified in DEBUG_* variables -# -OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug) - -#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2 -INTEGRITY_CHECK=(md5) -#-- Options to be used when stripping binaries. See `man strip' for details. -STRIP_BINARIES="--strip-all" -#-- Options to be used when stripping shared libraries. See `man strip' for details. -STRIP_SHARED="--strip-unneeded" -#-- Options to be used when stripping static libraries. See `man strip' for details. -STRIP_STATIC="--strip-debug" -#-- Manual (man and info) directories to compress (if zipman is specified) -MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info}) -#-- Doc directories to remove (if !docs is specified) -DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc}) -#-- Files to be removed from all packages (if purge is specified) -PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) -#-- Directory to store source code in for debug packages -DBGSRCDIR="/usr/src/debug" - -######################################################################### -# PACKAGE OUTPUT -######################################################################### -# -# Default: put built package and cached source in build directory -# -#-- Destination: specify a fixed directory where all packages will be placed -#PKGDEST=/home/packages -#-- Source cache: specify a fixed directory where source files will be cached -#SRCDEST=/home/sources -#-- Source packages: specify a fixed directory where all src packages will be placed -#SRCPKGDEST=/home/srcpackages -#-- Log files: specify a fixed directory where all log files will be placed -#LOGDEST=/home/makepkglogs -#-- Packager: name/email of the person or organization building packages -#PACKAGER="John Doe " -#-- Specify a key to use for package signing -#GPGKEY="" - -######################################################################### -# COMPRESSION DEFAULTS -######################################################################### -# -COMPRESSGZ=(gzip -c -f -n) -COMPRESSBZ2=(bzip2 -c -f) -COMPRESSXZ=(xz -c -z -) -COMPRESSZST=(zstd -c -z -q -) -COMPRESSLRZ=(lrzip -q) -COMPRESSLZO=(lzop -q) -COMPRESSZ=(compress -c -f) -COMPRESSLZ4=(lz4 -q) -COMPRESSLZ=(lzip -c -f) - -######################################################################### -# EXTENSION DEFAULTS -######################################################################### -# -PKGEXT='.pkg.tar.zst' -SRCEXT='.src.tar.gz' diff --git a/usr/share/archboot/pacman/etc/pacman.conf b/usr/share/archboot/pacman/etc/pacman.conf deleted file mode 100644 index 0a0423887..000000000 --- a/usr/share/archboot/pacman/etc/pacman.conf +++ /dev/null @@ -1,99 +0,0 @@ -# -# /etc/pacman.conf -# -# See the pacman.conf(5) manpage for option and repository directives - -# -# GENERAL OPTIONS -# -[options] -# The following paths are commented out with their default values listed. -# If you wish to use different paths, uncomment and update the paths. -#RootDir = / -#DBPath = /var/lib/pacman/ -#CacheDir = /var/cache/pacman/pkg/ -#LogFile = /var/log/pacman.log -#GPGDir = /etc/pacman.d/gnupg/ -#HookDir = /etc/pacman.d/hooks/ -HoldPkg = pacman glibc -#XferCommand = /usr/bin/curl -L -C - -f -o %o %u -#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u -#CleanMethod = KeepInstalled -Architecture = auto - -# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup -#IgnorePkg = -#IgnoreGroup = - -#NoUpgrade = -#NoExtract = - -# Misc options -#UseSyslog -#Color -#TotalDownload -CheckSpace -#VerbosePkgLists - -# By default, pacman accepts packages signed by keys that its local keyring -# trusts (see pacman-key and its man page), as well as unsigned packages. -SigLevel = Required DatabaseOptional -LocalFileSigLevel = Optional -#RemoteFileSigLevel = Required - -# NOTE: You must run `pacman-key --init` before first using pacman; the local -# keyring can then be populated with the keys of all official Arch Linux -# packagers with `pacman-key --populate archlinux`. - -# -# REPOSITORIES -# - can be defined here or included from another file -# - pacman will search repositories in the order defined here -# - local/custom mirrors can be added here or in separate files -# - repositories listed first will take precedence when packages -# have identical names, regardless of version number -# - URLs will have $repo replaced by the name of the current repo -# - URLs will have $arch replaced by the name of the architecture -# -# Repository entries are of the format: -# [repo-name] -# Server = ServerName -# Include = IncludePath -# -# The header [repo-name] is crucial - it must be present and -# uncommented to enable the repo. -# - -# The testing repositories are disabled by default. To enable, uncomment the -# repo name header and Include lines. You can add preferred servers immediately -# after the header, and they will be used before the default mirrors. - -#[testing] -#Include = /etc/pacman.d/mirrorlist - -[core] -Include = /etc/pacman.d/mirrorlist - -[extra] -Include = /etc/pacman.d/mirrorlist - -#[community-testing] -#Include = /etc/pacman.d/mirrorlist - -[community] -Include = /etc/pacman.d/mirrorlist - -# If you want to run 32 bit applications on your x86_64 system, -# enable the multilib repositories as required here. - -#[multilib-testing] -#Include = /etc/pacman.d/mirrorlist - -#[multilib] -#Include = /etc/pacman.d/mirrorlist - -# An example of a custom package repository. See the pacman manpage for -# tips on creating your own repositories. -#[custom] -#SigLevel = Optional TrustAll -#Server = file:///home/custompkgs diff --git a/usr/share/archboot/pacman/etc/pacman.d/mirrorlist b/usr/share/archboot/pacman/etc/pacman.d/mirrorlist deleted file mode 100644 index 88d08241b..000000000 --- a/usr/share/archboot/pacman/etc/pacman.d/mirrorlist +++ /dev/null @@ -1,761 +0,0 @@ -## -## Arch Linux repository mirrorlist -## Generated on 2021-08-22 -## - -## Worldwide -#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch - -## Australia -#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch -#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch -#Server = http://mirror.launtel.net.au/repo/arch/$repo/os/$arch -#Server = https://mirror.launtel.net.au/repo/arch/$repo/os/$arch -#Server = http://arch.lucassymons.net/$repo/os/$arch -#Server = https://arch.lucassymons.net/$repo/os/$arch -#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch - -## Austria -#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch -#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch -#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch -#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch - -## Bangladesh -#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch - -## Belarus -#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch -#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch - -## Belgium -#Server = http://archlinux.cu.be/$repo/os/$arch -#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch -#Server = http://mirror.tiguinet.net/arch/$repo/os/$arch - -## Bosnia and Herzegovina -#Server = http://archlinux.mirror.ba/$repo/os/$arch - -## Brazil -#Server = http://br.mirror.archlinux-br.org/$repo/os/$arch -#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch -#Server = http://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch -#Server = https://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch -#Server = http://linorg.usp.br/archlinux/$repo/os/$arch -#Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch -#Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch -#Server = http://mirror.ufscar.br/archlinux/$repo/os/$arch - -## Bulgaria -#Server = https://mirror.darklinux.uk/archlinux/$repo/os/$arch -#Server = http://mirror.host.ag/archlinux/$repo/os/$arch -#Server = http://mirrors.netix.net/archlinux/$repo/os/$arch -#Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch -#Server = https://mirror.telepoint.bg/archlinux/$repo/os/$arch -#Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch -#Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch - -## Canada -#Server = https://mirror.0xem.ma/arch/$repo/os/$arch -#Server = http://mirror.cedille.club/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.colo-serv.net/$repo/os/$arch -#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch -#Server = https://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch -#Server = http://mirror2.evolution-host.com/archlinux/$repo/os/$arch -#Server = https://mirror2.evolution-host.com/archlinux/$repo/os/$arch -#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch -#Server = http://muug.ca/mirror/archlinux/$repo/os/$arch -#Server = https://muug.ca/mirror/archlinux/$repo/os/$arch -#Server = http://arch.powerfly.ca/$repo/os/$arch -#Server = https://arch.powerfly.ca/$repo/os/$arch -#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch -#Server = http://mirror.scd31.com/arch/$repo/os/$arch -#Server = https://mirror.scd31.com/arch/$repo/os/$arch -#Server = http://mirror.sergal.org/archlinux/$repo/os/$arch -#Server = https://mirror.sergal.org/archlinux/$repo/os/$arch - -## Chile -#Server = http://mirror.anquan.cl/archlinux/$repo/os/$arch -#Server = http://mirror.archlinux.cl/$repo/os/$arch -#Server = http://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch -#Server = https://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch -#Server = http://mirror.ufro.cl/archlinux/$repo/os/$arch -#Server = https://mirror.ufro.cl/archlinux/$repo/os/$arch - -## China -#Server = http://mirrors.163.com/archlinux/$repo/os/$arch -#Server = http://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.dgut.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.dgut.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.hit.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.hit.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.nju.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.nju.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirror.redrock.team/archlinux/$repo/os/$arch -#Server = https://mirror.redrock.team/archlinux/$repo/os/$arch -#Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch -#Server = https://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch -#Server = http://mirrors.zju.edu.cn/archlinux/$repo/os/$arch - -## Colombia -#Server = http://mirrors.udenar.edu.co/archlinux/$repo/os/$arch - -## Croatia -#Server = http://archlinux.iskon.hr/$repo/os/$arch - -## Czechia -#Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch -#Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch -#Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch -#Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch -#Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch -#Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch -#Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch -#Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch -#Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch -#Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch -#Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch - -## Denmark -#Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch -#Server = https://mirrors.dotsrc.org/archlinux/$repo/os/$arch -#Server = http://mirror.one.com/archlinux/$repo/os/$arch -#Server = https://mirror.one.com/archlinux/$repo/os/$arch - -## Ecuador -#Server = http://mirror.cedia.org.ec/archlinux/$repo/os/$arch -#Server = http://mirror.espoch.edu.ec/archlinux/$repo/os/$arch -#Server = http://mirror.uta.edu.ec/archlinux/$repo/os/$arch - -## Estonia -#Server = http://mirror.cspacehostings.com/archlinux/$repo/os/$arch -#Server = https://mirror.cspacehostings.com/archlinux/$repo/os/$arch -#Server = http://mirrors.xtom.ee/archlinux/$repo/os/$arch -#Server = https://mirrors.xtom.ee/archlinux/$repo/os/$arch - -## Finland -#Server = https://arch.mcstrugs.org/$repo/os/$arch -#Server = http://mirror.arctic.lol/ArchMirror/$repo/os/$arch -#Server = http://arch.mirror.far.fi/$repo/os/$arch -#Server = http://mirror.hosthink.net/archlinux/$repo/os/$arch -#Server = https://mirror.srv.fail/archlinux/$repo/os/$arch -#Server = http://mirror.wuki.li/archlinux/$repo/os/$arch -#Server = https://mirror.wuki.li/archlinux/$repo/os/$arch -#Server = http://arch.yhtez.xyz/$repo/os/$arch -#Server = https://arch.yhtez.xyz/$repo/os/$arch - -## France -#Server = http://archlinux.de-labrusse.fr/$repo/os/$arch -#Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch -#Server = https://archlinux.vi-di.fr/$repo/os/$arch -#Server = http://archlinux.mirrors.benatherton.com/$repo/os/$arch -#Server = http://mirror.cyberbits.eu/archlinux/$repo/os/$arch -#Server = https://mirror.cyberbits.eu/archlinux/$repo/os/$arch -#Server = http://archlinux.datagr.am/$repo/os/$arch -#Server = https://mirrors.eric.ovh/arch/$repo/os/$arch -#Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch -#Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch -#Server = https://arch-mirror.cloud.louifox.house/$repo/os/$arch -#Server = http://archlinux.mailtunnel.eu/$repo/os/$arch -#Server = https://archlinux.mailtunnel.eu/$repo/os/$arch -#Server = http://mir.archlinux.fr/$repo/os/$arch -#Server = http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch -#Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch -#Server = http://arch.nimukaito.net/$repo/os/$arch -#Server = https://arch.nimukaito.net/$repo/os/$arch -#Server = http://mirror.oldsql.cc/archlinux/$repo/os/$arch -#Server = https://mirror.oldsql.cc/archlinux/$repo/os/$arch -#Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch -#Server = http://archlinux.polymorf.fr/$repo/os/$arch -#Server = http://archlinux.rezopole.net/$repo/os/$arch -#Server = https://mirrors.slaanesh.org/archlinux/$repo/os/$arch -#Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch -#Server = https://mirror.sysa.tech/archlinux/$repo/os/$arch -#Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch -#Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch -#Server = https://mirror.wormhole.eu/archlinux/$repo/os/$arch -#Server = http://mirroir.wptheme.fr/archlinux/$repo/os/$arch -#Server = https://mirroir.wptheme.fr/archlinux/$repo/os/$arch -#Server = http://arch.yourlabs.org/$repo/os/$arch -#Server = https://arch.yourlabs.org/$repo/os/$arch - -## Georgia -#Server = http://archlinux.grena.ge/$repo/os/$arch -#Server = https://archlinux.grena.ge/$repo/os/$arch - -## Germany -#Server = http://mirror.23m.com/archlinux/$repo/os/$arch -#Server = https://mirror.23m.com/archlinux/$repo/os/$arch -#Server = http://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch -#Server = https://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch -#Server = https://appuals.com/archlinux/$repo/os/$arch -#Server = http://artfiles.org/archlinux.org/$repo/os/$arch -#Server = https://mirror.bethselamin.de/$repo/os/$arch -#Server = http://mirror.chaoticum.net/arch/$repo/os/$arch -#Server = https://mirror.chaoticum.net/arch/$repo/os/$arch -#Server = http://mirror.checkdomain.de/archlinux/$repo/os/$arch -#Server = https://mirror.checkdomain.de/archlinux/$repo/os/$arch -#Server = http://mirror.clientvps.com/archlinux/$repo/os/$arch -#Server = https://mirror.clientvps.com/archlinux/$repo/os/$arch -#Server = https://mirror.dogado.de/archlinux/$repo/os/$arch -#Server = http://mirror.f4st.host/archlinux/$repo/os/$arch -#Server = https://mirror.f4st.host/archlinux/$repo/os/$arch -#Server = http://ftp.fau.de/archlinux/$repo/os/$arch -#Server = https://ftp.fau.de/archlinux/$repo/os/$arch -#Server = https://pkg.fef.moe/archlinux/$repo/os/$arch -#Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch -#Server = http://mirror.fsrv.services/archlinux/$repo/os/$arch -#Server = https://mirror.fsrv.services/archlinux/$repo/os/$arch -#Server = https://mirror.gnomus.de/$repo/os/$arch -#Server = http://www.gutscheindrache.com/mirror/archlinux/$repo/os/$arch -#Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch -#Server = http://archlinux.honkgong.info/$repo/os/$arch -#Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch -#Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.iphh.net/$repo/os/$arch -#Server = http://arch.jensgutermuth.de/$repo/os/$arch -#Server = https://arch.jensgutermuth.de/$repo/os/$arch -#Server = http://mirror.kumi.systems/archlinux/$repo/os/$arch -#Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch -#Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch -#Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch -#Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch -#Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch -#Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch -#Server = https://mirror.mikrogravitation.org/archlinux/$repo/os/$arch -#Server = https://mirror.pkgbuild.com/$repo/os/$arch -#Server = http://mirror.moson.org/arch/$repo/os/$arch -#Server = https://mirror.moson.org/arch/$repo/os/$arch -#Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch -#Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch -#Server = http://mirror.netcologne.de/archlinux/$repo/os/$arch -#Server = https://mirror.netcologne.de/archlinux/$repo/os/$arch -#Server = http://mirrors.niyawe.de/archlinux/$repo/os/$arch -#Server = https://mirrors.niyawe.de/archlinux/$repo/os/$arch -#Server = http://mirror.orbit-os.com/archlinux/$repo/os/$arch -#Server = https://mirror.orbit-os.com/archlinux/$repo/os/$arch -#Server = http://packages.oth-regensburg.de/archlinux/$repo/os/$arch -#Server = https://packages.oth-regensburg.de/archlinux/$repo/os/$arch -#Server = http://phinau.de/arch/$repo/os/$arch -#Server = https://phinau.de/arch/$repo/os/$arch -#Server = https://mirror.pseudoform.org/$repo/os/$arch -#Server = https://www.ratenzahlung.de/mirror/archlinux/$repo/os/$arch -#Server = http://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch -#Server = https://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch -#Server = http://linux.rz.rub.de/archlinux/$repo/os/$arch -#Server = http://mirror.satis-faction.de/archlinux/$repo/os/$arch -#Server = https://mirror.satis-faction.de/archlinux/$repo/os/$arch -#Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch -#Server = https://mirror.selfnet.de/archlinux/$repo/os/$arch -#Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch -#Server = https://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch -#Server = http://archlinux.thaller.ws/$repo/os/$arch -#Server = https://archlinux.thaller.ws/$repo/os/$arch -#Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch -#Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch -#Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch -#Server = http://mirror.undisclose.de/archlinux/$repo/os/$arch -#Server = https://mirror.undisclose.de/archlinux/$repo/os/$arch -#Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch -#Server = http://ftp.uni-hannover.de/archlinux/$repo/os/$arch -#Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch -#Server = http://mirror.united-gameserver.de/archlinux/$repo/os/$arch -#Server = https://arch.unixpeople.org/$repo/os/$arch -#Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch -#Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch -#Server = http://mirror.wtnet.de/arch/$repo/os/$arch -#Server = https://mirror.wtnet.de/arch/$repo/os/$arch -#Server = http://mirrors.xtom.de/archlinux/$repo/os/$arch -#Server = https://mirrors.xtom.de/archlinux/$repo/os/$arch -#Server = http://arch.mirror.zachlge.org/$repo/os/$arch -#Server = https://arch.mirror.zachlge.org/$repo/os/$arch - -## Greece -#Server = http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch -#Server = https://repo.greeklug.gr/data/pub/linux/archlinux/$repo/os/$arch -#Server = http://mirrors.myaegean.gr/linux/archlinux/$repo/os/$arch -#Server = http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch -#Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch - -## Hong Kong -#Server = https://asia.mirror.pkgbuild.com/$repo/os/$arch -#Server = http://mirror-hk.koddos.net/archlinux/$repo/os/$arch -#Server = https://mirror-hk.koddos.net/archlinux/$repo/os/$arch -#Server = http://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://arch-mirror.wtako.net/$repo/os/$arch -#Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch -#Server = https://mirror.xtom.com.hk/archlinux/$repo/os/$arch - -## Hungary -#Server = http://ftp.ek-cer.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch -#Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch -#Server = http://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch -#Server = http://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch -#Server = http://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch -#Server = https://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch -#Server = https://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch -#Server = https://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch - -## Iceland -#Server = http://mirror.system.is/arch/$repo/os/$arch -#Server = https://mirror.system.is/arch/$repo/os/$arch - -## India -#Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch -#Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch -#Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch - -## Indonesia -#Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch -#Server = http://mirror.faizuladib.com/archlinux/$repo/os/$arch -#Server = http://mirror.gi.co.id/archlinux/$repo/os/$arch -#Server = https://mirror.gi.co.id/archlinux/$repo/os/$arch -#Server = http://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch -#Server = https://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch -#Server = http://mirror.labkom.id/archlinux/$repo/os/$arch -#Server = http://mirror.papua.go.id/archlinux/$repo/os/$arch -#Server = https://mirror.papua.go.id/archlinux/$repo/os/$arch -#Server = http://mirror.poliwangi.ac.id/archlinux/$repo/os/$arch -#Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch -#Server = http://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch -#Server = https://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch - -## Iran -#Server = http://mirror.hostiran.ir/archlinux/$repo/os/$arch -#Server = https://mirror.hostiran.ir/archlinux/$repo/os/$arch -#Server = http://repo.iut.ac.ir/repo/archlinux/$repo/os/$arch -#Server = http://mirror.nak-mci.ir/arch/$repo/os/$arch -#Server = http://mirror.rasanegar.com/archlinux/$repo/os/$arch -#Server = https://mirror.rasanegar.com/archlinux/$repo/os/$arch - -## Ireland -#Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch -#Server = https://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch - -## Israel -#Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch -#Server = https://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch -#Server = https://archlinux.mivzakim.net/$repo/os/$arch - -## Italy -#Server = https://archmirror.it/repos/$repo/os/$arch -#Server = http://archlinux.mirror.garr.it/archlinux/$repo/os/$arch -#Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.server24.net/$repo/os/$arch -#Server = https://archlinux.mirror.server24.net/$repo/os/$arch - -## Japan -#Server = http://mirrors.cat.net/archlinux/$repo/os/$arch -#Server = https://mirrors.cat.net/archlinux/$repo/os/$arch -#Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch -#Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch -#Server = https://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch - -## Kazakhstan -#Server = http://mirror.hoster.kz/archlinux/$repo/os/$arch -#Server = https://mirror.hoster.kz/archlinux/$repo/os/$arch -#Server = http://mirror.ps.kz/archlinux/$repo/os/$arch -#Server = https://mirror.ps.kz/archlinux/$repo/os/$arch - -## Kenya -#Server = http://archlinux.mirror.liquidtelecom.com/$repo/os/$arch -#Server = https://archlinux.mirror.liquidtelecom.com/$repo/os/$arch - -## Latvia -#Server = http://archlinux.koyanet.lv/archlinux/$repo/os/$arch -#Server = https://archlinux.koyanet.lv/archlinux/$repo/os/$arch - -## Lithuania -#Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch -#Server = https://mirrors.atviras.lt/archlinux/$repo/os/$arch -#Server = http://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch -#Server = https://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch - -## Luxembourg -#Server = http://archlinux.mirror.root.lu/$repo/os/$arch - -## Mexico -#Server = https://arch.mirror.jsc.mx/$repo/os/$arch - -## Moldova -#Server = http://mirror.ihost.md/archlinux/$repo/os/$arch -#Server = https://mirror.ihost.md/archlinux/$repo/os/$arch - -## Monaco -#Server = http://archlinux.qontinuum.space/$repo/os/$arch -#Server = https://archlinux.qontinuum.space:4443/$repo/os/$arch - -## Netherlands -#Server = https://archlinux.beccacervello.it/archlinux/$repo/os/$arch -#Server = http://mirror.cj2.nl/archlinux/$repo/os/$arch -#Server = https://mirror.cj2.nl/archlinux/$repo/os/$arch -#Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch -#Server = http://mirror.erickochen.nl/archlinux/$repo/os/$arch -#Server = https://mirror.erickochen.nl/archlinux/$repo/os/$arch -#Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch -#Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch -#Server = https://arch.jeweet.net/$repo/os/$arch -#Server = http://mirror.koddos.net/archlinux/$repo/os/$arch -#Server = https://mirror.koddos.net/archlinux/$repo/os/$arch -#Server = http://arch.mirrors.lavatech.top/$repo/os/$arch -#Server = https://arch.mirrors.lavatech.top/$repo/os/$arch -#Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch -#Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.liteserver.nl/$repo/os/$arch -#Server = https://archlinux.mirror.liteserver.nl/$repo/os/$arch -#Server = http://mirror.lyrahosting.com/archlinux/$repo/os/$arch -#Server = https://mirror.lyrahosting.com/archlinux/$repo/os/$arch -#Server = http://mirror.mijn.host/archlinux/$repo/os/$arch -#Server = https://mirror.mijn.host/archlinux/$repo/os/$arch -#Server = http://mirror.neostrada.nl/archlinux/$repo/os/$arch -#Server = https://mirror.neostrada.nl/archlinux/$repo/os/$arch -#Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.pcextreme.nl/$repo/os/$arch -#Server = https://archlinux.mirror.pcextreme.nl/$repo/os/$arch -#Server = http://mirror.serverion.com/archlinux/$repo/os/$arch -#Server = https://mirror.serverion.com/archlinux/$repo/os/$arch -#Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch -#Server = http://mirror.tarellia.net/distr/archlinux/$repo/os/$arch -#Server = https://mirror.tarellia.net/distr/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.wearetriple.com/$repo/os/$arch -#Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch -#Server = http://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch -#Server = https://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch -#Server = http://mirrors.xtom.nl/archlinux/$repo/os/$arch -#Server = https://mirrors.xtom.nl/archlinux/$repo/os/$arch - -## New Caledonia -#Server = http://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch -#Server = http://archlinux.nautile.nc/archlinux/$repo/os/$arch -#Server = https://archlinux.nautile.nc/archlinux/$repo/os/$arch - -## New Zealand -#Server = http://mirror.2degrees.nz/archlinux/$repo/os/$arch -#Server = https://mirror.2degrees.nz/archlinux/$repo/os/$arch -#Server = http://mirror.fsmg.org.nz/archlinux/$repo/os/$arch -#Server = https://mirror.fsmg.org.nz/archlinux/$repo/os/$arch -#Server = http://mirror.smith.geek.nz/archlinux/$repo/os/$arch -#Server = https://mirror.smith.geek.nz/archlinux/$repo/os/$arch - -## North Macedonia -#Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch -#Server = http://mirror.onevip.mk/archlinux/$repo/os/$arch -#Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch -#Server = https://mirror.t-home.mk/archlinux/$repo/os/$arch - -## Norway -#Server = http://mirror.archlinux.no/$repo/os/$arch -#Server = https://mirror.archlinux.no/$repo/os/$arch -#Server = http://archlinux.uib.no/$repo/os/$arch -#Server = http://mirror.neuf.no/archlinux/$repo/os/$arch -#Server = https://mirror.neuf.no/archlinux/$repo/os/$arch -#Server = http://mirror.terrahost.no/linux/archlinux/$repo/os/$arch - -## Pakistan -#Server = http://repo.inara.pk/archlinux/$repo/os/$arch -#Server = https://repo.inara.pk/archlinux/$repo/os/$arch - -## Paraguay -#Server = http://archlinux.mirror.py/archlinux/$repo/os/$arch - -## Poland -#Server = http://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch -#Server = https://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch -#Server = http://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch -#Server = https://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch -#Server = http://arch.midov.pl/arch/$repo/os/$arch -#Server = https://arch.midov.pl/arch/$repo/os/$arch -#Server = http://arch.nixlab.pl/$repo/os/$arch -#Server = https://arch.nixlab.pl/$repo/os/$arch -#Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch -#Server = http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch -#Server = http://mirror.sfinae.tech/pub/mirrors/archlinux/$repo/os/$arch -#Server = https://mirror.sfinae.tech/pub/mirrors/archlinux/$repo/os/$arch -#Server = http://repo.skni.umcs.pl/archlinux/$repo/os/$arch -#Server = https://repo.skni.umcs.pl/archlinux/$repo/os/$arch -#Server = http://ftp.vectranet.pl/archlinux/$repo/os/$arch - -## Portugal -#Server = http://glua.ua.pt/pub/archlinux/$repo/os/$arch -#Server = https://glua.ua.pt/pub/archlinux/$repo/os/$arch -#Server = http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch -#Server = https://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch - -## Romania -#Server = http://mirrors.chroot.ro/archlinux/$repo/os/$arch -#Server = https://mirrors.chroot.ro/archlinux/$repo/os/$arch -#Server = http://mirror.efect.ro/archlinux/$repo/os/$arch -#Server = https://mirror.efect.ro/archlinux/$repo/os/$arch -#Server = http://mirrors.go.ro/archlinux/$repo/os/$arch -#Server = https://mirrors.go.ro/archlinux/$repo/os/$arch -#Server = http://mirrors.hostico.ro/archlinux/$repo/os/$arch -#Server = https://mirrors.hostico.ro/archlinux/$repo/os/$arch -#Server = http://archlinux.mirrors.linux.ro/$repo/os/$arch -#Server = http://mirrors.m247.ro/archlinux/$repo/os/$arch -#Server = http://mirrors.nav.ro/archlinux/$repo/os/$arch -#Server = http://mirrors.nxthost.com/archlinux/$repo/os/$arch -#Server = https://mirrors.nxthost.com/archlinux/$repo/os/$arch -#Server = http://mirrors.pidginhost.com/arch/$repo/os/$arch -#Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch - -## Russia -#Server = http://mirror.surf/archlinux/$repo/os/$arch -#Server = https://mirror.surf/archlinux/$repo/os/$arch -#Server = http://mirror.nw-sys.ru/archlinux/$repo/os/$arch -#Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch -#Server = http://mirrors.powernet.com.ru/archlinux/$repo/os/$arch -#Server = http://mirror.rol.ru/archlinux/$repo/os/$arch -#Server = https://mirror.rol.ru/archlinux/$repo/os/$arch -#Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch -#Server = https://mirror.truenetwork.ru/archlinux/$repo/os/$arch -#Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch -#Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch -#Server = http://archlinux.zepto.cloud/$repo/os/$arch - -## RĂ©union -#Server = http://arch.mithril.re/$repo/os/$arch - -## Serbia -#Server = http://arch.petarmaric.com/$repo/os/$arch -#Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch - -## Singapore -#Server = http://mirror.0x.sg/archlinux/$repo/os/$arch -#Server = https://mirror.0x.sg/archlinux/$repo/os/$arch -#Server = http://mirror.aktkn.sg/archlinux/$repo/os/$arch -#Server = https://mirror.aktkn.sg/archlinux/$repo/os/$arch -#Server = https://download.nus.edu.sg/mirror/archlinux/$repo/os/$arch -#Server = http://mirror.guillaumea.fr/archlinux/$repo/os/$arch -#Server = https://mirror.guillaumea.fr/archlinux/$repo/os/$arch -#Server = http://mirror.jingk.ai/archlinux/$repo/os/$arch -#Server = https://mirror.jingk.ai/archlinux/$repo/os/$arch -#Server = http://mirror.nus.edu.sg/archlinux/$repo/os/$arch - -## Slovakia -#Server = http://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch -#Server = https://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch -#Server = http://tux.rainside.sk/archlinux/$repo/os/$arch - -## Slovenia -#Server = http://archimonde.ts.si/archlinux/$repo/os/$arch -#Server = https://archimonde.ts.si/archlinux/$repo/os/$arch - -## South Africa -#Server = http://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch -#Server = https://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch -#Server = http://za.mirror.archlinux-br.org/$repo/os/$arch -#Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch -#Server = http://arch.opnmirror.co.za/$repo/os/$arch -#Server = https://arch.opnmirror.co.za/$repo/os/$arch -#Server = http://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch -#Server = https://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch - -## South Korea -#Server = http://mirror.anigil.com/archlinux/$repo/os/$arch -#Server = https://mirror.anigil.com/archlinux/$repo/os/$arch -#Server = http://ftp.harukasan.org/archlinux/$repo/os/$arch -#Server = https://ftp.harukasan.org/archlinux/$repo/os/$arch -#Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch -#Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch -#Server = http://mirror.premi.st/archlinux/$repo/os/$arch -#Server = https://mirror.premi.st/archlinux/$repo/os/$arch - -## Spain -#Server = https://mirror.cloroformo.org/archlinux/$repo/os/$arch -#Server = http://mirror.librelabucm.org/archlinux/$repo/os/$arch -#Server = https://mirror.librelabucm.org/archlinux/$repo/os/$arch -#Server = http://ftp.rediris.es/mirror/archlinux/$repo/os/$arch -#Server = http://sharing.thelinuxsect.com/archlinux/$repo/os/$arch - -## Sweden -#Server = http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch -#Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch -#Server = http://ftpmirror.infania.net/mirror/archlinux/$repo/os/$arch -#Server = https://ftp.ludd.ltu.se/mirrors/archlinux/$repo/os/$arch -#Server = http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch -#Server = https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch -#Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch -#Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch -#Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch -#Server = http://tedwall.se/archlinux/$repo/os/$arch -#Server = https://tedwall.se/archlinux/$repo/os/$arch - -## Switzerland -#Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch -#Server = https://pkg.adfinis.com/archlinux/$repo/os/$arch -#Server = http://mirror.init7.net/archlinux/$repo/os/$arch -#Server = https://mirror.init7.net/archlinux/$repo/os/$arch -#Server = http://mirror.puzzle.ch/archlinux/$repo/os/$arch -#Server = https://mirror.puzzle.ch/archlinux/$repo/os/$arch -#Server = https://theswissbay.ch/archlinux/$repo/os/$arch -#Server = https://mirror.ungleich.ch/mirror/packages/archlinux/$repo/os/$arch - -## Taiwan -#Server = http://archlinux.ccns.ncku.edu.tw/archlinux/$repo/os/$arch -#Server = http://free.nchc.org.tw/arch/$repo/os/$arch -#Server = https://free.nchc.org.tw/arch/$repo/os/$arch -#Server = http://archlinux.cs.nctu.edu.tw/$repo/os/$arch -#Server = http://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch -#Server = https://shadow.ind.ntou.edu.tw/archlinux/$repo/os/$arch -#Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch -#Server = http://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch -#Server = https://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch - -## Thailand -#Server = https://mirror.cyberbits.asia/archlinux/$repo/os/$arch -#Server = http://mirror.kku.ac.th/archlinux/$repo/os/$arch -#Server = https://mirror.kku.ac.th/archlinux/$repo/os/$arch -#Server = http://mirror2.totbb.net/archlinux/$repo/os/$arch - -## Turkey -#Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch -#Server = http://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch - -## Ukraine -#Server = http://archlinux.ip-connect.vn.ua/$repo/os/$arch -#Server = https://archlinux.ip-connect.vn.ua/$repo/os/$arch -#Server = http://mirror.mirohost.net/archlinux/$repo/os/$arch -#Server = https://mirror.mirohost.net/archlinux/$repo/os/$arch -#Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch -#Server = https://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch - -## United Kingdom -#Server = http://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch -#Server = https://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch -#Server = http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch -#Server = https://mirror.bytemark.co.uk/archlinux/$repo/os/$arch -#Server = http://mirrors.gethosted.online/archlinux/$repo/os/$arch -#Server = https://mirrors.gethosted.online/archlinux/$repo/os/$arch -#Server = http://mirrors.manchester.m247.com/arch-linux/$repo/os/$arch -#Server = http://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch -#Server = https://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch -#Server = http://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch -#Server = https://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch -#Server = http://mirror.netweaver.uk/archlinux/$repo/os/$arch -#Server = https://mirror.netweaver.uk/archlinux/$repo/os/$arch -#Server = http://lon.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://lon.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://arch.serverspace.co.uk/arch/$repo/os/$arch -#Server = http://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch -#Server = https://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch - -## United States -#Server = http://mirrors.acm.wpi.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.advancedhosters.com/archlinux/$repo/os/$arch -#Server = http://mirrors.aggregate.org/archlinux/$repo/os/$arch -#Server = https://america.mirror.pkgbuild.com/$repo/os/$arch -#Server = http://ca.us.mirror.archlinux-br.org/$repo/os/$arch -#Server = http://il.us.mirror.archlinux-br.org/$repo/os/$arch -#Server = http://mirror.arizona.edu/archlinux/$repo/os/$arch -#Server = https://mirror.arizona.edu/archlinux/$repo/os/$arch -#Server = http://arlm.tyzoid.com/$repo/os/$arch -#Server = https://arlm.tyzoid.com/$repo/os/$arch -#Server = https://mirror.ava.dev/archlinux/$repo/os/$arch -#Server = http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch -#Server = http://mirror.cc.columbia.edu/pub/linux/archlinux/$repo/os/$arch -#Server = http://arch.mirror.constant.com/$repo/os/$arch -#Server = https://arch.mirror.constant.com/$repo/os/$arch -#Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch -#Server = http://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/$arch -#Server = http://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch -#Server = https://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch -#Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch -#Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch -#Server = http://mirror.ette.biz/archlinux/$repo/os/$arch -#Server = https://mirror.ette.biz/archlinux/$repo/os/$arch -#Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch -#Server = http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch -#Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch -#Server = https://mirror.hackingand.coffee/arch/$repo/os/$arch -#Server = https://mirror.hodgepodge.dev/archlinux/$repo/os/$arch -#Server = http://mirror.hostup.org/archlinux/$repo/os/$arch -#Server = https://mirror.hostup.org/archlinux/$repo/os/$arch -#Server = http://arch.hu.fo/archlinux/$repo/os/$arch -#Server = https://arch.hu.fo/archlinux/$repo/os/$arch -#Server = http://repo.ialab.dsu.edu/archlinux/$repo/os/$arch -#Server = https://repo.ialab.dsu.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch -#Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch -#Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = http://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = https://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = https://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = https://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch -#Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch -#Server = http://mirror.lty.me/archlinux/$repo/os/$arch -#Server = https://mirror.lty.me/archlinux/$repo/os/$arch -#Server = http://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch -#Server = https://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch -#Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch -#Server = http://mirror.metrocast.net/archlinux/$repo/os/$arch -#Server = http://mirror.kaminski.io/archlinux/$repo/os/$arch -#Server = https://mirror.kaminski.io/archlinux/$repo/os/$arch -#Server = http://iad.mirrors.misaka.one/archlinux/$repo/os/$arch -#Server = https://iad.mirrors.misaka.one/archlinux/$repo/os/$arch -#Server = http://repo.miserver.it.umich.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.mit.edu/archlinux/$repo/os/$arch -#Server = https://mirrors.mit.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch -#Server = https://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch -#Server = http://archmirror1.octyl.net/$repo/os/$arch -#Server = https://archmirror1.octyl.net/$repo/os/$arch -#Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch -#Server = http://arch.mirrors.pair.com/$repo/os/$arch -#Server = http://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://ord.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://iad.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://ord.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch -#Server = https://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch -#Server = https://mirrors.rit.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.rutgers.edu/archlinux/$repo/os/$arch -#Server = https://mirrors.rutgers.edu/archlinux/$repo/os/$arch -#Server = http://mirror.siena.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.sonic.net/archlinux/$repo/os/$arch -#Server = https://mirrors.sonic.net/archlinux/$repo/os/$arch -#Server = http://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch -#Server = https://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch -#Server = http://arch.mirror.square-r00t.net/$repo/os/$arch -#Server = https://arch.mirror.square-r00t.net/$repo/os/$arch -#Server = http://mirror.stephen304.com/archlinux/$repo/os/$arch -#Server = https://mirror.stephen304.com/archlinux/$repo/os/$arch -#Server = http://ftp.sudhip.com/archlinux/$repo/os/$arch -#Server = https://ftp.sudhip.com/archlinux/$repo/os/$arch -#Server = http://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch -#Server = https://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch -#Server = http://mirror.umd.edu/archlinux/$repo/os/$arch -#Server = http://mirror.vtti.vt.edu/archlinux/$repo/os/$arch -#Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch -#Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch -#Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch -#Server = https://zxcvfdsa.com/arch/$repo/os/$arch - -## Vietnam -#Server = http://f.archlinuxvn.org/archlinux/$repo/os/$arch -#Server = http://mirror.bizflycloud.vn/archlinux/$repo/os/$arch -