diff options
author | V3n3RiX <venerix@koprulu.sector> | 2021-12-22 14:08:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2021-12-22 14:08:05 +0000 |
commit | 93a93e9a3b53c1a73142a305ea1f8136846942ee (patch) | |
tree | b9791a06ab3284e27b568412c59316c66240c682 /dev-ml/ocaml-process | |
parent | 2771f79232c273bc2a57d23bf335dd81ccf6af28 (diff) |
gentoo resync : 22.12.2021
Diffstat (limited to 'dev-ml/ocaml-process')
-rw-r--r-- | dev-ml/ocaml-process/Manifest | 3 | ||||
-rw-r--r-- | dev-ml/ocaml-process/metadata.xml | 13 | ||||
-rw-r--r-- | dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild | 29 |
3 files changed, 45 insertions, 0 deletions
diff --git a/dev-ml/ocaml-process/Manifest b/dev-ml/ocaml-process/Manifest new file mode 100644 index 000000000000..dbd83c7f3a3f --- /dev/null +++ b/dev-ml/ocaml-process/Manifest @@ -0,0 +1,3 @@ +DIST ocaml-process-0.2.1.tar.gz 5904 BLAKE2B 90a03e53e79adae559bbdcf4717db53d5e79cf22a22e7d6daad4c123a8b275f7b984ed40b7132653c31bb9b1d7c39c1918e0455597f70103ddb18b89ecf00d9a SHA512 0ca352a273797218e1785e1f6ed024448461cefeb54f143574230c844747a81355b97dd19fe9ddfe31d1a69c03dccf895fadc086f61a3d7a9f5397538432db92 +EBUILD ocaml-process-0.2.1.ebuild 539 BLAKE2B 65f551d933a76c321388ce6cf24892108ae03b5eaa6a8bae899611e46156008edb2bc898b592c5afa9c65b93c0339d77c5cbd81c2366e28c2f82e777cba7544a SHA512 e65ee6fe3bdf701b2267ab3ec61dfb8784ff31af599fdbe73f4096b6431cf9927fd66cdd9ee85e7f8906c2e7878296432f2e16343ae2ad589bcdc5eef09b6f72 +MISC metadata.xml 401 BLAKE2B 70dda25c5e65d40a76bfa0cadf35bc380852a23091a2e91b8f503cb88b4990442eea710063a10baff999088b9aaf74e84afec8835a1dc734fced5169a5fd1013 SHA512 7feae0e5d4fec207c7439ec70ba44d0990af4de07b231f868a51c0c0cb879fdeaf8ac60a7c8a672653e26e747c021ffafb733afead06ecb04960d6e7b028898b diff --git a/dev-ml/ocaml-process/metadata.xml b/dev-ml/ocaml-process/metadata.xml new file mode 100644 index 000000000000..0f616a0514e6 --- /dev/null +++ b/dev-ml/ocaml-process/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> + <maintainer type="project"> + <email>ml@gentoo.org</email> + <name>ML</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/dsheets/ocaml-process/issues/</bugs-to> + <remote-id type="github">dsheets/ocaml-process</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild new file mode 100644 index 000000000000..66969b86741b --- /dev/null +++ b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit findlib + +DESCRIPTION="Easy process control for OCaml" +HOMEPAGE="https://github.com/dsheets/ocaml-process" +SRC_URI="https://github.com/dsheets/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" + +BDEPEND=" + dev-ml/ocamlbuild + test? ( dev-ml/alcotest ) +" + +src_install() { + findlib_src_install +} + +src_test() { + emake -j1 test +} |