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 309E913835A for ; Mon, 8 Feb 2021 08:00:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2902AE089A; Mon, 8 Feb 2021 08:00:27 +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 0D4F0E089A for ; Mon, 8 Feb 2021 08:00:27 +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 7A20D340C96 for ; Mon, 8 Feb 2021 08:00:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C79694C2 for ; Mon, 8 Feb 2021 08:00:23 +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: <1612770981.f332c72f6443fa6ec87becb3b2b48bdb3380ce8e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/stdlib-shims/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/stdlib-shims/Manifest dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild X-VCS-Directories: dev-ml/stdlib-shims/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f332c72f6443fa6ec87becb3b2b48bdb3380ce8e X-VCS-Branch: master Date: Mon, 8 Feb 2021 08:00:23 +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: 3f487730-aba1-4d70-a818-6534acb82219 X-Archives-Hash: 37a69ebb958edcd378da6899fccc5c60 commit: f332c72f6443fa6ec87becb3b2b48bdb3380ce8e Author: Sam James gentoo org> AuthorDate: Mon Feb 8 07:56:21 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 8 07:56:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f332c72f dev-ml/stdlib-shims: bump to 0.3.0 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-ml/stdlib-shims/Manifest | 1 + dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/dev-ml/stdlib-shims/Manifest b/dev-ml/stdlib-shims/Manifest index e61e7814fb1..303277e4962 100644 --- a/dev-ml/stdlib-shims/Manifest +++ b/dev-ml/stdlib-shims/Manifest @@ -1 +1,2 @@ DIST stdlib-shims-0.2.0.tbz 15980 BLAKE2B 4d83b8642a4bccc9f090c0a2f23a4d2f16bbf2ec686ab41e357f5f544d659e82f10cba85f9d578c939a2a874d0006b7fd17846bb8ffe1b6fc7cb760e4aa33db1 SHA512 19e8d8e004583e94ce060d3598c886dae1c24dd79dfd177aab4bd2865846f668a83071f087d9371393f226c14c90042eb2ec76619654c655995aeff9d4765621 +DIST stdlib-shims-0.3.0.tbz 10163 BLAKE2B 442f07a9b80fb915a0254ba814227798c838f9fa4c6e9a94c4b99c22ca25844f121de235cb758707179275da9200cd45cbb6e68392b0217af97c6e1bb04a13a3 SHA512 1151d7edc8923516e9a36995a3f8938d323aaade759ad349ed15d6d8501db61ffbe63277e97c4d86149cf371306ac23df0f581ec7e02611f58335126e1870980 diff --git a/dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild b/dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild new file mode 100644 index 00000000000..135f3ce10d4 --- /dev/null +++ b/dev-ml/stdlib-shims/stdlib-shims-0.3.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit dune + +DESCRIPTION="Pure OCaml library that allows replacing Pervasives with Stdlib before 4.08" +HOMEPAGE="https://github.com/ocaml/stdlib-shims" +SRC_URI="https://github.com/ocaml/${PN}/releases/download/${PV}/${P}.tbz" + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="ocamlopt" + +DOCS=( "README.md" "CHANGES.md" "LICENSE" )