Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/
Date: Sun, 01 Aug 2021 17:59:57
Message-Id: 1627840783.58c8d995cca50558421f542e83f5b53452139bcf.dilfridge@gentoo
1 commit: 58c8d995cca50558421f542e83f5b53452139bcf
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 1 17:59:22 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 1 17:59:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58c8d995
7
8 sys-devel/autoconf: Enable running the test suite!
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 sys-devel/autoconf/autoconf-2.71.ebuild | 4 ++++
14 sys-devel/autoconf/autoconf-9999.ebuild | 6 +++++-
15 2 files changed, 9 insertions(+), 1 deletion(-)
16
17 diff --git a/sys-devel/autoconf/autoconf-2.71.ebuild b/sys-devel/autoconf/autoconf-2.71.ebuild
18 index 86e89e45086..3405416d23c 100644
19 --- a/sys-devel/autoconf/autoconf-2.71.ebuild
20 +++ b/sys-devel/autoconf/autoconf-2.71.ebuild
21 @@ -69,3 +69,7 @@ src_install() {
22 "${ED}"/usr/share/autoconf-*/build-aux/${f} || die
23 done
24 }
25 +
26 +src_test() {
27 + emake check
28 +}
29
30 diff --git a/sys-devel/autoconf/autoconf-9999.ebuild b/sys-devel/autoconf/autoconf-9999.ebuild
31 index f3b786e014a..d1da2e2e630 100644
32 --- a/sys-devel/autoconf/autoconf-9999.ebuild
33 +++ b/sys-devel/autoconf/autoconf-9999.ebuild
34 @@ -1,4 +1,4 @@
35 -# Copyright 1999-2020 Gentoo Authors
36 +# Copyright 1999-2021 Gentoo Authors
37 # Distributed under the terms of the GNU General Public License v2
38
39 EAPI=7
40 @@ -52,3 +52,7 @@ src_install() {
41 "${ED}"/usr/share/autoconf-*/build-aux/${f} || die
42 done
43 }
44 +
45 +src_test() {
46 + emake check
47 +}