diff options
Diffstat (limited to 'dev-ml/rresult')
-rw-r--r-- | dev-ml/rresult/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/rresult/rresult-0.6.0.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-ml/rresult/Manifest b/dev-ml/rresult/Manifest index 39071840a8c8..077091a077b1 100644 --- a/dev-ml/rresult/Manifest +++ b/dev-ml/rresult/Manifest @@ -1 +1,2 @@ DIST rresult-0.5.0.tbz 9185 BLAKE2B efe8d248aa3d68b13b011dccb98cb04127dfec9d659dfe8619f658b254cfcdca833e125310553dee54ef4be239c308e762d2290386f4fd08a5f2c1835faa9ef1 SHA512 45787b61adb7daedf72e4ff632cf3d4917bccb3e83613dabf93437982887d9a0ed3b6cbefb2b17cb341a825346cb0609286df581c6ff379583dc83672ee25efc +DIST rresult-0.6.0.tbz 7731 BLAKE2B d93b4a3fe54541101d52e768555aa306f87d1c34b57c7eb7a92092051a047586c43dded3be9ef0c84675d935c4a91162a8ff612d540f951f2842cfdf9f709f24 SHA512 66cb7acb525c17dde4e7572fa5a0d925466f8e759b90a12d952ca076d25de49404c962e061557f2255112fbf1d731f8da696acd536cbb9433a4b1d9662095c3a diff --git a/dev-ml/rresult/rresult-0.6.0.ebuild b/dev-ml/rresult/rresult-0.6.0.ebuild new file mode 100644 index 000000000000..0c47040813b3 --- /dev/null +++ b/dev-ml/rresult/rresult-0.6.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit opam + +DESCRIPTION="Result value combinators for OCaml" +HOMEPAGE="https://erratique.ch/software/rresult https://github.com/dbuenzli/rresult" +SRC_URI="https://erratique.ch/software/rresult/releases/${P}.tbz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +RDEPEND="dev-ml/result:=" +DEPEND="${RDEPEND}" +BDEPEND="dev-ml/topkg + dev-ml/ocamlbuild" + +src_compile() { + ocaml pkg/pkg.ml build || die +} |