commit: c8eb20ed7fd5de5d05c615f0d129c980f185918d Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz> AuthorDate: Thu Oct 9 19:14:07 2025 +0000 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me> CommitDate: Fri Oct 10 14:02:03 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c8eb20ed
dev-ml/ocaml-yaml: new package, add 3.2.0 Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz> dev-ml/ocaml-yaml/Manifest | 1 + dev-ml/ocaml-yaml/metadata.xml | 11 +++++++++++ dev-ml/ocaml-yaml/ocaml-yaml-3.2.0.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-ml/ocaml-yaml/Manifest b/dev-ml/ocaml-yaml/Manifest new file mode 100644 index 0000000000..b40d206b6f --- /dev/null +++ b/dev-ml/ocaml-yaml/Manifest @@ -0,0 +1 @@ +DIST ocaml-yaml-3.2.0.gh.tar.gz 86864 BLAKE2B a573ad7f74e45cb6500d988b08e89f103b8ee24c81060c1668960c5f8fea6fed114819ff55048a51ee62bb37e422b0b50b0ff413e518fa016499e36cc6b9b8ae SHA512 1f72fdfbc591ec80bfb59fe63b389929d082d508e6ecf5278d5b28fde293745423ca4fa5ad4e821c2a18603f5db90c2c37ae21d596c1ce52c737d7984214fdd8 diff --git a/dev-ml/ocaml-yaml/metadata.xml b/dev-ml/ocaml-yaml/metadata.xml new file mode 100644 index 0000000000..66594ee510 --- /dev/null +++ b/dev-ml/ocaml-yaml/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>t...@laumann.xyz</email> + <name>Thomas Bracht Laumann Jespersen</name> + </maintainer> + <upstream> + <remote-id type="github">avsm/ocaml-yaml</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-ml/ocaml-yaml/ocaml-yaml-3.2.0.ebuild b/dev-ml/ocaml-yaml/ocaml-yaml-3.2.0.ebuild new file mode 100644 index 0000000000..e28432e9af --- /dev/null +++ b/dev-ml/ocaml-yaml/ocaml-yaml-3.2.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DUNE_PKG_NAME="yaml" +inherit dune + +DESCRIPTION="Parse and generate YAML 1.1/1.2 files" +HOMEPAGE="https://github.com/avsm/ocaml-yaml" +SRC_URI="https://github.com/avsm/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-ml/ocaml-ctypes-0.14.0:=[ocamlopt?] + dev-ml/bos + dev-ml/sexplib:=[ocamlopt?] + dev-ml/ppx_sexp_conv:=[ocamlopt?] + >=dev-ml/dune-2.0 + >=dev-lang/ocaml-4.13.0:=[ocamlopt?] +" +DEPEND="${RDEPEND}"