-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update C dependencies (#1644)
## Checklist - [x] I have read the [contribution guidelines](https://github.com/ooni/probe-cli/blob/master/CONTRIBUTING.md) - [x] reference issue for this pull request: ooni/probe#2783 - [ ] if you changed anything related to how experiments work and you need to reflect these changes in the ooni/spec repository, please link to the related ooni/spec pull request: <!-- add URL here --> - [ ] if you changed code inside an experiment, make sure you bump its version number <!-- Reminder: Location of the issue tracker: https://github.com/ooni/probe --> ## Description This diff updates the engine C dependencies.
- Loading branch information
Showing
5 changed files
with
42 additions
and
42 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
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 |
---|---|---|
|
@@ -27,13 +27,13 @@ func cdepsOpenSSLBuildMain(globalEnv *cBuildEnv, deps buildtoolmodel.Dependencie | |
defer restore() | ||
|
||
// See https://github.com/Homebrew/homebrew-core/blob/master/Formula/o/[email protected] | ||
cdepsMustFetch("https://www.openssl.org/source/openssl-3.3.0.tar.gz") | ||
cdepsMustFetch("https://www.openssl.org/source/openssl-3.3.1.tar.gz") | ||
deps.VerifySHA256( // must be mockable | ||
"53e66b043322a606abf0087e7699a0e033a37fa13feb9742df35c3a33b18fb02", | ||
"openssl-3.3.0.tar.gz", | ||
"777cd596284c883375a2a7a11bf5d2786fc5413255efab20c50d6ffe6d020b7e", | ||
"openssl-3.3.1.tar.gz", | ||
) | ||
must.Run(log.Log, "tar", "-xf", "openssl-3.3.0.tar.gz") | ||
_ = deps.MustChdir("openssl-3.3.0") // must be mockable | ||
must.Run(log.Log, "tar", "-xf", "openssl-3.3.1.tar.gz") | ||
_ = deps.MustChdir("openssl-3.3.1") // must be mockable | ||
|
||
mydir := filepath.Join(topdir, "CDEPS", "openssl") | ||
for _, patch := range cdepsMustListPatches(mydir) { | ||
|
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
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
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