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 B38D9139085 for ; Sun, 29 Jan 2017 21:26:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E28621456C; Sun, 29 Jan 2017 21:26:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C06021456C for ; Sun, 29 Jan 2017 21:26:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 583C833BF1B for ; Sun, 29 Jan 2017 21:26:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AFF573A32 for ; Sun, 29 Jan 2017 21:26:34 +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: <1485725179.ab83b5423e93976db30c31e680691a95934cde9a.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: ab83b5423e93976db30c31e680691a95934cde9a X-VCS-Branch: master Date: Sun, 29 Jan 2017 21:26:34 +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-Archives-Salt: c351b959-6903-4454-b719-2b401d36bb83 X-Archives-Hash: 124341024042405f99ee2c1360b47311 commit: ab83b5423e93976db30c31e680691a95934cde9a Author: Matt Turner gentoo org> AuthorDate: Sun Jan 29 20:32:15 2017 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Jan 29 21:26:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab83b542 x11-apps/xauth: Add live ebuild. x11-apps/xauth/xauth-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/x11-apps/xauth/xauth-9999.ebuild b/x11-apps/xauth/xauth-9999.ebuild new file mode 100644 index 00000000..4ec4718 --- /dev/null +++ b/x11-apps/xauth/xauth-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools-utils xorg-2 + +DESCRIPTION="X authority file utility" + +KEYWORDS="" +IUSE="ipv6" + +RDEPEND="x11-libs/libX11 + x11-libs/libXau + x11-libs/libXext + x11-libs/libXmu" +DEPEND="${RDEPEND}" + +# Tests dependend on dev-util/cmdtest awaiting keywording, bug #511202. +# test? ( dev-util/cmdtest ) + +src_configure() { + 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 +}