Diff jingoo-1.4.2 with a jingoo-1.4.4
/usr/portage/dev-ml/jingoo/jingoo-1.4.4.ebuild 2023-10-09 14:52:29.788368358 +0300 | ||
---|---|---|
1 |
# Copyright 2021-2022 Gentoo Authors |
|
1 |
# Copyright 2021-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 | 6 |
inherit dune |
7 | 7 | |
8 | 8 |
DESCRIPTION="OCaml template engine almost compatible with Jinja2" |
9 |
HOMEPAGE="https://github.com/tategakibunko/jingoo" |
|
9 |
HOMEPAGE="https://github.com/tategakibunko/jingoo/" |
|
10 | 10 |
SRC_URI="https://github.com/tategakibunko/${PN}/archive/v${PV}.tar.gz |
11 | 11 |
-> ${P}.tar.gz" |
12 | 12 | |
... | ... | |
16 | 16 |
IUSE="+ocamlopt test" |
17 | 17 |
RESTRICT="!test? ( test )" |
18 | 18 | |
19 |
RDEPEND="dev-ml/ppx_deriving:= |
|
19 |
RDEPEND=" |
|
20 |
dev-ml/menhir:= |
|
21 |
dev-ml/ocaml-migrate-parsetree:= |
|
22 |
dev-ml/ppx_deriving:= |
|
20 | 23 |
dev-ml/ppxlib:= |
24 |
dev-ml/re:= |
|
21 | 25 |
dev-ml/uucp:= |
22 | 26 |
dev-ml/uutf:= |
23 |
dev-ml/re:= |
|
24 |
dev-ml/ocaml-migrate-parsetree:= |
|
25 |
dev-ml/menhir:=" |
|
26 |
DEPEND="${RDEPEND} |
|
27 |
test? ( dev-ml/ounit2 )" |
|
28 | ||
29 |
src_prepare() { |
|
30 |
default |
|
31 | ||
32 |
# Port to dev-ml/ounit2 |
|
33 |
sed -i -e 's/oUnit/ounit2/' tests/dune.in || die |
|
34 |
} |
|
27 |
" |
|
28 |
DEPEND="${RDEPEND}" |
|
29 |
BDEPEND="test? ( dev-ml/ounit2 )" |