aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuriy O'Donnell <yuriyo@gmail.com>2021-07-01 16:29:16 +0200
committerGitHub <noreply@github.com>2021-07-01 07:29:16 -0700
commit7b97e041ae52a9439be4dbcaaafb7965a8dc1c57 (patch)
treeb076fd4318cd21cd0415daab6af3df48b2427c5b
parent44bc6922764abb4118dc7a14d385bdc0a7a8dc37 (diff)
downloadvcpkg-7b97e041ae52a9439be4dbcaaafb7965a8dc1c57.tar.gz
vcpkg-7b97e041ae52a9439be4dbcaaafb7965a8dc1c57.zip
[libressl] update to 3.3.3 (#18729)
Resolves #18682
-rw-r--r--ports/libressl/0001-enable-ocspcheck-on-msvc.patch2
-rw-r--r--ports/libressl/0002-suppress-msvc-warnings.patch2
-rw-r--r--ports/libressl/CONTROL8
-rw-r--r--ports/libressl/portfile.cmake10
-rw-r--r--ports/libressl/vcpkg.json11
-rw-r--r--versions/baseline.json4
-rw-r--r--versions/l-/libressl.json5
7 files changed, 26 insertions, 16 deletions
diff --git a/ports/libressl/0001-enable-ocspcheck-on-msvc.patch b/ports/libressl/0001-enable-ocspcheck-on-msvc.patch
index fa1884a2e..53083d314 100644
--- a/ports/libressl/0001-enable-ocspcheck-on-msvc.patch
+++ b/ports/libressl/0001-enable-ocspcheck-on-msvc.patch
@@ -9,7 +9,7 @@ index 3c80458..e8d3bf5 100644
OCSPCHECK_SRC
http.c
@@ -13,13 +11,27 @@ else()
- set(OCSPCHECK_SRC ${OCSPCHECK_SRC} compat/memmem.c)
+ set(OCSPCHECK_SRC ${OCSPCHECK_SRC} compat/strtonum.c)
endif()
+check_function_exists(getopt HAVE_GETOPT)
diff --git a/ports/libressl/0002-suppress-msvc-warnings.patch b/ports/libressl/0002-suppress-msvc-warnings.patch
index 7a5bf0038..79d756622 100644
--- a/ports/libressl/0002-suppress-msvc-warnings.patch
+++ b/ports/libressl/0002-suppress-msvc-warnings.patch
@@ -3,7 +3,7 @@ index a6a7554..b20fd4b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -111,6 +111,11 @@ if(WIN32)
- set(PLATFORM_LIBS ${PLATFORM_LIBS} ws2_32)
+ set(PLATFORM_LIBS ${PLATFORM_LIBS} ws2_32 bcrypt)
endif()
+if(MSVC AND MSVC_VERSION GREATER_EQUAL 1912)
diff --git a/ports/libressl/CONTROL b/ports/libressl/CONTROL
deleted file mode 100644
index 2b7d62ec2..000000000
--- a/ports/libressl/CONTROL
+++ /dev/null
@@ -1,8 +0,0 @@
-Source: libressl
-Version: 2.9.1
-Port-Version: 3
-Description: LibreSSL is a version of the TLS/crypto stack forked from OpenSSL in 2014, with goals of modernizing the codebase, improving security, and applying best practice development processes.
-Supports: !(uwp|arm)
-
-Feature: tools
-Description: Build openssl and ocspcheck executables
diff --git a/ports/libressl/portfile.cmake b/ports/libressl/portfile.cmake
index 7e37c207e..7483e02c8 100644
--- a/ports/libressl/portfile.cmake
+++ b/ports/libressl/portfile.cmake
@@ -6,8 +6,8 @@ endif()
vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "uwp")
-set(LIBRESSL_VERSION 2.9.1)
-set(LIBRESSL_HASH 7051911e566bb093c48a70da72c9981b870e3bf49a167ba6c934eece873084cc41221fbe3cd0c8baba268d0484070df7164e4b937854e716337540a87c214354)
+set(LIBRESSL_VERSION 3.3.3)
+set(LIBRESSL_HASH 2d0b5f4cfe37d573bc64d5967abb77f536dbe581fbad9637d925332bcdfd185fe6810335b2af80a89f92d7e6edaa8ea3ba2492c60a117e47ea1b2d6aacf01f0f)
vcpkg_download_distfile(
LIBRESSL_SOURCE_ARCHIVE
@@ -26,7 +26,8 @@ vcpkg_extract_source_archive_ex(
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
- "tools" LIBRESSL_APPS
+ FEATURES
+ "tools" LIBRESSL_APPS
)
vcpkg_configure_cmake(
@@ -59,6 +60,7 @@ if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
endif()
file(REMOVE_RECURSE
"${CURRENT_PACKAGES_DIR}/etc/ssl/certs"
+ "${CURRENT_PACKAGES_DIR}/debug/etc/ssl/certs"
"${CURRENT_PACKAGES_DIR}/share/man"
"${CURRENT_PACKAGES_DIR}/debug/include"
"${CURRENT_PACKAGES_DIR}/debug/share"
@@ -68,7 +70,7 @@ vcpkg_copy_pdbs()
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
-if((VCPKG_TARGET_IS_WINDOWS OR VCPKG_TARGET_IS_UWP) AND (VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic"))
+if(VCPKG_TARGET_IS_WINDOWS OR VCPKG_TARGET_IS_UWP)
file(GLOB_RECURSE LIBS "${CURRENT_PACKAGES_DIR}/*.lib")
foreach(LIB ${LIBS})
string(REGEX REPLACE "(.+)-[0-9]+\\.lib" "\\1.lib" LINK "${LIB}")
diff --git a/ports/libressl/vcpkg.json b/ports/libressl/vcpkg.json
new file mode 100644
index 000000000..59c18243c
--- /dev/null
+++ b/ports/libressl/vcpkg.json
@@ -0,0 +1,11 @@
+{
+ "name": "libressl",
+ "version": "3.3.3",
+ "description": "LibreSSL is a version of the TLS/crypto stack forked from OpenSSL in 2014, with goals of modernizing the codebase, improving security, and applying best practice development processes.",
+ "supports": "!(uwp | arm)",
+ "features": {
+ "tools": {
+ "description": "Build openssl and ocspcheck executables"
+ }
+ }
+}
diff --git a/versions/baseline.json b/versions/baseline.json
index d365b5d34..c20979b05 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -3501,8 +3501,8 @@
"port-version": 0
},
"libressl": {
- "baseline": "2.9.1",
- "port-version": 3
+ "baseline": "3.3.3",
+ "port-version": 0
},
"librsvg": {
"baseline": "2.40.20",
diff --git a/versions/l-/libressl.json b/versions/l-/libressl.json
index 62ab6a809..c8d282100 100644
--- a/versions/l-/libressl.json
+++ b/versions/l-/libressl.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "24a18d6ed79f2b8c4c01c5201998981b2d831a1a",
+ "version": "3.3.3",
+ "port-version": 0
+ },
+ {
"git-tree": "3de8a5b9f15524db17ccff3c0a4c61266d8fb3b1",
"version-string": "2.9.1",
"port-version": 3