Dear Maintainer,
When attempting to install augeas-tools on Debian 13 Trixie (stable), apt fails with a 404 Not Found error. It seems apt is looking for the "1.14.1-1+b3" version, but this specific version is currently missing from the Debian repository pool.
Here is the output of the installation attempt:
LC_ALL=C apt install -y augeas-tools
Installing: augeas-tools
Installing dependencies: augeas-lenses libaugeas0
Ign:1 http://deb.debian.org/debian trixie/main amd64 augeas-lenses all 1.14.1-1
Err:2 http://deb.debian.org/debian trixie/main amd64 libaugeas0 amd64 1.14.1-1+b3
404 Not Found [IP: 151.101.66.132 80]
Err:3 http://deb.debian.org/debian trixie/main amd64 augeas-tools amd64 1.14.1-1+b3
404 Not Found [IP: 151.101.66.132 80]
Err:1 http://deb.debian.org/debian trixie/main amd64 augeas-lenses all 1.14.1-1
404 Not Found [IP: 151.101.66.132 80]
Checking the repository (pool) directly via curl shows that the +b3 versions are absent, but the 1.14.1-1.1 versions are present.
curl -fsSL http://deb.debian.org/debian/pool/main/a/augeas/ | awk -F '"' '/href/ { print $8 }' | grep -E ".deb$"
...
augeas-tools_1.14.1-1.1_amd64.deb
augeas-tools_1.14.1-1.1_arm64.deb
libaugeas0_1.14.1-1.1_amd64.deb
...
It appears there is an index synchronization issue in the stable branch, or the +b3 packages were removed/superseded without the package lists reflecting this change yet. Clearing the apt cache (apt clean && apt update) did not resolve the issue.