[20.10 backport] deb: scan: include packaging revision and distro version in version#826
Closed
thaJeztah wants to merge 1 commit into
Closed
[20.10 backport] deb: scan: include packaging revision and distro version in version#826thaJeztah wants to merge 1 commit into
thaJeztah wants to merge 1 commit into
Conversation
Contributor
tianon
reviewed
Jan 11, 2023
| # Use separate version for the compose-plugin package, then generate the other control files as usual | ||
| # TODO override "Source" field in control as well (to point to compose, as it doesn't match the package name) | ||
| dh_gencontrol -pdocker-compose-plugin -- -v$${COMPOSE_VERSION#v}~$${DISTRO}-$${SUITE} | ||
| dh_gencontrol -pdocker-compose-plugin -- -v$${COMPOSE_DEB_VERSION#v}-$${PKG_REVISION}~$${DISTRO}.$${VERSION_ID}-$${SUITE} |
Contributor
There was a problem hiding this comment.
Suggested change
| dh_gencontrol -pdocker-compose-plugin -- -v$${COMPOSE_DEB_VERSION#v}-$${PKG_REVISION}~$${DISTRO}.$${VERSION_ID}-$${SUITE} | |
| dh_gencontrol -pdocker-compose-plugin -- -v$${COMPOSE_DEB_VERSION#v}-$${PKG_REVISION}~$${DISTRO}.$${VERSION_ID}~$${SUITE} |
Member
Author
There was a problem hiding this comment.
I skipped the compose changes in this one, but those will get in through #825
tianon
reviewed
Jan 11, 2023
a97576c to
476a9af
Compare
tianon
previously approved these changes
Jan 11, 2023
Aligning the plugin's version with the format used for docker-ce and docker-ce-cli, as updated in 39772a7 Before this patch: deb/debbuild/ └── ubuntu-jammy ├── docker-buildx-plugin_0.10.0-1~ubuntu.22.04-jammy_arm64.deb ├── docker-ce-cli_23.0.0~rc.2-1~ubuntu.22.04~jammy_arm64.deb ├── docker-ce-rootless-extras_23.0.0~rc.2-1~ubuntu.22.04~jammy_arm64.deb ├── docker-ce_23.0.0~rc.2-1~ubuntu.22.04~jammy_arm64.deb ├── docker-compose-plugin_2.15.1-1~ubuntu.22.04-jammy_arm64.deb └── docker-scan-plugin_0.23.0~ubuntu-jammy_arm64.deb With this patch: deb/debbuild/ └── ubuntu-jammy ├── docker-buildx-plugin_0.10.0-1~ubuntu.22.04-jammy_arm64.deb ├── docker-ce-cli_23.0.0~rc.2-1~ubuntu.22.04~jammy_arm64.deb ├── docker-ce-rootless-extras_23.0.0~rc.2-1~ubuntu.22.04~jammy_arm64.deb ├── docker-ce_23.0.0~rc.2-1~ubuntu.22.04~jammy_arm64.deb ├── docker-compose-plugin_2.15.1-1~ubuntu.22.04-jammy_arm64.deb └── docker-scan-plugin_0.23.0-1~ubuntu.22.04~jammy_arm64.deb Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 1f2ff93) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
476a9af to
83b567d
Compare
Member
Author
|
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.
Aligning the plugin's version with the format used for docker-ce and
docker-ce-cli, as updated in 39772a7
Before this patch:
With this patch: