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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD3F71582EF for ; Mon, 24 Feb 2025 21:54:38 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 9CBAA3431B0 for ; Mon, 24 Feb 2025 21:54:38 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 97AB81102F2; Mon, 24 Feb 2025 21:54:37 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 8B20A1102F2 for ; Mon, 24 Feb 2025 21:54:37 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F9CA34319F for ; Mon, 24 Feb 2025 21:54:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8432C23EF for ; Mon, 24 Feb 2025 21:54:35 +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: <1740434043.0d918a1667cb6a0ec75028c5817de5bb9c0e750f.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/why3-for-spark/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/why3-for-spark/why3-for-spark-2023.12.13-r2.ebuild X-VCS-Directories: sci-mathematics/why3-for-spark/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 0d918a1667cb6a0ec75028c5817de5bb9c0e750f X-VCS-Branch: master Date: Mon, 24 Feb 2025 21:54:35 +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: 46e9c6dd-c0d9-46d0-b2ee-d2de4e650eb8 X-Archives-Hash: ae7ae965c1232349b2d22bcb65faf075 commit: 0d918a1667cb6a0ec75028c5817de5bb9c0e750f Author: Alfredo Tupone gentoo org> AuthorDate: Mon Feb 24 21:53:35 2025 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Feb 24 21:54:03 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d918a16 sci-mathematics/why3-for-spark: fix configure Closes: https://bugs.gentoo.org/949519 Signed-off-by: Alfredo Tupone gentoo.org> sci-mathematics/why3-for-spark/why3-for-spark-2023.12.13-r2.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sci-mathematics/why3-for-spark/why3-for-spark-2023.12.13-r2.ebuild b/sci-mathematics/why3-for-spark/why3-for-spark-2023.12.13-r2.ebuild index 83f7bbf5a63b..5caf4e27adc6 100644 --- a/sci-mathematics/why3-for-spark/why3-for-spark-2023.12.13-r2.ebuild +++ b/sci-mathematics/why3-for-spark/why3-for-spark-2023.12.13-r2.ebuild @@ -24,6 +24,7 @@ RDEPEND=" >=dev-lang/ocaml-4.11:=[ocamlopt?] dev-ml/menhir:=[ocamlopt?] dev-ml/num:=[ocamlopt?] + dev-ml/re:=[ocamlopt?] dev-ml/yojson:= coq? ( <=sci-mathematics/coq-8.18 ) emacs? ( app-editors/emacs:* ) @@ -75,6 +76,7 @@ src_prepare() { sed -i \ -e 's:configure.in:configure.ac:g' \ Makefile.in || die + mv configure.{in,ac} || die eautoreconf default }