Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cereal/
Date: Sun, 03 Apr 2022 10:45:21
Message-Id: 1648982681.f8438748836c1f37a0d053ed7d3a0e2430d9e7bc.matthew@gentoo
1 commit: f8438748836c1f37a0d053ed7d3a0e2430d9e7bc
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 3 10:29:06 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 10:44:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8438748
7
8 dev-libs/cereal: conditionally skip tests
9
10 Closes: https://bugs.gentoo.org/836688
11 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
12
13 dev-libs/cereal/cereal-1.3.2-r2.ebuild | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-libs/cereal/cereal-1.3.2-r2.ebuild b/dev-libs/cereal/cereal-1.3.2-r2.ebuild
17 index 6082cdb4afaa..da3bf9c69469 100644
18 --- a/dev-libs/cereal/cereal-1.3.2-r2.ebuild
19 +++ b/dev-libs/cereal/cereal-1.3.2-r2.ebuild
20 @@ -42,10 +42,10 @@ src_configure() {
21 -DSKIP_PERFORMANCE_COMPARISON=ON
22
23 -DWITH_WERROR=OFF
24 -
25 - # TODO: Enable if multilib?
26 - -DSKIP_PORTABILITY_TEST=ON
27 )
28
29 + # TODO: Enable if multilib?
30 + use test && mycmakeargs+=( -DSKIP_PORTABILITY_TEST=ON )
31 +
32 cmake_src_configure
33 }