Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/rttr/
Date: Wed, 17 Apr 2019 12:41:07
Message-Id: 1555504846.1ef8efca144e717de2f921208b3ead7d96523960.kensington@gentoo
1 commit: 1ef8efca144e717de2f921208b3ead7d96523960
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 17 12:40:19 2019 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 17 12:40:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef8efca
7
8 dev-cpp/rttr: fix tests
9
10 Closes: https://bugs.gentoo.org/683476
11 Package-Manager: Portage-2.3.62, Repoman-2.3.12
12 Signed-off-by: Michael Palimaka <kensington <AT> gentoo.org>
13
14 dev-cpp/rttr/rttr-0.9.6.ebuild | 4 +++-
15 1 file changed, 3 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-cpp/rttr/rttr-0.9.6.ebuild b/dev-cpp/rttr/rttr-0.9.6.ebuild
18 index b40e392a3c2..d63d19eafdf 100644
19 --- a/dev-cpp/rttr/rttr-0.9.6.ebuild
20 +++ b/dev-cpp/rttr/rttr-0.9.6.ebuild
21 @@ -14,6 +14,8 @@ SLOT="0"
22 KEYWORDS="~amd64 ~x86"
23 IUSE=""
24
25 +RESTICT="test"
26 +
27 PATCHES=(
28 "${FILESDIR}/${P}-cmake.patch"
29 "${FILESDIR}/${P}-permission.patch"
30 @@ -30,5 +32,5 @@ src_configure() {
31 }
32
33 src_test() {
34 - "${S}"/bin/unit_tests || die
35 + "${BUILD_DIR}"/bin/unit_tests || die
36 }