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 E69801382C5 for ; Mon, 8 Feb 2021 08:00:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C71ECE0895; Mon, 8 Feb 2021 08:00:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AC345E0895 for ; Mon, 8 Feb 2021 08:00:26 +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 608F1340C4B 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 DB33F4C3 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: <1612771079.286243fd45071d2622c007c9490f83979472ce2a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ounit2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/ounit2/Manifest dev-ml/ounit2/ounit2-2.2.4.ebuild X-VCS-Directories: dev-ml/ounit2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 286243fd45071d2622c007c9490f83979472ce2a 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: 3e91171d-83d6-4420-8e8c-3cee7d4a7ffc X-Archives-Hash: a8929e19da92fc88abddd9024da0b357 commit: 286243fd45071d2622c007c9490f83979472ce2a Author: Sam James gentoo org> AuthorDate: Mon Feb 8 07:57:52 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 8 07:57:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=286243fd dev-ml/ounit2: bump to 2.2.4 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-ml/ounit2/Manifest | 1 + dev-ml/ounit2/ounit2-2.2.4.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-ml/ounit2/Manifest b/dev-ml/ounit2/Manifest index 1110f73cdc2..c555d67220b 100644 --- a/dev-ml/ounit2/Manifest +++ b/dev-ml/ounit2/Manifest @@ -1 +1,2 @@ DIST ounit-v2.2.3.tbz 57449 BLAKE2B cf4742c4800ff66551416e243285ae0264f94d1665f795039cd37ad717b09fa3ba5cdfb2380169dfcddea5a27a82373ae892adf11155147a081d734091bf39d8 SHA512 dff04859d263e5f80a1606156d07493d0320a2756d0a7f134c63c53078550c7b056587486922bc66a288413af30c59a7e47157636502c6dd10626cf75587f981 +DIST ounit-v2.2.4.tbz 57558 BLAKE2B 5cb1eaa1233102af49155b46a1a95742c3c6c584901536ce755e6f6386d0d645639b98fdbab236fe20c93c3bde2632bbfc31c5a076f61cc6b9a7f408ac032643 SHA512 d69dc501a360c31f7854322b5e2c2abcb1e43890737e1cc00c167ee104d5dee471b6b8d8186f8044b0482c91a8f15210a25d833a1e03ed7baabfba923815962f diff --git a/dev-ml/ounit2/ounit2-2.2.4.ebuild b/dev-ml/ounit2/ounit2-2.2.4.ebuild new file mode 100644 index 00000000000..b67e4a2fd51 --- /dev/null +++ b/dev-ml/ounit2/ounit2-2.2.4.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit dune + +DESCRIPTION="Unit testing framework for OCaml" +HOMEPAGE="https://github.com/gildor478/ounit" +SRC_URI="https://github.com/gildor478/ounit/releases/download/v${PV}/ounit-v${PV}.tbz" +S="${WORKDIR}/ounit-v${PV}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="+ocamlopt" + +DEPEND=" + dev-ml/lwt:= + dev-ml/stdlib-shims:= +" +RDEPEND="${DEPEND}"