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 28A4D158018 for ; Fri, 1 Oct 2021 16:25:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46FDEE08F6; Fri, 1 Oct 2021 16:25:53 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DD3BE08F6 for ; Fri, 1 Oct 2021 16:25:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C330A342C87 for ; Fri, 1 Oct 2021 16:25:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15B634E for ; Fri, 1 Oct 2021 16:25:50 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1633105531.4c9fd4515fd66fb424215d5db5dbaf6f03001c8d.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/parmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/parmap/parmap-1.2.1.ebuild dev-ml/parmap/parmap-1.2.3.ebuild X-VCS-Directories: dev-ml/parmap/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 4c9fd4515fd66fb424215d5db5dbaf6f03001c8d X-VCS-Branch: master Date: Fri, 1 Oct 2021 16:25:50 +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: 36a06da6-e88b-4e98-98d0-146a7c676d9d X-Archives-Hash: 98ee724a81321bba21a4defbf465207c commit: 4c9fd4515fd66fb424215d5db5dbaf6f03001c8d Author: Alfredo Tupone gentoo org> AuthorDate: Fri Oct 1 16:25:31 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Fri Oct 1 16:25:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9fd451 dev-ml/parmap: fix build with ocaml-4.12 Closes: https://bugs.gentoo.org/794889 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/parmap/parmap-1.2.1.ebuild | 4 ++++ dev-ml/parmap/parmap-1.2.3.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-ml/parmap/parmap-1.2.1.ebuild b/dev-ml/parmap/parmap-1.2.1.ebuild index 44ada0a2777..5e4efd7f812 100644 --- a/dev-ml/parmap/parmap-1.2.1.ebuild +++ b/dev-ml/parmap/parmap-1.2.1.ebuild @@ -19,3 +19,7 @@ IUSE="+ocamlopt" BDEPEND="dev-ml/dune-configurator" RDEPEND=">=dev-lang/ocaml-4.03:=[ocamlopt?]" DEPEND="${RDEPEND}" + +src_compile() { + dune build @install --profile release || die +} diff --git a/dev-ml/parmap/parmap-1.2.3.ebuild b/dev-ml/parmap/parmap-1.2.3.ebuild index 444af768d02..974f988af0e 100644 --- a/dev-ml/parmap/parmap-1.2.3.ebuild +++ b/dev-ml/parmap/parmap-1.2.3.ebuild @@ -19,3 +19,7 @@ IUSE="+ocamlopt" BDEPEND="dev-ml/dune-configurator" RDEPEND=">=dev-lang/ocaml-4.03:=[ocamlopt?]" DEPEND="${RDEPEND}" + +src_compile() { + dune build @install --profile release || die +}