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/verit/
Date: Fri, 24 Dec 2021 13:59:17
Message-Id: 1640354349.8062e93446abf76ba3f568e61bbc5f77bf4be2b1.xgqt@gentoo
1 commit: 8062e93446abf76ba3f568e61bbc5f77bf4be2b1
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 24 13:58:57 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 24 13:59:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8062e934
7
8 sci-mathematics/verit: new package; add version 2021.06.2
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
12
13 sci-mathematics/verit/Manifest | 1 +
14 sci-mathematics/verit/metadata.xml | 16 ++++++++++++++++
15 sci-mathematics/verit/verit-2021.06.2.ebuild | 28 ++++++++++++++++++++++++++++
16 3 files changed, 45 insertions(+)
17
18 diff --git a/sci-mathematics/verit/Manifest b/sci-mathematics/verit/Manifest
19 new file mode 100644
20 index 000000000000..608e61b52166
21 --- /dev/null
22 +++ b/sci-mathematics/verit/Manifest
23 @@ -0,0 +1 @@
24 +DIST verit-2021.06.2-rmx.tar.gz 683775 BLAKE2B e7488ef11f37c4312dc3bb7809c8f4a134c70e0cb893a9127235e5bd660e3cf88648d5af598f650d25aed02eb864c171479a570b4e47b96ab2bb5f6aba3e6926 SHA512 4dfdbcf12fefaba13f5540a08a520e15666ca3bb923483b86eac708cf23bd5d8441d9a687487ae38f9bbdbc023beedf3e503800e99622cb71fb086329c047a4d
25
26 diff --git a/sci-mathematics/verit/metadata.xml b/sci-mathematics/verit/metadata.xml
27 new file mode 100644
28 index 000000000000..cd0a6cfe1019
29 --- /dev/null
30 +++ b/sci-mathematics/verit/metadata.xml
31 @@ -0,0 +1,16 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>xgqt@g.o</email>
38 + <name>Maciej Barć</name>
39 + </maintainer>
40 + <longdescription>
41 + veriT is a SMT (Satisfiability Modulo Theories) solver. It is open-source,
42 + proof-producing, and complete for quantifier-free formulas with
43 + uninterpreted functions and linear arithmetic on real numbers and integers.
44 + It also offers good support for quantifiers.
45 + The input format is the SMT-LIB 2.0 language and DIMACS.
46 + </longdescription>
47 +</pkgmetadata>
48
49 diff --git a/sci-mathematics/verit/verit-2021.06.2.ebuild b/sci-mathematics/verit/verit-2021.06.2.ebuild
50 new file mode 100644
51 index 000000000000..c81020679201
52 --- /dev/null
53 +++ b/sci-mathematics/verit/verit-2021.06.2.ebuild
54 @@ -0,0 +1,28 @@
55 +# Copyright 1999-2021 Gentoo Authors
56 +# Distributed under the terms of the GNU General Public License v2
57 +
58 +EAPI=8
59 +
60 +inherit autotools
61 +
62 +DESCRIPTION="An open, trustable and efficient SMT-prover"
63 +HOMEPAGE="https://verit.loria.fr/"
64 +SRC_URI="https://verit.loria.fr/download/${PV}/${P}-rmx.tar.gz"
65 +S="${WORKDIR}/${P}-rmx"
66 +
67 +LICENSE="BSD"
68 +SLOT="0"
69 +KEYWORDS="~amd64 ~x86"
70 +
71 +RDEPEND="dev-libs/gmp:="
72 +DEPEND="${RDEPEND}"
73 +
74 +src_install() {
75 + emake DESTDIR="${D}" install
76 +
77 + mv example examples || die
78 + insinto /usr/share/${PN}
79 + doins -r examples
80 +
81 + einstalldocs
82 +}