# fedora-repoquery A dnf wrapper to repoquery different Fedora releases, caching repodata separately per release. It also supports EPEL, Centos Stream and ELN repos. ## Usage Usage examples: `$ fedora-repoquery rawhide firefox` ``` firefox-143.0.1-1.fc44.x86_64 (fedora-rawhide) ``` `$ fedora-repoquery 43 --requires filesystem` ``` group(mail) setup ``` `$ fedora-repoquery epel10 ghc` ``` ghc-9.6.6-146.el10_0.x86_64 (epel10) ``` `$ fedora-repoquery c10 bash` ``` bash-5.2.26-6.el10.x86_64 (c10s-BaseOS) ``` `$ fedora-repoquery eln kernel` ``` kernel-6.17.0-0.rc6.250919g097a6c336d008.53.eln151.x86_64 (eln-BaseOS) ``` Without a release argument, the system yum repo configuration is used: `$ fedora-repoquery pandoc-cli` ``` pandoc-cli-3.6.4-38.fc44.x86_64 (rawhide) ``` `$ fedora-repoquery --whatrequires pandoc` ``` R-reprex-2.1.1-2.fc43.noarch (rawhide) R-rmarkdown-2.24-9.fc43.noarch (rawhide) pandoc-pdf-3.6.4-38.fc44.x86_64 (rawhide) python3-pypandoc-1.15-8.fc44.noarch (rawhide) ``` Use the --time (-T) option to display repo timestamps: ``` $ fedora-repoquery -T 43 fedrq 2025-05-07 15:57:29 +08 fedrq-1.5.0-1.fc43.noarch (fedora-rawhide) ``` Repo timestamp(s) are output when there are no query args after the release version: `$ fedora-repoquery 42` ``` 2025-04-15 01:43:43 +08 2025-09-23 09:11:46 +08 ``` One can also query multiple releases (or arch's): `$ fedora-repoquery 42 43 python3 | grep x86_64` ``` python3-3.13.2-2.fc42.x86_64 (f42) python3-3.13.7-1.fc42.x86_64 (f42-updates) python3-3.14.0~rc2-1.fc43.x86_64 (f43-development) python3-3.14.0~rc3-1.fc43.x86_64 (f43-updates-testing) ``` ## Help `$ fedora-repoquery --version` ``` 0.8 ``` `$ fedora-repoquery --help` ``` fedora-repoquery tool for querying Fedora repos for packages. Usage: fedora-repoquery [--version] [-4|--dnf4] [(-q|--quiet) | (-v|--verbose)] [--dynamic] [-T|--time] [-K|--koji] [(-m|--mirror URL) | (-d|--dl)] [-F|--all-fedora] [(-s|--source) | (-A|--all-archs) | [-a|--repo-arch ARCH]] [-t|--testing] [-D|--debug] [(-z|--cache-size) | (-e|--cache-clean-empty) | --list-releases | --help-dnf | [--advisories ARG | --advisory-severities ARG | --arch ARG | --available | --bugfix | --bzs ARG | --cves ARG | --disable-modular-filtering | --duplicates | --enhancement | --exactdeps | --extras | (-f|--file ARG) | --installed | --installed-from-repo ARG | --installonly | --latest-limit ARG | --leaves | --newpackage | --providers-of ARG | --recent | --recursive | --security | --srpm | --unneeded | --upgrades | --userinstalled | --whatconflicts ARG | --whatdepends ARG | --whatenhances ARG | --whatobsoletes ARG | --whatprovides ARG | --whatrecommends ARG | --whatrequires ARG | --whatsuggests ARG | --whatsupplements ARG | --conflicts | --depends | --enhances | --files | (-l|--list) | --obsoletes | --provides | --recommends | --requires | --requires-pre | --sourcerpm | --suggests | --supplements | --location | (-i|--info) | (--changelog|--changelogs) | --querytags | (--qf|--queryformat ARG)] [[RELEASE]... [REPOQUERY_OPTS]... [PKGSPECIFIER]...]] where RELEASE is {fN or N (fedora), 'rawhide', epelN, epelN-next, cN (centos stream), 'eln'}, with N the release version number. Available options: -h,--help Show this help text --version Show version -4,--dnf4 Use dnf4 instead of dnf5 (if available) -q,--quiet Avoid output to stderr -v,--verbose Show stderr from dnf repoquery --dynamic Redirect each HTTP through mirror -T,--time Show time-stamp of repos -K,--koji Use Koji buildroot -m,--mirror URL Fedora mirror [default: https://download.fedoraproject.org/pub] -d,--dl Use dl.fp.o -F,--all-fedora Query all Fedora releases -s,--source Query source repos -A,--all-archs Query all (64 bit) arch repos -a,--repo-arch ARCH Specify repo arch [default: x86_64] -t,--testing Fedora updates-testing -D,--debug Show some debug output -z,--cache-size Show total dnf repo metadata cache disksize -e,--cache-clean-empty Remove empty dnf caches --list-releases List Fedora versions --help-dnf Show dnf --help ``` The default arch is the system arch. ## Installation fedora-repoquery is available in Fedora and EPEL: . ## Building from source Use `stack install fedora-repoquery` or `cabal install fedora-repoquery` to build the latest release. To build from git: `stack install` or `cabal install` or `cabal-rpm install`. ## Contributing fedora-repoquery is distributed under the GPL license version 3 or later.