Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/stp/
Date: Sun, 06 Nov 2022 20:11:04
Message-Id: 1667765454.d1f7a354dc856bde7a58abfe3d4c5f2cff71ccfa.xgqt@gentoo
1 commit: d1f7a354dc856bde7a58abfe3d4c5f2cff71ccfa
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 20:09:52 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 20:10:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1f7a354
7
8 sci-mathematics/stp: do not run C API tests
9
10 Closes: https://bugs.gentoo.org/879325
11 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
12
13 sci-mathematics/stp/stp-2.3.3-r2.ebuild | 4 +++-
14 1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/sci-mathematics/stp/stp-2.3.3-r2.ebuild b/sci-mathematics/stp/stp-2.3.3-r2.ebuild
17 index e59e4388c2c3..5f29dc351697 100644
18 --- a/sci-mathematics/stp/stp-2.3.3-r2.ebuild
19 +++ b/sci-mathematics/stp/stp-2.3.3-r2.ebuild
20 @@ -11,7 +11,8 @@ PYTHON_COMPAT=( python3_{8,9,10} )
21 inherit flag-o-matic python-single-r1 cmake
22
23 DESCRIPTION="Simple Theorem Prover, an efficient SMT solver for bitvectors"
24 -HOMEPAGE="https://stp.github.io/"
25 +HOMEPAGE="https://stp.github.io/
26 + https://github.com/stp/stp/"
27 SRC_URI="https://github.com/stp/stp/archive/${PV}.tar.gz -> ${P}.tar.gz
28 test? (
29 https://github.com/stp/OutputCheck/archive/${OC_H}.tar.gz -> ${P}_OutputCheck.tar.gz
30 @@ -82,6 +83,7 @@ src_configure() {
31 fi
32
33 local mycmakeargs=(
34 + -DTEST_C_API=OFF # C API test fail
35 -DNOCRYPTOMINISAT=$(usex cryptominisat 'OFF' 'ON') # double negation
36 -DENABLE_PYTHON_INTERFACE=$(usex python)
37 -DENABLE_ASSERTIONS=$(usex test)