feat(dpkg): add dpkg to base rpm repo#17812
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds dpkg to the base-packages component group in base/comps/components-publish-channels.toml. By default all components publish to the rpm-sdk channels; membership in the base-packages group overrides this so the package (and its runtime closure) publishes to the rpm-base channels instead. This is a follow-up to commit 8d904bb which added debootstrap to the base repo but omitted dpkg, a runtime dependency of debootstrap, so debootstrap could not be satisfied from rpm-base alone.
Changes:
- Add
"dpkg"to thecomponent-groups.base-packageslist so it is published to therpm-basechannel rather than the defaultrpm-sdkchannel.
Verification notes:
dpkgis already a defined component (base/comps/components.toml:351), so no new component definition is required.- The insertion preserves the required alphabetical ordering (
dpdk<dpkg<dracut), matching the convention noted in the file header comment. - This is a publish-channel-only change; it does not alter
dpkg's rendered spec or lock file, so norender/updaterefresh is needed. - Consistent with how
debootstrapitself was added to this group (line 220).
reubeno
approved these changes
Jun 26, 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.
In commit 8d904bb we added
debootstrap, putting it in the base rpm repo. But we misseddpkg, which is a dependency ofdebootstrap. This change addsdpkgto the base rpm repo.Built locally and installed via local yum repo. Both
dpkganddebootsrapinstall correctly.