dnf-repo: DNF wrapper tool to control repos

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

A command-line wrapper of the dnf package manager to control the repos enabled for a dnf invocation.


[Skip to Readme]

Properties

Versions 0.1, 0.2, 0.3, 0.4, 0.5, 0.5.1, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.5.5, 0.5.6
Change log ChangeLog.md
Dependencies base (<5), directory, extra, filepath, Glob, http-directory (>=0.1.9), simple-cmd, simple-cmd-args (>=0.1.8) [details]
License BSD-3-Clause
Copyright 2022 Jens Petersen <juhpetersen@gmail.com>
Author Jens Petersen <juhpetersen@gmail.com>
Maintainer Jens Petersen <juhpetersen@gmail.com>
Category Utility
Home page https://github.com/juhp/dnf-repo
Bug tracker https://github.com/juhp/dnf-repo/issues
Source repo head: git clone https://github.com/juhp/dnf-repo.git
Uploaded by JensPetersen at 2022-11-08T07:14:31Z

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for dnf-repo-0.5.1

[back to package description]

dnf-repo

A wrapper of the dnf package manager for fine control of enabled/disabled yum repos (eg Copr repos).

dnf is the package manager used by Fedora Linux and also modern RHEL.

DNF is a bit slow at handling multiple repos because it attempts to refresh the cached repodata frequently. So it can be advantageous to disable smaller repos by default and only enable them as needed periodically.

This tool can temporarily enable/disable repo(s) selected by substring(s). Changes to repos' enabled states can be saved too. It is also possible to expire repos' caches individually.

There are also smart options to enable/disable testing/modular repos (and even source/debuginfo repos), and also to create a repo file for a Copr or Koji repo.

Help

$ dnf-repo --version
0.5.1
$ dnf-repo --help
DNF wrapper repo tool

Usage: dnf-repo [--version] [-n|--dryrun] [-q|--quiet] [-D|--debug] [-l|--list]
                [-s|--save] [(-w|--weak-deps) | (-W|--no-weak-deps)] [--exact]
                [(-d|--disable REPOPAT) | (-e|--enable REPOPAT) |
                  (-x|--expire REPOPAT) | (-X|--clear-expires) |
                  (-E|--delete-repofile REPOPAT) | (-t|--enable-testing) |
                  (-T|--disable-testing) | (-m|--enable-modular) |
                  (-M|--disable-modular) | --enable-debuginfo |
                  --disable-debuginfo | --enable-source | --disable-source |
                  (-c|--add-copr COPR) | (-k|--add-koji REPO) |
                  (-u|--repourl URL)] [DNFARGS]
  see https://github.com/juhp/dnf-repo#readme

Available options:
  -h,--help                Show this help text
  --version                Show version
  -n,--dryrun              Dry run
  -q,--quiet               Suppress necessary output
  -D,--debug               Debug output
  -l,--list                List all repos
  -s,--save                Save the repo enable/disable state
  -w,--weak-deps           Use weak dependencies
  -W,--no-weak-deps        Disable weak dependencies
  --exact                  Match repo names exactly
  -d,--disable REPOPAT     Disable repos
  -e,--enable REPOPAT      Enable repos
  -x,--expire REPOPAT      Expire repo cache
  -X,--clear-expires       Undo cache expirations
  -E,--delete-repofile REPOPAT
                           Remove unwanted .repo file
  -t,--enable-testing      Enable testing repos
  -T,--disable-testing     Disable testing repos
  -m,--enable-modular      Enable modular repos
  -M,--disable-modular     Disable modular repos
  --enable-debuginfo       Enable debuginfo repos
  --disable-debuginfo      Disable debuginfo repos
  --enable-source          Enable source repos
  --disable-source         Disable source repos
  -c,--add-copr COPR       Create repo file for copr repo
  -k,--add-koji REPO       Create repo file for koji repo (f37-build, rawhide,
                           epel9-build, etc)
  -u,--repourl URL         temporary repo from a baseurl

Usage examples

List repos:

$ dnf-repo [--list]

Update with testing repos enabled:

$ dnf-repo -t update

Note that sudo is used implicitly when needed: there is no need to run dnf-repo with sudo.

Copr

List disabled copr repos (ie lists copr repos that would be enabled):

$ dnf-repo -e copr

Disable active copr repos for update:

$ dnf-repo -d copr update

Install a package directly from a new copr:

$ dnf-repo -c varlad/helix install helix

(note the copr repo is not permanently enabled).

Later update with the copr:

$ dnf-repo -e helix update

Changing system repo config

Disable fedora modular and cisco openh264 repos permanently:

$ dnf-repo --M -d h264 --save

Use only source repos

$ dnf-repo -d \* --enable-source
with 'fedora-source' enabled
with 'updates-source' enabled
with 'fedora' disabled
with 'updates' disabled

Switch system from rawhide

Switch a system from Rawhide to F37:

$ dnf-repo -d rawhide -e fedora distrosync --releasever 37 fedora-\*
with 'rawhide' disabled
with 'fedora' enabled

:

Repo patterns

By default repo patterns are matched as infix substrings (unless you use --exact).

But you can also prepend ^/append $ (or both) to match a repo name from its beginning/end (or exactly).

You can also use glob patterns to match one or more repo names: see the supported Glob syntax.

Without a glob (eg '*') a shortest common repo match will be sought, otherwise all matching repos will be considered.

An initial ^ (final $) in a glob pattern prevents the automatic prepending (appending) of * before (after) the pattern.

Installation

A copr repo is available: https://copr.fedorainfracloud.org/coprs/petersen/dnf-repo/

Building

Use {cabal,stack,cabal-rpm} install.

Contributing

dnf-repo is currently distributed under a BSD license.

The source repository is https://github.com/juhp/dnf-repo/

Contributions including reports and suggestions for improvement are welcome.