docs: document minor version-specific package dependencies in README! - #408
Merged
PraveenPenguin merged 1 commit intoSep 18, 2026
Merged
Conversation
Currently, bootstrap only supports major version package definitions. This prevents handling packages that exist only in specific minor versions of an OS. This commit adds documentation for the minor version support by: - Explaining how the wrapper checks minor version-specific sections first (e.g., [deps_sles16_1]) before falling back to the major version section (e.g., [deps_sles16]) - Documenting the same fallback logic for environment-type packages (e.g., [deps_sles16_1_kvm] -> [deps_sles16_kvm]) - Providing a clear example config usage in config/wrapper/env.conf - Highlighting that packages in [deps_sles16_1] are pre-requisite packages only for SLES 16.1 and will not affect other SLES 16.x versions Signed-off-by: Anushree-Mathur <anushree.mathur@linux.ibm.com>
PraveenPenguin
approved these changes
Sep 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Currently, bootstrap only supports major version package definitions.
This prevents handling packages that exist only in specific minor
versions of an OS.
This commit adds documentation for the minor version support introduced
in PR #392 by:
first (e.g.,
[deps_sles16_1]) before falling back to the majorversion section (e.g.,
[deps_sles16])(e.g.,
[deps_sles16_1_kvm]→[deps_sles16_kvm])config/wrapper/env.conf[deps_sles16_1]are pre-requisitepackages only for SLES 16.1 and will not affect other SLES 16.x
versions
NOTE:
This same will work for any other distro versions! But here putting example for sles16.1 for understanding.
Signed-off-by: Anushree-Mathur anushree.mathur@linux.ibm.com