diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2021-01-13 20:05:49 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2021-01-13 20:05:49 +0100 |
commit | 3532cae28cdc062da8ff9b76a88db6718fdcbd57 (patch) | |
tree | 774fd3758bf5abf44314cc3caa59512b71cd38c4 /dev-ml/jingoo | |
parent | dev-python/cx_Freeze: Stabilize 6.4.2 amd64, #765277 (diff) | |
download | gentoo-3532cae28cdc062da8ff9b76a88db6718fdcbd57.tar.gz gentoo-3532cae28cdc062da8ff9b76a88db6718fdcbd57.tar.bz2 gentoo-3532cae28cdc062da8ff9b76a88db6718fdcbd57.zip |
dev-ml/jingoo: Add dependency
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/jingoo')
-rw-r--r-- | dev-ml/jingoo/jingoo-1.4.2.ebuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/dev-ml/jingoo/jingoo-1.4.2.ebuild b/dev-ml/jingoo/jingoo-1.4.2.ebuild index 8243636f76ae..4164b805b6a0 100644 --- a/dev-ml/jingoo/jingoo-1.4.2.ebuild +++ b/dev-ml/jingoo/jingoo-1.4.2.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit dune + DESCRIPTION="OCaml template engine almost compatible with Jinja2." HOMEPAGE="https://github.com/tategakibunko/jingoo" SRC_URI="https://github.com/tategakibunko/${PN}/archive/v${PV}.tar.gz @@ -11,18 +13,13 @@ SRC_URI="https://github.com/tategakibunko/${PN}/archive/v${PV}.tar.gz LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" +IUSE="+ocamlopt test" RESTRICT="!test? ( test )" RDEPEND="dev-ml/ppx_deriving dev-ml/uucp dev-ml/uutf + dev-ml/re dev-ml/menhir" DEPEND="${RDEPEND} test? ( dev-ml/ounit )" -BDEPEND="dev-ml/dune" - -src_install() { - default - rm -r "${D}"/usr/doc || die -} |