forked from wolfi-dev/os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force a virtual libcurl provides/depends pinned to package-version
Signed-off-by: Jamon <jamon@chainguard.dev>
- Loading branch information
1 parent
39a708f
commit 03224f8
Showing
2 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package: | ||
name: curl-rustls | ||
version: "8.12.0" | ||
epoch: 0 | ||
epoch: 1 | ||
description: "URL retrieval utility and library" | ||
copyright: | ||
- license: MIT | ||
|
@@ -67,6 +67,8 @@ subpackages: | |
description: "curl library (rustls backend)" | ||
dependencies: | ||
provider-priority: 10 | ||
provides: | ||
- libcurl=${{package.full-version}} | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jamonation
Author
Owner
|
||
pipeline: | ||
- runs: | | ||
mkdir -p "${{targets.subpkgdir}}"/usr/lib | ||
|
This file contains 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
@jamonation
this breaks when curl.yaml & curl-rustls.yaml epoch get out of sync; when one is rebuild (for any reason) without rebuilding the other.
For example as part of abi transitions; as curl & curl-rustls have widely different runtime abi dependencies.
This is same comment that was left on wolfi-dev#41405