dev-ml/omd: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-04-03 00:54:04 +02:00
parent a8683380b1
commit c41645badf
3 changed files with 35 additions and 0 deletions

1
dev-ml/omd/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST omd-2.0.0.alpha2.tbz 85168 BLAKE2B 97f187563eead6e0bab11865e05302d86d3a46abf8605d05088bd085c2a7d25924b9b4da1da3ea6257d34a176a51788c3f8e72d28b57835721969f8181ddba03 SHA512 82c8716774f756071c8c9dbce838309cfc67d2b607b30d9f5add1307fa8330db8951bfd5406aef1dc3b8902ee67b6d43f76687257927944f118f79be7ea24ff1

11
dev-ml/omd/metadata.xml Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<remote-id type="github">ocaml/omd</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,23 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
MYPV="${PV/_alpha/.alpha}"
DESCRIPTION="An easy interface on top of the Jsonm library"
HOMEPAGE="https://github.com/ocaml/omd"
SRC_URI="https://github.com/ocaml/omd/releases/download/${MYPV}/${PN}-${MYPV}.tbz"
S="${WORKDIR}/${PN}-${MYPV}"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt"
DEPEND="
dev-ml/dune-build-info
"
RDEPEND="${DEPEND}"