{"id":24649011,"url":"https://github.com/archlinux/arch-repro-status","last_synced_at":"2025-10-30T06:16:57.495Z","repository":{"id":64054753,"uuid":"362231548","full_name":"archlinux/arch-repro-status","owner":"archlinux","description":"Check the reproducibility status of your Arch Linux packages (read-only mirror)","archived":false,"fork":false,"pushed_at":"2023-03-24T00:06:48.000Z","size":3845,"stargazers_count":24,"open_issues_count":0,"forks_count":5,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-01-25T17:07:20.421Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gitlab.archlinux.org/archlinux/arch-repro-status","language":"Rust","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/archlinux.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-04-27T19:43:24.000Z","updated_at":"2024-12-12T19:46:12.000Z","dependencies_parsed_at":"2023-02-08T20:01:07.758Z","dependency_job_id":null,"html_url":"https://github.com/archlinux/arch-repro-status","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/archlinux/arch-repro-status","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archlinux%2Farch-repro-status","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archlinux%2Farch-repro-status/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archlinux%2Farch-repro-status/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archlinux%2Farch-repro-status/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/archlinux","download_url":"https://codeload.github.com/archlinux/arch-repro-status/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archlinux%2Farch-repro-status/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262382745,"owners_count":23302298,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-25T17:07:29.849Z","updated_at":"2025-10-30T06:16:57.407Z","avatar_url":"https://github.com/archlinux.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# arch-repro-status\n\nA 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/).\nIt can show the reproducibility status of:\n\n- 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))\n- currently installed packages on the system (uses the data from [pacman](https://wiki.archlinux.org/title/Pacman) local database)\n  You can inspect the build logs and [diffoscope](https://diffoscope.org/) of the packages by enabling the interactive mode via `-i`.\n\n## Usage\n\n```\narch-repro-status [OPTIONS]\n```\n\n```\nOptions:\n  -q, --quiet                    Disables logging\n  -v, --verbose...               Increases the logging verbosity\n  -a, --all                      Checks all of the packages on the system\n  -m, --maintainer \u003cMAINTAINER\u003e  Sets the username of the maintainer [env: MAINTAINER=]\n  -r, --rebuilderd \u003cURL\u003e         Sets the address of the rebuilderd instance [env: REBUILDERD=] [default: https://reproducible.archlinux.org]\n  -b, --dbpath \u003cPATH\u003e            Sets the path to the pacman database [env: DBPATH=] [default: /var/lib/pacman]\n      --repos \u003cREPO\u003e             Sets the repositories to query [default: core,extra,community,multilib]\n  -n, --pkgnames \u003cPKGNAME\u003e       Sets the specific packages to query for [env: PKGNAMES=]\n  -f, --filter \u003cSTATUS\u003e          Sets the filter for package status [env: FILTER=] [possible values: GOOD, BAD, UNKWN]\n  -i, --inspect                  Views the build log or diffoscope of the interactively selected package\n  -p, --pager \u003cPAGER\u003e            Sets the pager for viewing files [env: PAGER=] [default: less]\n  -c, --cache-dir \u003cDIR\u003e          Sets the cache directory for log files [env: CACHE_DIR=]\n  -h, --help                     Print help\n  -V, --version                  Print version\n```\n\n### Listing packages\n\n```sh\narch-repro-status\n```\n\n![Listing user packages](./demo/list_user_pkgs.gif)\n\n```sh\narch-repro-status -m orhun\n```\n\n![Listing maintainer packages](./demo/list_maintainer_pkgs.gif)\n\n### Inspecting packages\n\n```sh\narch-repro-status -i -f BAD\n```\n\n![Inspecting user packages](./demo/inspect_user_pkgs.gif)\n\n```sh\narch-repro-status -i -m orhun -f BAD\n```\n\n![Inspecting maintainer packages](./demo/inspect_maintainer_pkgs.gif)\n\n## Examples\n\n```sh\n# specify a maintainer (optional)\nexport MAINTAINER=\u003cusername\u003e\n# print out BAD results\narch-repro-status -f BAD\n# enable interactive mode\narch-repro-status -i -v -f BAD\n# use `bat` to view files\narch-repro-status -i -v --pager bat\n# specify rebuilderd\narch-repro-status --rebuilderd https://wolfpit.net/rebuild/\n# specify specific packages (optional)\narch-repro-status --pkgnames bpftrace,libbpf\n```\n\n## License\n\n[The MIT License](https://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchlinux%2Farch-repro-status","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farchlinux%2Farch-repro-status","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchlinux%2Farch-repro-status/lists"}