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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 13781158042 for ; Wed, 23 Oct 2024 06:34:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C64BE0992; Wed, 23 Oct 2024 06:34:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07F88E0992 for ; Wed, 23 Oct 2024 06:34:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F13034131D for ; Wed, 23 Oct 2024 06:34:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E98D11DF for ; Wed, 23 Oct 2024 06:34:43 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1729665077.b3eeeddb3a26c59e04c2ae1cf397830c35702107.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rdesktop/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/rdesktop/rdesktop-1.9.0-r4.ebuild X-VCS-Directories: net-misc/rdesktop/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b3eeeddb3a26c59e04c2ae1cf397830c35702107 X-VCS-Branch: master Date: Wed, 23 Oct 2024 06:34:43 +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: 3323e5f7-c971-42c6-9b92-b88668e2f5f2 X-Archives-Hash: 345abb5ca1d98e43cf532aae416b3ec2 commit: b3eeeddb3a26c59e04c2ae1cf397830c35702107 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Oct 23 06:27:35 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Wed Oct 23 06:31:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3eeeddb net-misc/rdesktop: remove IUSE="ipv6" Has no extra dependencies, and no real gain from disabling it (the code impact is mostly trivial, only in `parse_server_and_port`). This is also in accordance to QA policy PG-0301 [1]. [1] https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0301 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/rdesktop/rdesktop-1.9.0-r4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/rdesktop/rdesktop-1.9.0-r4.ebuild b/net-misc/rdesktop/rdesktop-1.9.0-r4.ebuild index 8f0b95c85281..ce6ede3e54c1 100644 --- a/net-misc/rdesktop/rdesktop-1.9.0-r4.ebuild +++ b/net-misc/rdesktop/rdesktop-1.9.0-r4.ebuild @@ -13,7 +13,7 @@ S=${WORKDIR}/${PN}-${PV/_/-} LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-solaris" -IUSE="alsa ao ipv6 kerberos oss pcsc-lite pulseaudio xrandr" +IUSE="alsa ao kerberos oss pcsc-lite pulseaudio xrandr" RDEPEND=" dev-libs/nettle:0= @@ -82,7 +82,7 @@ src_configure() { fi econf \ - $(use_with ipv6) \ + --with-ipv6 \ $(use_with xrandr) \ $(use_enable kerberos credssp) \ $(use_enable pcsc-lite smartcard) \