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 BEADE1382C5 for ; Wed, 10 Jun 2020 12:04:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C881E0876; Wed, 10 Jun 2020 12:04:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E4424E0876 for ; Wed, 10 Jun 2020 12:04:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7D46134F1FA for ; Wed, 10 Jun 2020 12:04:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 347D328F for ; Wed, 10 Jun 2020 12:04:03 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1591790641.f60f3b0b31d7dfd1f67fcd8de7c35139ed1d83ad.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/sngrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/sngrep/metadata.xml net-analyzer/sngrep/sngrep-1.4.7.ebuild X-VCS-Directories: net-analyzer/sngrep/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: f60f3b0b31d7dfd1f67fcd8de7c35139ed1d83ad X-VCS-Branch: master Date: Wed, 10 Jun 2020 12:04:03 +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: 123a54a3-ccab-4506-95fe-4b578168f6f8 X-Archives-Hash: a3b5ee2a0b4a376cf12d5563b86bda84 commit: f60f3b0b31d7dfd1f67fcd8de7c35139ed1d83ad Author: Jeroen Roovers gentoo org> AuthorDate: Wed Jun 10 12:02:50 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Jun 10 12:04:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f60f3b0b net-analyzer/sngrep: Drop IUSE=logo I assumed without checking that the logo would be used in the installed code, but it turns out that it is only used to display the logo during the configure phase. Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/sngrep/metadata.xml | 1 - net-analyzer/sngrep/sngrep-1.4.7.ebuild | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/net-analyzer/sngrep/metadata.xml b/net-analyzer/sngrep/metadata.xml index b6a99fc054d..eeb043ad62b 100644 --- a/net-analyzer/sngrep/metadata.xml +++ b/net-analyzer/sngrep/metadata.xml @@ -7,7 +7,6 @@ Enable EEP packet send/receive support Use net-libs/gnutls to parse captured TLS packets -Enable Irontec Logo from Summary menu Use dev-libs/openssl to parse captured TLS packets diff --git a/net-analyzer/sngrep/sngrep-1.4.7.ebuild b/net-analyzer/sngrep/sngrep-1.4.7.ebuild index 6782684125c..f021e73049e 100644 --- a/net-analyzer/sngrep/sngrep-1.4.7.ebuild +++ b/net-analyzer/sngrep/sngrep-1.4.7.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/irontec/sngrep/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="eep gnutls ipv6 logo openssl pcre unicode" +IUSE="eep gnutls ipv6 openssl pcre unicode" REQUIRED_USE=" gnutls? ( !openssl ) " @@ -37,7 +37,6 @@ src_configure() { econf \ $(use_enable eep) \ $(use_enable ipv6) \ - $(use_enable logo) \ $(use_enable unicode) \ $(use_with gnutls) \ $(use_with openssl) \