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 6B17E158094 for ; Thu, 29 Sep 2022 08:45:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C14AE08A8; Thu, 29 Sep 2022 08:45:01 +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 EF2CAE08A8 for ; Thu, 29 Sep 2022 08:45: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 D0537341147 for ; Thu, 29 Sep 2022 08:44:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 378F45EE for ; Thu, 29 Sep 2022 08:44:58 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1664441016.e5db6fcb9be32c83b9614457f91ba62e3f7a436f.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/putty/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/putty/putty-9999.ebuild X-VCS-Directories: net-misc/putty/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: e5db6fcb9be32c83b9614457f91ba62e3f7a436f X-VCS-Branch: master Date: Thu, 29 Sep 2022 08:44:58 +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: dc135fd9-d631-4d2c-aaa0-b3e6db58f6d6 X-Archives-Hash: f293ed0d080d19963fda4f80eac8b167 commit: e5db6fcb9be32c83b9614457f91ba62e3f7a436f Author: Matthew Smith gentoo org> AuthorDate: Thu Sep 29 08:43:36 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Thu Sep 29 08:43:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5db6fcb net-misc/putty: update live ebuild * Remove USE=ipv6 * Fix USE=-gssapi build Signed-off-by: Matthew Smith gentoo.org> net-misc/putty/putty-9999.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/net-misc/putty/putty-9999.ebuild b/net-misc/putty/putty-9999.ebuild index be3a4064accf..737dcfe68966 100644 --- a/net-misc/putty/putty-9999.ebuild +++ b/net-misc/putty/putty-9999.ebuild @@ -12,12 +12,12 @@ if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="https://git.tartarus.org/simon/putty.git" else SRC_URI+=" https://the.earth.li/~sgtatham/${PN}/${PV}/${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + KEYWORDS="~alpha amd64 ~arm64 ~hppa ppc ppc64 sparc x86" fi LICENSE="MIT" SLOT="0" -IUSE="debug doc +gtk gtk2 ipv6 gssapi" +IUSE="debug doc +gtk gtk2 gssapi" RDEPEND=" !net-misc/pssh @@ -44,6 +44,11 @@ REQUIRED_USE=" gtk2? ( gtk ) " +PATCHES=( + # Bug #873355 + "${FILESDIR}"/putty-0.77-nogssapi.patch +) + src_unpack() { [[ ${PV} == *9999 ]] && git-r3_src_unpack default @@ -55,7 +60,7 @@ src_configure() { -DPUTTY_DEBUG="$(usex debug)" -DPUTTY_GSSAPI="$(usex gssapi DYNAMIC OFF)" -DPUTTY_GTK_VERSION=$(usex gtk $(usex gtk2 2 3 ) '') - -DPUTTY_IPV6="$(usex ipv6)" + -DPUTTY_IPV6=yes ) cmake_src_configure }