aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>2020-10-15 15:39:39 -0700
committerGitHub <noreply@github.com>2020-10-15 15:39:39 -0700
commita0f838a859d7a64cd1efd9d8b8f842e7f7346ec0 (patch)
tree49820120d17dc96027edba7489829f9fab9ebc36
parent7dde05990ff71efe425a4df1014787b2cb78b60c (diff)
downloadvcpkg-a0f838a859d7a64cd1efd9d8b8f842e7f7346ec0.tar.gz
vcpkg-a0f838a859d7a64cd1efd9d8b8f842e7f7346ec0.zip
[qca] Disable plugin botan temporary (#14058)
-rw-r--r--ports/qca/0003-disable-plugin-botan.patch13
-rw-r--r--ports/qca/CONTROL1
-rw-r--r--ports/qca/portfile.cmake1
3 files changed, 15 insertions, 0 deletions
diff --git a/ports/qca/0003-disable-plugin-botan.patch b/ports/qca/0003-disable-plugin-botan.patch
new file mode 100644
index 000000000..4819984f9
--- /dev/null
+++ b/ports/qca/0003-disable-plugin-botan.patch
@@ -0,0 +1,13 @@
+diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt
+index 6d354dc..dd344a6 100644
+--- a/plugins/CMakeLists.txt
++++ b/plugins/CMakeLists.txt
+@@ -2,7 +2,7 @@
+ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib/${QCA_LIB_NAME}/crypto")
+ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib/${QCA_LIB_NAME}/crypto")
+
+-set(PLUGINS "botan;cyrus-sasl;gcrypt;gnupg;logger;nss;ossl;pkcs11;softstore" CACHE INTERNAL "")
++set(PLUGINS "cyrus-sasl;gcrypt;gnupg;logger;nss;ossl;pkcs11;softstore" CACHE INTERNAL "")
+
+ # Initialize WITH_${PLUGIN}_PLUGIN cache variables
+ foreach(PLUGIN IN LISTS PLUGINS)
diff --git a/ports/qca/CONTROL b/ports/qca/CONTROL
index 7eacba392..baab3cde6 100644
--- a/ports/qca/CONTROL
+++ b/ports/qca/CONTROL
@@ -1,5 +1,6 @@
Source: qca
Version: 2.3.1
+Port-Version: 1
Description: Qt Cryptographic Architecture (QCA).
Homepage: https://cgit.kde.org/qca.git/
Build-Depends: qt5-base[core]
diff --git a/ports/qca/portfile.cmake b/ports/qca/portfile.cmake
index b62de4a2a..494227cae 100644
--- a/ports/qca/portfile.cmake
+++ b/ports/qca/portfile.cmake
@@ -20,6 +20,7 @@ vcpkg_from_github(
PATCHES
0001-fix-path-for-vcpkg.patch
0002-fix-build-error.patch
+ 0003-disable-plugin-botan.patch
)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")