Skip to content

Commit

Permalink
Add MbedTLS 2.28.2, compat Julia 1.9 (#6323)
Browse files Browse the repository at this point in the history
* Add MbedTLS 2.28.2, compat Julia 1.9

* Fix typo

* Use GitSource instead of ArchiveSource
  • Loading branch information
mkitti committed Feb 27, 2023
1 parent 4daddc4 commit 9f3629f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
6 changes: 6 additions & 0 deletions M/MbedTLS/MbedTLS@2.28.2/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version = v"2.28.2"
include("../common.jl")

build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.9")

# Trigger Build!
20 changes: 15 additions & 5 deletions M/MbedTLS/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,40 @@ name = "MbedTLS"
# Collection of sources required to build MbedTLS
sources_by_version = Dict(
v"2.24.0" => [
GitSource("https://github.com/ARMmbed/mbedtls.git",
GitSource("https://github.com/Mbed-TLS/mbedtls.git",
"523f0554b6cdc7ace5d360885c3f5bbcc73ec0e8"),
DirectorySource("./bundled"; follow_symlinks=true),
],
v"2.25.0" => [
GitSource("https://github.com/ARMmbed/mbedtls.git",
GitSource("https://github.com/Mbed-TLS/mbedtls.git",
"1c54b5410fd48d6bcada97e30cac417c5c7eea67"),
DirectorySource("./bundled"; follow_symlinks=true),
],
v"2.26.0" => [
GitSource("https://github.com/ARMmbed/mbedtls.git",
GitSource("https://github.com/Mbed-TLS/mbedtls.git",
"e483a77c85e1f9c1dd2eb1c5a8f552d2617fe400"),
DirectorySource("./bundled"; follow_symlinks=true),
],
v"2.27.0" => [
GitSource("https://github.com/ARMmbed/mbedtls.git",
GitSource("https://github.com/Mbed-TLS/mbedtls.git",
"f71e2878084126737cc39083e1e15afc459bd93d"),
DirectorySource("./bundled"; follow_symlinks=true),
],
v"2.28.0" => [
GitSource("https://github.com/ARMmbed/mbedtls.git",
GitSource("https://github.com/Mbed-TLS/mbedtls.git",
"8b3f26a5ac38d4fdccbc5c5366229f3e01dafcc0"),
DirectorySource("./bundled"; follow_symlinks=true),
],
v"2.28.1" => [
GitSource("https://github.com/Mbed-TLS/mbedtls.git",
"dd79db10014d85b26d11fe57218431f2e5ede6f2"),
DirectorySource("./bundled"; follow_symlinks=true),
],
v"2.28.2" => [
GitSource("https://github.com/Mbed-TLS/mbedtls.git",
"89f040a5c938985c5f30728baed21e49d0846a53"),
DirectorySource("./bundled"; follow_symlinks=true),
],
)
sources = sources_by_version[version]

Expand Down

0 comments on commit 9f3629f

Please sign in to comment.