We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Obsoletes(..)
.spec
dnf builddep
An unversioned Obsoletes(..) in a .spec file causes dnf builddep to segfault:
unversioned:
# cat /root/rpmbuild/SPECS/sample.spec Name: hello_world Version: 0.1.0 Release: 1%{?dist} Summary: sample License: MIT URL: https://github.com/rpm-software-management/dnf5 BuildArch: noarch Source0: %{name}-%{version}.tar.gz Obsoletes: vim %description This is a demo # dnf -y builddep /root/rpmbuild/SPECS/sample.spec Updating and loading repositories: Repositories loaded. Segmentation fault (core dumped)
versioned:
# cat /root/rpmbuild/SPECS/sample.spec Name: hello_world Version: 0.1.0 Release: 1%{?dist} Summary: sample License: MIT URL: https://github.com/rpm-software-management/dnf5 BuildArch: noarch Source0: %{name}-%{version}.tar.gz Obsoletes: vim < 1 %description This is a demo # dnf -y builddep /root/rpmbuild/SPECS/sample.spec Updating and loading repositories: Repositories loaded. Nothing to do.
The text was updated successfully, but these errors were encountered:
Thanks for the report, I believe this is a duplicate of #1864.
It should be already fixed by: #1870.
I have just tested it with a local build that includes the most recent changes it is working.
Sorry, something went wrong.
No branches or pull requests
An unversioned
Obsoletes(..)
in a.spec
file causesdnf builddep
to segfault:unversioned:
versioned:
The text was updated successfully, but these errors were encountered: