Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
If /etc/dnf/dnf.conf contains the setting best=1 then dnf builddep will fail
for a package
BuildRequires: perl-generators
will fail with the error
Error:
Problem: cannot install the best candidate for the job
- package perl-generators-1.10-7.el8+1703+3db27f7b.noarch is excluded
rather than installing the perl-generators (assuming there aren't any other dependency issues).
This was happening when testing a mock rebuild of cyrus-imapd-3.0.7-15.el8.src.rpm but I reproduced it with a dummy package built from the spec file below to avoid dependency issues.
Name: testpkg
Version: 0
Release: 1%{?dist}
Summary: Test Package
License: BSD
Source0: test.txt
BuildRequires: perl-generators
%description
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
%make_install
%files
%doc
%changelog
The problem is for the RHEL8 public beta rhel-8.0-beta-1 so
dnf-4.0.4-1.el8.noarch
libdnf-0.22.0-2.el8.x86_64
libsolv-0.6.35-3.el8.x86_64
which I believe are the latest publicly available versions.
I was not able to reproduce it on Fedora 29 which has
dnf-4.0.9-2.fc29.noarch
libdnf-0.22.3-1.fc29.x86_64
libsolv-0.7.2-1.fc29.x86_64
so the bug may well be fixed if there are later private RHEL8 builds of these packages.
If /etc/dnf/dnf.conf contains the setting best=1 then dnf builddep will fail for a package BuildRequires: perl-generators will fail with the error Error: Problem: cannot install the best candidate for the job - package perl-generators-1.10-7.el8+1703+3db27f7b.noarch is excluded rather than installing the perl-generators (assuming there aren't any other dependency issues). This was happening when testing a mock rebuild of cyrus-imapd-3.0.7-15.el8.src.rpm but I reproduced it with a dummy package built from the spec file below to avoid dependency issues. Name: testpkg Version: 0 Release: 1%{?dist} Summary: Test Package License: BSD Source0: test.txt BuildRequires: perl-generators %description %prep %setup -q %build %configure make %{?_smp_mflags} %install %make_install %files %doc %changelog