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 21A0B139337 for ; Wed, 28 Jul 2021 02:05:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7ACB1E088B; Wed, 28 Jul 2021 02:05:34 +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 CBC7BE088B for ; Wed, 28 Jul 2021 02:05:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A5B03342D56 for ; Wed, 28 Jul 2021 02:05:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4F38847 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: <1627437895.d2f8da8db6b4b87cfdf9b37c1071049af6eaed35.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/fpath/Manifest dev-ml/fpath/fpath-0.7.3.ebuild X-VCS-Directories: dev-ml/fpath/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d2f8da8db6b4b87cfdf9b37c1071049af6eaed35 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: 8c9cc545-005f-4daa-b05b-180869707e4d X-Archives-Hash: f7c9fdcae118ca3f38299c1e5b8346d2 commit: d2f8da8db6b4b87cfdf9b37c1071049af6eaed35 Author: Sam James gentoo org> AuthorDate: Wed Jul 28 02:04:55 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jul 28 02:04:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f8da8d dev-ml/fpath: add 0.7.3 Signed-off-by: Sam James gentoo.org> dev-ml/fpath/Manifest | 1 + dev-ml/fpath/fpath-0.7.3.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-ml/fpath/Manifest b/dev-ml/fpath/Manifest index 0f8bf4b1258..c46046bf728 100644 --- a/dev-ml/fpath/Manifest +++ b/dev-ml/fpath/Manifest @@ -1 +1,2 @@ DIST fpath-0.7.2.tbz 24142 BLAKE2B 5aa22a33d0155c2a446c3622d6feef0748be3eaa72f07e7e2770fda1993794864072a5f50a052537b9724e39935064967c87f82d860a2da17fbc86279a1930ab SHA512 d8ab8d6f183a1742d74a3a3220cc1d62e7df38a6f3ca1c04fad18426a0897152255382305ad14d058b5b85ab55a27536c39a62deffac8d46984a730a2a18405d +DIST fpath-0.7.3.tbz 24345 BLAKE2B 5d4e68acebdafb6378422b31385e78decff2dfce1bedd102c7e6baac519f9843e0828629f4a15e075f506865e1af6f9cc7ece761e74fe6608d3476338cc556cb SHA512 acf4b379aee3c25305ef71d1b97b154faa6de1e8248a8e8d046cf11090a3e94f2dc048b961bb51725ca7384e784455f2893fbd51f26bf80571a9cc7e9475b945 diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild new file mode 100644 index 00000000000..13e85c27b10 --- /dev/null +++ b/dev-ml/fpath/fpath-0.7.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit opam + +DESCRIPTION="File system paths for OCaml" +HOMEPAGE="https://erratique.ch/software/fpath https://github.com/dbuenzli/fpath" +SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +RDEPEND="dev-ml/result:= + dev-ml/astring:= +" +DEPEND="${RDEPEND}" +BDEPEND="dev-ml/topkg + dev-ml/ocamlbuild + dev-ml/findlib" + +src_compile() { + ocaml pkg/pkg.ml build || die +}