diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-11-05 17:19:46 -0600 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-11-05 17:19:46 -0600 |
commit | c29b1ec0d5697f3e3b1be1c023fce103f6d9950e (patch) | |
tree | 9089fa8609a2d9cedf6b1a85f591ba0d5107de3c /meta.lua | |
parent | ba643c482e4ace5a913f623dfc84ecbe7a2b7719 (diff) | |
download | portable-packaging-c29b1ec0d5697f3e3b1be1c023fce103f6d9950e.tar.gz portable-packaging-c29b1ec0d5697f3e3b1be1c023fce103f6d9950e.tar.bz2 portable-packaging-c29b1ec0d5697f3e3b1be1c023fce103f6d9950e.zip |
More work on version pin
Diffstat (limited to '')
-rw-r--r-- | meta.lua | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -20,11 +20,12 @@ builds["libressl-meta"] = { | |||
20 | produces = {}, | 20 | produces = {}, |
21 | export=true, | 21 | export=true, |
22 | } | 22 | } |
23 | local libressl="v4.0.0" -- pin a verson since master is unstable | ||
23 | for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, debug, compilers) do | 24 | for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, debug, compilers) do |
24 | builds["libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v] = { | 25 | builds["libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v] = { |
25 | image="libressl-meta", | 26 | image="libressl-meta", |
26 | requires = { | 27 | requires = { |
27 | {"git", "portable#v4.0.0"}, | 28 | {"git", "portable#" .. libressl}, |
28 | }, | 29 | }, |
29 | produces = { | 30 | produces = { |
30 | ["libssl.a"] = true, | 31 | ["libssl.a"] = true, |
@@ -38,7 +39,8 @@ for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, deb | |||
38 | }, | 39 | }, |
39 | timeout = 600, --Jeez this takes forever | 40 | timeout = 600, --Jeez this takes forever |
40 | env = { | 41 | env = { |
41 | CFLAGS=" " .. opti_v .. " " .. rel_v | 42 | CFLAGS=" " .. opti_v .. " " .. rel_v, |
43 | LIBRESSL_VERSION=libressl | ||
42 | }, | 44 | }, |
43 | } | 45 | } |
44 | end | 46 | end |