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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B1EB2158020 for ; Sat, 22 Oct 2022 14:08:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDB2CE077F; Sat, 22 Oct 2022 14:08:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 B3B23E077F for ; Sat, 22 Oct 2022 14:08:00 +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 8CB703410B2 for ; Sat, 22 Oct 2022 14:07:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB936617 for ; Sat, 22 Oct 2022 14:07:57 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1666447623.cbb6630013cd46001a051cb8e6cc5975dba8192c.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtirpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libtirpc/libtirpc-1.3.3.ebuild X-VCS-Directories: net-libs/libtirpc/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: cbb6630013cd46001a051cb8e6cc5975dba8192c X-VCS-Branch: master Date: Sat, 22 Oct 2022 14:07:57 +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: 4f91e217-825c-4d7e-ac64-52dc4fd6adfd X-Archives-Hash: b9065db02328df60cd5dc92c9bf6e1e7 commit: cbb6630013cd46001a051cb8e6cc5975dba8192c Author: Mike Gilbert gentoo org> AuthorDate: Sat Oct 22 14:07:03 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Oct 22 14:07:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb66300 net-libs/libtirpc: drop 'ipv6' USE flag configure defaults it to enabled. Signed-off-by: Mike Gilbert gentoo.org> net-libs/libtirpc/libtirpc-1.3.3.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net-libs/libtirpc/libtirpc-1.3.3.ebuild b/net-libs/libtirpc/libtirpc-1.3.3.ebuild index 7f9efd7d9811..46f43a6d7b8c 100644 --- a/net-libs/libtirpc/libtirpc-1.3.3.ebuild +++ b/net-libs/libtirpc/libtirpc-1.3.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 LICENSE="BSD BSD-2 BSD-4 LGPL-2.1+" SLOT="0/3" # subslot matches SONAME major KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="ipv6 kerberos static-libs" +IUSE="kerberos static-libs" RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )" DEPEND="${RDEPEND} @@ -34,7 +34,6 @@ src_prepare() { multilib_src_configure() { local myeconfargs=( - $(use_enable ipv6) $(use_enable kerberos gssapi) $(use_enable static-libs static) )