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 10003138334 for ; Fri, 12 Jul 2019 06:02:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42A5EE077D; Fri, 12 Jul 2019 06:01:59 +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 20629E077D for ; Fri, 12 Jul 2019 06:01:58 +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 6F2C53477AF for ; Fri, 12 Jul 2019 06:01:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAD2E66B for ; Fri, 12 Jul 2019 06:01:55 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1562911162.50a546853b9909284eb7788284507b232205050a.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/xauth/xauth-9999.ebuild X-VCS-Directories: x11-apps/xauth/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 50a546853b9909284eb7788284507b232205050a X-VCS-Branch: master Date: Fri, 12 Jul 2019 06:01:55 +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: 1def830b-7e70-4429-966a-c54e985796ee X-Archives-Hash: 28878daa2f49fcdd71c14a6b1e2d509b commit: 50a546853b9909284eb7788284507b232205050a Author: Matt Turner gentoo org> AuthorDate: Fri Jul 12 05:57:58 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jul 12 05:59:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50a54685 x11-apps/xauth: Port to EAPI=7 Signed-off-by: Matt Turner gentoo.org> x11-apps/xauth/xauth-9999.ebuild | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/x11-apps/xauth/xauth-9999.ebuild b/x11-apps/xauth/xauth-9999.ebuild index aa5cc700c66..057d3ed2a71 100644 --- a/x11-apps/xauth/xauth-9999.ebuild +++ b/x11-apps/xauth/xauth-9999.ebuild @@ -1,13 +1,17 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit autotools-utils xorg-2 +inherit xorg-3 -DESCRIPTION="X authority file utility" +if [[ ${PV} == 9999* ]]; then + SRC_URI="" +else + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux" +fi -KEYWORDS="" +DESCRIPTION="X authority file utility" IUSE="ipv6 test" RDEPEND="x11-libs/libX11 @@ -15,17 +19,16 @@ RDEPEND="x11-libs/libX11 x11-libs/libXext x11-libs/libXmu" DEPEND="${RDEPEND} - test? ( dev-util/cmdtest )" + x11-base/xorg-proto" +BDEPEND="test? ( dev-util/cmdtest )" -src_configure() { +pkg_setup() { XORG_CONFIGURE_OPTIONS=( $(use_enable ipv6) ) - xorg-2_src_configure } src_test() { - # Address sandbox failure, bug #527574 addwrite /proc/self/comm - autotools-utils_src_test + emake check }