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 786481382C5 for ; Wed, 9 Jun 2021 18:17:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAE3FE07F1; Wed, 9 Jun 2021 18:17:53 +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 9DF8EE07F1 for ; Wed, 9 Jun 2021 18:17:53 +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 89CFA340BD3 for ; Wed, 9 Jun 2021 18:17:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41A7C27E for ; Wed, 9 Jun 2021 18:17:51 +0000 (UTC) From: "Mike Frysinger" 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 Frysinger" Message-ID: <1623262612.b27d5eb65a80d8714be1fe0c5c8fa7a8114f66ca.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/makeself/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/makeself/makeself-2.4.4.ebuild X-VCS-Directories: app-arch/makeself/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: b27d5eb65a80d8714be1fe0c5c8fa7a8114f66ca X-VCS-Branch: master Date: Wed, 9 Jun 2021 18:17:51 +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: d16bb660-eb95-49ca-8deb-e42496537851 X-Archives-Hash: 22cc05096099c41913dcf9055ac73d87 commit: b27d5eb65a80d8714be1fe0c5c8fa7a8114f66ca Author: Mike Frysinger chromium org> AuthorDate: Wed Jun 9 18:16:52 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Jun 9 18:16:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b27d5eb6 app-arch/makeself: disable tests I meant to disable these but left out the restrict after testing. Closes: https://bugs.gentoo.org/794448 Signed-off-by: Mike Frysinger gentoo.org> app-arch/makeself/makeself-2.4.4.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app-arch/makeself/makeself-2.4.4.ebuild b/app-arch/makeself/makeself-2.4.4.ebuild index 55fe1ca8929..17f5cf26fdd 100644 --- a/app-arch/makeself/makeself-2.4.4.ebuild +++ b/app-arch/makeself/makeself-2.4.4.ebuild @@ -1,10 +1,6 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# NB: The test framework requires bashunit (which isn't a big deal), but the -# tests themselves are not of great quality. You should avoid running them -# yourself as they like to run commands like gpg against your own ~/ settings. - EAPI="7" inherit optfeature @@ -17,6 +13,11 @@ LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux" +# NB: The test framework requires bashunit (which isn't a big deal), but the +# tests themselves are not of great quality. You should avoid running them +# yourself as they like to run commands like gpg against your own ~/ settings. +RESTRICT="test" + S="${WORKDIR}/${PN}-release-${PV}" src_compile() { :; }