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/psmt2-frontend/
Date: Mon, 27 Dec 2021 23:47:59
Message-Id: 1640648851.db8c4170efe4daa96a19aad54a72836f04a463b5.xgqt@gentoo
1 commit: db8c4170efe4daa96a19aad54a72836f04a463b5
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 27 23:40:12 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 27 23:47:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db8c4170
7
8 sci-mathematics/psmt2-frontend: bump to 0.4.0
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/psmt2-frontend/Manifest | 1 +
14 .../psmt2-frontend/psmt2-frontend-0.4.0.ebuild | 23 ++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/sci-mathematics/psmt2-frontend/Manifest b/sci-mathematics/psmt2-frontend/Manifest
18 index c13d8559bb56..bed990526f44 100644
19 --- a/sci-mathematics/psmt2-frontend/Manifest
20 +++ b/sci-mathematics/psmt2-frontend/Manifest
21 @@ -1 +1,2 @@
22 DIST psmt2-frontend-0.2.tar.gz 26976 BLAKE2B 2b45ceb8d824f5b11455ad0026064b6329b6c6e6173c091b36dc42e8c1dd36924d12d9296db3dcfe748a84fdc37a1a530f3ef485bec904c19a0e6aa8034149f9 SHA512 c29802f4265a1cbdb05ee9154ce2c156136af258bc7283dd0fb1d1b2ce162b671553cab96484036d898e3ff7c26ab133f5c2e1ca88e9e48660b2faa139fd1f41
23 +DIST psmt2-frontend-0.4.0.tar.gz 70801 BLAKE2B 337b3a87e9bff1c48eec9be4b1b50539c0114cdcdba1ac9c64ee180f73451b6a500f4a970a4f557dc3b886c5932bb72bb0b1b5e130a833b05502954c5279e702 SHA512 68b883f4bc4e0e39162807ffae251782871f372850c469889ea5ba5cf59388e363b1de5bc8087ad8624a1466b52611d0e41d78c6c3e6ac8af7c6e6e5c35630c5
24
25 diff --git a/sci-mathematics/psmt2-frontend/psmt2-frontend-0.4.0.ebuild b/sci-mathematics/psmt2-frontend/psmt2-frontend-0.4.0.ebuild
26 new file mode 100644
27 index 000000000000..4ff6c1c91532
28 --- /dev/null
29 +++ b/sci-mathematics/psmt2-frontend/psmt2-frontend-0.4.0.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 2019-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit dune
37 +
38 +DESCRIPTION="Library to parse and type-check an extension of the SMT-LIB 2 standard"
39 +HOMEPAGE="https://github.com/OCamlPro-Coquera/psmt2-frontend"
40 +SRC_URI="https://github.com/OCamlPro-Coquera/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="+ocamlopt test"
46 +RESTRICT="!test? ( test )"
47 +
48 +RDEPEND=">=dev-ml/menhir-20181006:="
49 +DEPEND="${RDEPEND}"
50 +BDEPEND="test? (
51 + dev-ml/ppx_expect
52 + dev-ml/ppx_inline_test
53 +)"