How to Install and Uninstall perl-Dist-CheckConflicts.noarch Package on Fedora 34

Last updated: September 28,2024

1. Install "perl-Dist-CheckConflicts.noarch" package

Please follow the instructions below to install perl-Dist-CheckConflicts.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Dist-CheckConflicts.noarch

2. Uninstall "perl-Dist-CheckConflicts.noarch" package

Please follow the guidance below to uninstall perl-Dist-CheckConflicts.noarch on Fedora 34:

$ sudo dnf remove perl-Dist-CheckConflicts.noarch $ sudo dnf autoremove

3. Information about the perl-Dist-CheckConflicts.noarch package on Fedora 34

Last metadata expiration check: 3:01:07 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : perl-Dist-CheckConflicts
Version : 0.11
Release : 21.fc34
Architecture : noarch
Size : 24 k
Source : perl-Dist-CheckConflicts-0.11-21.fc34.src.rpm
Repository : fedora
Summary : Declare version conflicts for your dist
URL : https://metacpan.org/release/Dist-CheckConflicts
License : GPL+ or Artistic
Description : One shortcoming of the CPAN clients that currently exist is that they have no
: way of specifying conflicting downstream dependencies of modules. This module
: attempts to work around this issue by allowing you to specify conflicting
: versions of modules separately, and deal with them after the module is done
: installing.
:
: For instance, say you have a module Foo, and some other module Bar uses Foo. If
: Foo were to change its API in a non-backwards-compatible way, this would cause
: Bar to break until it is updated to use the new API. Foo can't just depend on
: the fixed version of Bar, because this will cause a circular dependency
: (because Bar is already depending on Foo), and this doesn't express intent
: properly anyway - Foo doesn't use Bar at all. The ideal solution would be for
: there to be a way to specify conflicting versions of modules in a way that would
: let CPAN clients update conflicting modules automatically after an existing
: module is upgraded, but until that happens, this module will allow users to do
: this manually.