Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/makeself/
Date: Wed, 09 Jun 2021 18:17:54
Message-Id: 1623262612.b27d5eb65a80d8714be1fe0c5c8fa7a8114f66ca.vapier@gentoo
1 commit: b27d5eb65a80d8714be1fe0c5c8fa7a8114f66ca
2 Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
3 AuthorDate: Wed Jun 9 18:16:52 2021 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 9 18:16:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b27d5eb6
7
8 app-arch/makeself: disable tests
9
10 I meant to disable these but left out the restrict after testing.
11
12 Closes: https://bugs.gentoo.org/794448
13 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
14
15 app-arch/makeself/makeself-2.4.4.ebuild | 9 +++++----
16 1 file changed, 5 insertions(+), 4 deletions(-)
17
18 diff --git a/app-arch/makeself/makeself-2.4.4.ebuild b/app-arch/makeself/makeself-2.4.4.ebuild
19 index 55fe1ca8929..17f5cf26fdd 100644
20 --- a/app-arch/makeself/makeself-2.4.4.ebuild
21 +++ b/app-arch/makeself/makeself-2.4.4.ebuild
22 @@ -1,10 +1,6 @@
23 # Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -# NB: The test framework requires bashunit (which isn't a big deal), but the
27 -# tests themselves are not of great quality. You should avoid running them
28 -# yourself as they like to run commands like gpg against your own ~/ settings.
29 -
30 EAPI="7"
31
32 inherit optfeature
33 @@ -17,6 +13,11 @@ LICENSE="GPL-2+"
34 SLOT="0"
35 KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux"
36
37 +# NB: The test framework requires bashunit (which isn't a big deal), but the
38 +# tests themselves are not of great quality. You should avoid running them
39 +# yourself as they like to run commands like gpg against your own ~/ settings.
40 +RESTRICT="test"
41 +
42 S="${WORKDIR}/${PN}-release-${PV}"
43
44 src_compile() { :; }