From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25755139337 for ; Wed, 28 Jul 2021 02:05:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43E15E0884; Wed, 28 Jul 2021 02:05:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5D22E0874 for ; Wed, 28 Jul 2021 02:05:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19B1D342DF1 for ; Wed, 28 Jul 2021 02:05:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2C3D846 for ; Wed, 28 Jul 2021 02:05:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1627437844.67b0ad5ae13edbe4b4966e7bf3412c71f8d58d22.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/rresult/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/rresult/Manifest dev-ml/rresult/rresult-0.6.0.ebuild X-VCS-Directories: dev-ml/rresult/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 67b0ad5ae13edbe4b4966e7bf3412c71f8d58d22 X-VCS-Branch: master Date: Wed, 28 Jul 2021 02:05:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 32c696d1-b6d5-4072-a474-e653feb43008 X-Archives-Hash: 53d65105e63e52dfc4a58b5d48c7679f commit: 67b0ad5ae13edbe4b4966e7bf3412c71f8d58d22 Author: Sam James gentoo org> AuthorDate: Wed Jul 28 02:04:04 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jul 28 02:04:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b0ad5a dev-ml/rresult: add 0.6.0 Signed-off-by: Sam James gentoo.org> dev-ml/rresult/Manifest | 1 + dev-ml/rresult/rresult-0.6.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-ml/rresult/Manifest b/dev-ml/rresult/Manifest index 39071840a8c..077091a077b 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 00000000000..0c47040813b --- /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 +}