summaryrefslogtreecommitdiff
path: root/dev-cpp/cpp-httplib
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-10-19 13:17:48 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-10-19 13:17:48 +0000
commitee80f94cbb1c4872654e77f92fee1107d37a2719 (patch)
treee071049a7c72c5e13ec8ee87c2fc8cd01b24c94e /dev-cpp/cpp-httplib
parent4b84499909f58c42b3ab7d326a130710ecdc4a9a (diff)
downloadbaldeagleos-repo-ee80f94cbb1c4872654e77f92fee1107d37a2719.tar.gz
baldeagleos-repo-ee80f94cbb1c4872654e77f92fee1107d37a2719.tar.xz
baldeagleos-repo-ee80f94cbb1c4872654e77f92fee1107d37a2719.zip
Adding metadata
Diffstat (limited to 'dev-cpp/cpp-httplib')
-rw-r--r--dev-cpp/cpp-httplib/Manifest2
-rw-r--r--dev-cpp/cpp-httplib/cpp-httplib-0.18.1.ebuild (renamed from dev-cpp/cpp-httplib/cpp-httplib-0.17.3.ebuild)1
-rw-r--r--dev-cpp/cpp-httplib/files/cpp-httplib-0.16.2-httplib_h.patch30
3 files changed, 1 insertions, 32 deletions
diff --git a/dev-cpp/cpp-httplib/Manifest b/dev-cpp/cpp-httplib/Manifest
index 8f8b2a3b910d..3f8ddbaa180b 100644
--- a/dev-cpp/cpp-httplib/Manifest
+++ b/dev-cpp/cpp-httplib/Manifest
@@ -1,2 +1,2 @@
-DIST cpp-httplib-0.17.3.tar.gz 1258203 BLAKE2B ea6f51eea2b0bc859b13a4c5bcc9df62ef83c718941d2298f35eba58213fd68546c3347125d00a6e1378a1b31885ea4ed9a62a139411fff097055d135faa176a SHA512 9ee144727470af8a9f6ba953e95227c534ec87c1c89a17d511bb763091336c106e8d3a5fd8d4bf2c2274da0a64d42fde77eb95fb166e59f44bbbe906b3d327ec
DIST cpp-httplib-0.18.0.tar.gz 1321763 BLAKE2B 7807c2f4e3a6a0703a1253f0ec4ac7ef5fbcfad000e517af034a2aff64393229fb47830d215a1959e9893a66f51d19989c33b6b646b79be71e69687fe08cbbf2 SHA512 35ff903d51fee5428d7a95a0406460f8a18d1b5653f6ec8f353d7a2f1084598e599b24d0401f7214d5ee8d9764c74a4e617fff55acd4e6733ab1b9f2d7d4403c
+DIST cpp-httplib-0.18.1.tar.gz 1323636 BLAKE2B 8335c9a4d69d7e9b2e7e3c4036b49627536c8d6cffa7a5ae2c3dff693c5458f7fa2f89f3da2c130325069225d3204ec579900d5c5266dff7a9c732c134b39907 SHA512 6dd1054d0171594bf871a918b5540cc67981a48f7dbb82e9029a4877afc6d8c36e2f69411f5eec7b052bf0245554d01f33ef2180f42a15f6b8dd86ebb2427a41
diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.17.3.ebuild b/dev-cpp/cpp-httplib/cpp-httplib-0.18.1.ebuild
index 441e27bc8c02..e38fbec824d6 100644
--- a/dev-cpp/cpp-httplib/cpp-httplib-0.17.3.ebuild
+++ b/dev-cpp/cpp-httplib/cpp-httplib-0.18.1.ebuild
@@ -40,7 +40,6 @@ BDEPEND="
src_prepare() {
if use libressl; then
eapply -p1 $FILESDIR/cmakelists.patch
- eapply -p1 $FILESDIR/${PN}-0.16.2-httplib_h.patch
fi
cmake_src_prepare
diff --git a/dev-cpp/cpp-httplib/files/cpp-httplib-0.16.2-httplib_h.patch b/dev-cpp/cpp-httplib/files/cpp-httplib-0.16.2-httplib_h.patch
deleted file mode 100644
index a46cc633717c..000000000000
--- a/dev-cpp/cpp-httplib/files/cpp-httplib-0.16.2-httplib_h.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff '--color=auto' -urN cpp-httplib-0.16.2.orig/httplib.h cpp-httplib-0.16.2/httplib.h
---- cpp-httplib-0.16.2.orig/httplib.h 2024-08-09 19:05:55.831889663 +0200
-+++ cpp-httplib-0.16.2/httplib.h 2024-08-09 19:08:48.730886021 +0200
-@@ -274,7 +274,7 @@
- #error Please use OpenSSL or a current version of BoringSSL
- #endif
- #define SSL_get1_peer_certificate SSL_get_peer_certificate
--#elif OPENSSL_VERSION_NUMBER < 0x30000000L
-+#elif OPENSSL_VERSION_NUMBER < 0x30000000L && !defined(LIBRESSL_VERSION_NUMBER)
- #error Sorry, OpenSSL versions prior to 3.0.0 are not supported
- #endif
-
-@@ -732,7 +732,7 @@
- fn();
- }
-
--#if defined(CPPHTTPLIB_OPENSSL_SUPPORT) && !defined(OPENSSL_IS_BORINGSSL)
-+#if defined(CPPHTTPLIB_OPENSSL_SUPPORT) && !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER)
- OPENSSL_thread_stop();
- #endif
- }
-@@ -9108,7 +9108,7 @@
- return false;
- }
-
-- auto server_cert = SSL_get1_peer_certificate(ssl2);
-+ auto server_cert = SSL_get_peer_certificate(ssl2);
-
- if (server_cert == nullptr) {
- error = Error::SSLServerVerification;