https://github.com/archlinux/arch-repro-status
Check the reproducibility status of your Arch Linux packages (read-only mirror)
https://github.com/archlinux/arch-repro-status
Last synced: 6 days ago
JSON representation
Check the reproducibility status of your Arch Linux packages (read-only mirror)
- Host: GitHub
- URL: https://github.com/archlinux/arch-repro-status
- Owner: archlinux
- License: mit
- Created: 2021-04-27T19:43:24.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T00:06:48.000Z (over 2 years ago)
- Last Synced: 2025-01-25T17:07:20.421Z (5 months ago)
- Language: Rust
- Homepage: https://gitlab.archlinux.org/archlinux/arch-repro-status
- Size: 3.67 MB
- Stars: 24
- Watchers: 11
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# arch-repro-status
A CLI tool for querying the [reproducibility](https://reproducible-builds.org/) status of the Arch Linux packages using data from a [rebuilderd](https://wiki.archlinux.org/index.php/Rebuilderd) instance such as [reproducible.archlinux.org](https://reproducible.archlinux.org/).
It can show the reproducibility status of:- packages that belong to an individual [package maintainer](https://wiki.archlinux.org/index.php/Arch_terminology#Package_maintainer) (uses the data from [archlinux.org/packages](https://archlinux.org/packages))
- currently installed packages on the system (uses the data from [pacman](https://wiki.archlinux.org/title/Pacman) local database)
You can inspect the build logs and [diffoscope](https://diffoscope.org/) of the packages by enabling the interactive mode via `-i`.## Usage
```
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 Sets the username of the maintainer [env: MAINTAINER=]
-r, --rebuilderd Sets the address of the rebuilderd instance [env: REBUILDERD=] [default: https://reproducible.archlinux.org]
-b, --dbpath Sets the path to the pacman database [env: DBPATH=] [default: /var/lib/pacman]
--repos Sets the repositories to query [default: core,extra,community,multilib]
-n, --pkgnames Sets the specific packages to query for [env: PKGNAMES=]
-f, --filter 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 Sets the pager for viewing files [env: PAGER=] [default: less]
-c, --cache-dir Sets the cache directory for log files [env: CACHE_DIR=]
-h, --help Print help
-V, --version Print version
```### Listing packages
```sh
arch-repro-status
```
```sh
arch-repro-status -m orhun
```
### Inspecting packages
```sh
arch-repro-status -i -f BAD
```
```sh
arch-repro-status -i -m orhun -f BAD
```
## Examples
```sh
# specify a maintainer (optional)
export MAINTAINER=
# print out BAD results
arch-repro-status -f BAD
# enable interactive mode
arch-repro-status -i -v -f BAD
# use `bat` to view files
arch-repro-status -i -v --pager bat
# specify rebuilderd
arch-repro-status --rebuilderd https://wolfpit.net/rebuild/
# specify specific packages (optional)
arch-repro-status --pkgnames bpftrace,libbpf
```## License
[The MIT License](https://opensource.org/licenses/MIT)