-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
Implement command provides
#1037
Implement command provides
#1037
Conversation
5d9767b
to
35349e8
Compare
35349e8
to
b2f4bb2
Compare
Hmm, not sure what's going on, but I cannot compile it locally:
I've already tried to cleanup and wipe my ccache, but still it remains unbuildable for me. Looking into the overridden methods for the |
b2f4bb2
to
57ab3ca
Compare
So it's just a problem on my local machine, I've tried compiling with 1MT VM and it went OK. |
8bd833d
to
2649eb4
Compare
2649eb4
to
c9e6039
Compare
This introduces error codes for provides and slightly different error messages. Examples. - All packages match: dnf provides dnf rpm libdnf -> exit code 0 <provides output> - One package queried and it doesn't match: dnf provides nonexistent_pkg -> exit code 1 No matches found. If searching for a file, try specifying the full path or using a wildcard prefix ("*/") at the beginning. - Some packages match, some don't match: dnf provides dnf nonexistent_pkg -> exit code 1 <provides output> No matches found for nonexistent_pkg. If searching for a file, try specifying the full path or using a wildcard prefix ("*/") at the beginning. - All queried packages don't match: dnf provides nonexistent_pkg_1 nonexistent_pkg_2 -> exit code 1 <provides output> No matches found. If searching for a file, try specifying the full path or using a wildcard prefix ("*/") at the beginning.
c9e6039
to
979d54c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you!
a10d109
This pr targets partially if not all #147
test: rpm-software-management/ci-dnf-stack#1408
This introduces error codes for provides and slightly different error
messages.
Examples.