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 CD92013835A for ; Mon, 3 Aug 2020 17:08:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA986E0972; Mon, 3 Aug 2020 17:08:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A25CAE096E for ; Mon, 3 Aug 2020 17:08:37 +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 347D334EC91 for ; Mon, 3 Aug 2020 17:08:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A82F7274 for ; Mon, 3 Aug 2020 17:08: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: <1596474414.30c76834821912a8b4497685cd120d35040c75d7.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-1.1.ebuild 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: 30c76834821912a8b4497685cd120d35040c75d7 X-VCS-Branch: master Date: Mon, 3 Aug 2020 17:08: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 243cc50c-179f-41bf-9dc9-3c960e3ef8c0 X-Archives-Hash: d6ce343b352975644a222347bb871119 commit: 30c76834821912a8b4497685cd120d35040c75d7 Author: Matt Turner gentoo org> AuthorDate: Mon Aug 3 17:01:27 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Aug 3 17:06:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c76834 x11-apps/xauth: Drop testing support I never found the testing to be valuable, and it depends on the Python 2.7-only (and dead) cmdtest package which is being removed. Signed-off-by: Matt Turner gentoo.org> x11-apps/xauth/xauth-1.1.ebuild | 10 ++-------- x11-apps/xauth/xauth-9999.ebuild | 10 ++-------- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/x11-apps/xauth/xauth-1.1.ebuild b/x11-apps/xauth/xauth-1.1.ebuild index 838c880146d..bde249ad877 100644 --- a/x11-apps/xauth/xauth-1.1.ebuild +++ b/x11-apps/xauth/xauth-1.1.ebuild @@ -12,8 +12,8 @@ else fi DESCRIPTION="X authority file utility" -IUSE="ipv6 test" -RESTRICT="!test? ( test )" +IUSE="ipv6" +RESTRICT="test" # Depends on dead cmdtest package RDEPEND="x11-libs/libX11 x11-libs/libXau @@ -21,15 +21,9 @@ RDEPEND="x11-libs/libX11 x11-libs/libXmu" DEPEND="${RDEPEND} x11-base/xorg-proto" -BDEPEND="test? ( dev-util/cmdtest )" pkg_setup() { XORG_CONFIGURE_OPTIONS=( $(use_enable ipv6) ) } - -src_test() { - addwrite /proc/self/comm - emake check -} diff --git a/x11-apps/xauth/xauth-9999.ebuild b/x11-apps/xauth/xauth-9999.ebuild index 303aa1063e2..f46da39bc30 100644 --- a/x11-apps/xauth/xauth-9999.ebuild +++ b/x11-apps/xauth/xauth-9999.ebuild @@ -12,8 +12,8 @@ else fi DESCRIPTION="X authority file utility" -IUSE="ipv6 test" -RESTRICT="!test? ( test )" +IUSE="ipv6" +RESTRICT="test" # Depends on dead cmdtest package RDEPEND="x11-libs/libX11 x11-libs/libXau @@ -21,15 +21,9 @@ RDEPEND="x11-libs/libX11 x11-libs/libXmu" DEPEND="${RDEPEND} x11-base/xorg-proto" -BDEPEND="test? ( dev-util/cmdtest )" pkg_setup() { XORG_CONFIGURE_OPTIONS=( $(use_enable ipv6) ) } - -src_test() { - addwrite /proc/self/comm - emake check -}