dev-ml/ppxlib: add 0.36.0

Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone
2025-07-06 20:13:07 +02:00
parent 863d3e7125
commit 63b4363d63
2 changed files with 44 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST ppxlib-0.22.2.tar.gz 202895 BLAKE2B 41d2c2e698846e5dfeb4158966b65dd29b25364
DIST ppxlib-0.24.0.tar.gz 390297 BLAKE2B 7d8972b766cc8104a4d43aebc79e927e51cba114ad678837bfa1b8f009e2437df948c6cd3461db58ef247145e629d3bb11dff58dc5feadefce8152c77b056dfa SHA512 2f6a94c90fd17cea00f3294fde5742637d4758b9f43a021d667f2b09be326954efe22bb188ccf6a7205338ffc75fe096cbe2a075b125e3ced9f829a06ad2f496
DIST ppxlib-0.30.0.tar.gz 573753 BLAKE2B f16ba3b01288a535ebf7842d8b9379061cc86cb1bad7841540855508d7d9c10c27e63456d68a16a2408a6eee5cffe82c3c0202ad7894b9fabad8194136762e30 SHA512 a7310c5c0fe76c72984bc6a27648bf12ac83222c029b91a7abf8be13f1950f84de4b24e28f2bb50a6a65c16c9a6bb8c4d3d0596c4b5f7f5bedba87f8ca55a810
DIST ppxlib-0.33.0.tar.gz 638136 BLAKE2B a4b8b82912d6ea83104be05bc8784b4666c3749e906b4c52406f90924afafd2358bfbf2c6d715c02b6c55a539264c8f9655c1c44b7dfd239f63e6012bfa497cb SHA512 8437ed1e7616deb371b50a4ca11cb3d50a294a722b64d7732808321d312aa212d9433bedc4a66ea3a4ebbfeed1ab6f739470b99a01991ac56279cea151b2ded8
DIST ppxlib-0.36.0.tar.gz 603198 BLAKE2B ed63e4b7ed077974015ddd237de1ee97b32763f4e3d48d46773b9ed02e3786e846919fae9d78bf45cf7eacb588faa39d2c8b115f2f743dfa716f7804ba45c0a0 SHA512 293d17c1a65f821f95f592619a8b868ff85316c8a0540c9b75e7b2033c93711feb339522d042c93c2b78d87449a376bc8810a46d5a218b1c41df9e7fd56d893d

View File

@@ -0,0 +1,43 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
# Note that new "major" versions may change which OCaml version they support
# See:
# https://github.com/ocaml-ppx/ppxlib/issues/243
# https://github.com/ocaml-ppx/ppxlib/issues/232
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 ~arm64 ~ppc ~ppc64"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
# Jane Street Minor
JSM=0.17
# It also works with ocaml >= 4 but tests are to be fixed
RDEPEND="
>=dev-lang/ocaml-5:=
>=dev-ml/ocaml-compiler-libs-0.17:=[ocamlopt?]
dev-ml/ppx_derivers:=[ocamlopt?]
dev-ml/sexplib0:=[ocamlopt?]
dev-ml/stdlib-shims:=[ocamlopt?]
"
DEPEND="${RDEPEND}"
BDEPEND="
>=dev-ml/dune-3.11
test? (
=dev-ml/base-${JSM}*:=[ocamlopt?]
dev-ml/cinaps
>=dev-ml/findlib-1.9.6[ocamlopt?]
dev-ml/re
)
"