A CLI tool for querying the reproducibility status of the Arch Linux packages using data from a rebuilderd instance such as reproducible.archlinux.org. It can show the reproducibility status of:
-i
.sh
pacman -S arch-repro-status
Also see archlinux-tools group for other useful tools!
sh
cargo install arch-repro-status
arch-repro-status [OPTIONS]
Options:
-q, --quiet Disables logging
-v, --verbose... Increases the logging verbosity
-a, --all Checks all of the packages on the system
-m, --maintainer <MAINTAINER> Sets the username of the maintainer [env: MAINTAINER=]
-r, --rebuilderd <URL> Sets the address of the rebuilderd instance [env: REBUILDERD=] [default: https://reproducible.archlinux.org]
-b, --dbpath <PATH> Sets the path to the pacman database [env: DBPATH=] [default: /var/lib/pacman]
--repos <REPO> Sets the repositories to query [default: core,extra,community,multilib]
-n, --pkgnames <PKGNAME> Sets the specific packages to query for [env: PKGNAMES=]
-f, --filter <STATUS> Sets the filter for package status [env: FILTER=] [possible values: GOOD, BAD, UNKWN]
-i, --inspect Views the build log or diffoscope of the interactively selected package
-p, --pager <PAGER> Sets the pager for viewing files [env: PAGER=] [default: less]
-c, --cache-dir <DIR> Sets the cache directory for log files [env: CACHE_DIR=]
-h, --help Print help
-V, --version Print version
sh
arch-repro-status
sh
arch-repro-status -m orhun
sh
arch-repro-status -i -f BAD
sh
arch-repro-status -i -m orhun -f BAD
```sh
export MAINTAINER=
arch-repro-status -f BAD
arch-repro-status -i -v -f BAD
bat
to view filesarch-repro-status -i -v --pager bat
arch-repro-status --rebuilderd https://wolfpit.net/rebuild/
arch-repro-status --pkgnames bpftrace,libbpf ```