Not sure if the two issues in the title are related, but the following happened.
First, I do a checkupdates
(ch
is an alias):
$ ch
imagemagick 7.1.0.2-2 -> 7.1.0.4-1
mesa 21.1.4-1 -> 21.1.5-1
pacman-mirrorlist 20210509-1 -> 20210718-1
python-pep517 0.10.0-2 -> 0.11.0-1
python-setuptools 1:57.2.0-1 -> 1:57.3.0-1
vulkan-icd-loader 1.2.183-1 -> 1.2.184-1
I then decide to run the update (up
is an alias):
$ up
[sudo] password for reemz:
:: Synchronising package databases...
core 133.5 KiB 890 KiB/s 00:00 [-----------------------------------------------------------] 100%
extra 1567.2 KiB 3.89 MiB/s 00:00 [-----------------------------------------------------------] 100%
community 3.2 MiB 4.65 MiB/s 00:00 [---------------------------------C o o o o o o o o ] 57%
community 5.6 MiB 7.77 MiB/s 00:01 [-----------------------------------------------------------] 100%
endeavouros 18.6 KiB 126 KiB/s 00:00 [-----------------------------------------------------------] 100%
error: failed retrieving file 'core.db' from mirror.easylee.nl : The requested URL returned error: 404
error: failed retrieving file 'extra.db' from mirror.easylee.nl : The requested URL returned error: 404
error: failed retrieving file 'community.db' from mirror.easylee.nl : The requested URL returned error: 404
warning: too many errors from mirror.easylee.nl, skipping for the remainder of this transaction
error: failed retrieving file 'multilib.db' from mirror.easylee.nl : The requested URL returned error: 404
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...
Packages (7) imagemagick-7.1.0.4-1 mesa-21.1.5-1 pacman-mirrorlist-20210718-1 python-pep517-0.11.0-1 python-setuptools-1:57.3.0-1 python-tomli-1.0.4-1
vulkan-icd-loader-1.2.184-1
Total Download Size: 20.73 MiB
Total Installed Size: 111.82 MiB
Net Upgrade Size: 0.08 MiB
:: Proceed with installation? [Y/n] n
Cleaned the entire cache (like I always do after every pacman
operation) and retried once more, same result, so I decided to run Reflector Simple, with the following result:
mirrorlist
$ cat /etc/pacman.d/mirrorlist
################################################################################
################# Arch Linux mirrorlist generated by Reflector #################
################################################################################
# With: reflector --verbose -c NL --protocol https --sort rate --latest 10
# When: 2021-07-19 11:32:21 UTC
# From: https://archlinux.org/mirrors/status/json/
# Retrieved: 2021-07-19 11:32:03 UTC
# Last Check: 2021-07-19 10:51:18 UTC
## Netherlands
Server = https://mirrors.xtom.nl/archlinux/$repo/os/$arch
## Netherlands
Server = https://mirror.erickochen.nl/archlinux/$repo/os/$arch
## Netherlands
Server = https://mirror.koddos.net/archlinux/$repo/os/$arch
## Netherlands
Server = https://mirror.lyrahosting.com/archlinux/$repo/os/$arch
## Netherlands
Server = https://mirror.cj2.nl/archlinux/$repo/os/$arch
## Netherlands
Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch
## Netherlands
Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
## Netherlands
Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch
## Netherlands
Server = https://arch.mirrors.lavatech.top/$repo/os/$arch
## Netherlands
Server = https://archlinux.mirror.liteserver.nl/$repo/os/$arch
Repeated the process, check first:
$ ch
imagemagick 7.1.0.2-2 -> 7.1.0.4-1
mesa 21.1.4-1 -> 21.1.5-1
pacman-mirrorlist 20210509-1 -> 20210718-1
python-pep517 0.10.0-2 -> 0.11.0-1
python-setuptools 1:57.2.0-1 -> 1:57.3.0-1
vulkan-icd-loader 1.2.183-1 -> 1.2.184-1
Okay, no more python-tomli
in the list, no idea why, and it’s not installed on my system, nor does it seem (pacman -Si) to be required by anything. Whatever. I decide to run the update:
$ up
:: Synchronising package databases...
core 133.5 KiB 405 KiB/s 00:00 [-----------------------------------------------------------] 100%
extra 1567.0 KiB 2.62 MiB/s 00:01 [-----------------------------------------------------------] 100%
community 5.6 MiB 5.58 MiB/s 00:01 [-----------------------------------------------------------] 100%
multilib 149.7 KiB 435 KiB/s 00:00 [-----------------------------------------------------------] 100%
endeavouros 18.6 KiB 77.4 KiB/s 00:00 [-----------------------------------------------------------] 100%
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...
Packages (5) imagemagick-7.1.0.4-1 mesa-21.1.5-1 pacman-mirrorlist-20210718-1 python-setuptools-1:57.3.0-1 vulkan-icd-loader-1.2.184-1
Total Download Size: 20.69 MiB
Total Installed Size: 111.63 MiB
Net Upgrade Size: 0.01 MiB
:: Proceed with installation? [Y/n]
Wait…according to checkupdates
there was an update to python-pep517
, but now there’s not?
Have I broken something or is my understanding of pacman
just failing hard again?