From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1EB8B1582EF for ; Tue, 11 Mar 2025 19:08:20 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0801A343168 for ; Tue, 11 Mar 2025 19:08:20 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 06CE211037F; Tue, 11 Mar 2025 19:08:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id F1C2611037F for ; Tue, 11 Mar 2025 19:08:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A86DB343160 for ; Tue, 11 Mar 2025 19:08:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35690288D for ; Tue, 11 Mar 2025 19:08:17 +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: <1741720083.f9390e7bd0a22915b500149a32c4964e6e40a23f.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/facile/facile-1.1.4.ebuild X-VCS-Directories: dev-ml/facile/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: f9390e7bd0a22915b500149a32c4964e6e40a23f X-VCS-Branch: master Date: Tue, 11 Mar 2025 19:08:17 +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: aba80c4d-8482-481c-bc1f-9af6b52b70b8 X-Archives-Hash: d09c5583ec6c0cf4949a7dac62bd189d commit: f9390e7bd0a22915b500149a32c4964e6e40a23f Author: Alfredo Tupone gentoo org> AuthorDate: Tue Mar 11 19:07:22 2025 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Mar 11 19:08:03 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9390e7b dev-ml/facile: build with ocaml-5 too Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/facile/facile-1.1.4.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/dev-ml/facile/facile-1.1.4.ebuild b/dev-ml/facile/facile-1.1.4.ebuild index 41a016660704..43e94e694256 100644 --- a/dev-ml/facile/facile-1.1.4.ebuild +++ b/dev-ml/facile/facile-1.1.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,3 +19,15 @@ RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]" DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-dune.patch ) + +src_prepare() { + default + sed -i \ + -e "s:Pervasives:Stdlib:g" \ + lib/fcl_misc.ml \ + lib/fcl_cstr.ml \ + lib/fcl_fdArray.ml \ + lib/fcl_nonlinear.ml \ + lib/fcl_sorting.ml \ + || die +}