From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 67C1513835A for ; Sat, 1 May 2021 18:07:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B514E0D14; Sat, 1 May 2021 18:07:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84A0AE0D14 for ; Sat, 1 May 2021 18:07:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC94433DDA5 for ; Sat, 1 May 2021 18:07:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C2B3733 for ; Sat, 1 May 2021 18:07:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1619892382.03f6ff8bebd9895d930e8beabdbf5700a80e8090.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ettercap/, net-analyzer/ettercap/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ettercap/ettercap-0.8.3.1.ebuild net-analyzer/ettercap/files/ettercap-0.8.3.1-libressl.patch X-VCS-Directories: net-analyzer/ettercap/files/ net-analyzer/ettercap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 03f6ff8bebd9895d930e8beabdbf5700a80e8090 X-VCS-Branch: master Date: Sat, 1 May 2021 18:07:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2adc0745-835a-435f-8ff8-a49f574353d5 X-Archives-Hash: 14ab405d2e8a9e20026c5ac122568edc commit: 03f6ff8bebd9895d930e8beabdbf5700a80e8090 Author: Sam James gentoo org> AuthorDate: Sat May 1 17:29:20 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 1 18:06:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03f6ff8b net-analyzer/ettercap: drop obsolete LibreSSL patch Signed-off-by: Sam James gentoo.org> net-analyzer/ettercap/ettercap-0.8.3.1.ebuild | 2 -- .../ettercap/files/ettercap-0.8.3.1-libressl.patch | 37 ---------------------- 2 files changed, 39 deletions(-) diff --git a/net-analyzer/ettercap/ettercap-0.8.3.1.ebuild b/net-analyzer/ettercap/ettercap-0.8.3.1.ebuild index 069c391c021..05db91778f2 100644 --- a/net-analyzer/ettercap/ettercap-0.8.3.1.ebuild +++ b/net-analyzer/ettercap/ettercap-0.8.3.1.ebuild @@ -47,8 +47,6 @@ DEPEND="${RDEPEND} sys-devel/flex virtual/yacc" -PATCHES=( "${FILESDIR}"/${P}-libressl.patch ) - src_prepare() { sed -i "s:Release:Release Gentoo:" CMakeLists.txt || die cmake_src_prepare diff --git a/net-analyzer/ettercap/files/ettercap-0.8.3.1-libressl.patch b/net-analyzer/ettercap/files/ettercap-0.8.3.1-libressl.patch deleted file mode 100644 index ed5a49ce436..00000000000 --- a/net-analyzer/ettercap/files/ettercap-0.8.3.1-libressl.patch +++ /dev/null @@ -1,37 +0,0 @@ -From b2f7634c9dbc0ef68640f0571787d92300e9f9f9 Mon Sep 17 00:00:00 2001 -From: Stefan Strogin -Date: Sat, 15 Aug 2020 07:18:31 +0300 -Subject: [PATCH] ec_sslwrap: fix compilation with LibreSSL - -Disable taking over SNI extension from ClientHello and SSL configuration -operations until LibreSSL supports the required API. - -Fixes: https://github.com/Ettercap/ettercap/issues/1068 -Upstream-Status: Submitted -[https://github.com/Ettercap/ettercap/pull/1069] -Signed-off-by: Stefan Strogin ---- - src/ec_sslwrap.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/ec_sslwrap.c b/src/ec_sslwrap.c -index b9f26a14..1e4c24fc 100644 ---- a/src/ec_sslwrap.c -+++ b/src/ec_sslwrap.c -@@ -71,11 +71,11 @@ - #define TLS_server_method SSLv23_server_method - #endif - --#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) -+#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER) - #define HAVE_OPENSSL_1_1_0 - #endif - --#if (OPENSSL_VERSION_NUMBER >= 0x10101000L) -+#if (OPENSSL_VERSION_NUMBER >= 0x10101000L) && !defined(LIBRESSL_VERSION_NUMBER) - #define HAVE_OPENSSL_1_1_1 - #endif - --- -2.28.0 -