mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/19435 Signed-off-by: Sam James <sam@gentoo.org>
34 lines
761 B
Bash
34 lines
761 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit dune
|
|
|
|
DESCRIPTION="Base library and tools for ppx rewriters"
|
|
HOMEPAGE="https://github.com/ocaml-ppx/ppxlib"
|
|
SRC_URI="https://github.com/ocaml-ppx/ppxlib/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
|
|
IUSE="+ocamlopt test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="
|
|
>=dev-ml/base-0.11.0:=
|
|
dev-ml/findlib:=
|
|
>=dev-ml/ocaml-compiler-libs-0.11.0:=
|
|
>=dev-ml/ocaml-migrate-parsetree-2.0.0:=
|
|
dev-ml/cinaps:=
|
|
dev-ml/sexplib0:=
|
|
dev-ml/stdlib-shims:=
|
|
>=dev-ml/ppx_derivers-1.2.1:=
|
|
>=dev-ml/stdio-0.11.0:=
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
DEPEND="${DEPEND}
|
|
test? (
|
|
dev-ml/cinaps
|
|
)"
|