-
Notifications
You must be signed in to change notification settings - Fork 6
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
main: add --use-librepo
to support librepo downloads
#51
Changes from all commits
f8c905c
04616ca
5c15f1d
e726d7f
157268c
febc133
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,12 @@ | |
%bcond_with tests | ||
%bcond_with relax_requires | ||
|
||
# The minimum required osbuild version | ||
%global min_osbuild_version 129 | ||
# The minimum required osbuild version, note that this used to be 129 | ||
# but got bumped to 138 for librepo support which is not strictly | ||
# required. So if this needs backport to places where there is no | ||
# recent osbuild available we could simply make --use-librepo false | ||
# and go back to 129. | ||
Comment on lines
+6
to
+10
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this a realistic issue? I guess it might be if you're I mean, there's no way this spec file will be used to officially build ib-cli in a distro where a new enough osbuild wont be, so I think this note isn't relevant. I might be missing something though. |
||
%global min_osbuild_version 138 | ||
|
||
%global goipath github.com/osbuild/image-builder-cli | ||
|
||
|
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.
We can 'just' bump the minimum required
osbuild
version instead of this remark; let's do that.