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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 23437158089 for ; Sun, 8 Oct 2023 01:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EF0A2BC015; Sun, 8 Oct 2023 01:58:14 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 12D762BC015 for ; Sun, 8 Oct 2023 01:58:14 +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 278C6335C8E for ; Sun, 8 Oct 2023 01:58:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A563A9D5 for ; Sun, 8 Oct 2023 01:58:11 +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: <1696730036.0f90fb0a98d5ac1d87bb836a42abaec55015c9a5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/guestfs-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/guestfs-tools/guestfs-tools-1.48.2.ebuild X-VCS-Directories: app-emulation/guestfs-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0f90fb0a98d5ac1d87bb836a42abaec55015c9a5 X-VCS-Branch: master Date: Sun, 8 Oct 2023 01:58:11 +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: 23984257-0290-4795-a9df-cdb4dc837430 X-Archives-Hash: a277bacafea58bee1325130d3b5cfdf2 commit: 0f90fb0a98d5ac1d87bb836a42abaec55015c9a5 Author: Sam James gentoo org> AuthorDate: Sun Oct 8 01:53:56 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 8 01:53:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f90fb0a app-emulation/guestfs-tools: needs bison+flex Closes: https://bugs.gentoo.org/915339 Signed-off-by: Sam James gentoo.org> app-emulation/guestfs-tools/guestfs-tools-1.48.2.ebuild | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/app-emulation/guestfs-tools/guestfs-tools-1.48.2.ebuild b/app-emulation/guestfs-tools/guestfs-tools-1.48.2.ebuild index 6fe7b676fdfc..8521e3d06afd 100644 --- a/app-emulation/guestfs-tools/guestfs-tools-1.48.2.ebuild +++ b/app-emulation/guestfs-tools/guestfs-tools-1.48.2.ebuild @@ -55,7 +55,8 @@ COMMON_DEPEND=" " # Some OCaml is always required # bug #729674 -DEPEND="${COMMON_DEPEND} +DEPEND=" + ${COMMON_DEPEND} >=dev-lang/ocaml-4.03:=[ocamlopt] dev-ml/findlib[ocamlopt] doc? ( app-text/po4a ) @@ -67,8 +68,13 @@ DEPEND="${COMMON_DEPEND} ) ) " -BDEPEND="virtual/pkgconfig" -RDEPEND="${COMMON_DEPEND} +BDEPEND=" + sys-devel/bison + sys-devel/flex + virtual/pkgconfig +" +RDEPEND=" + ${COMMON_DEPEND} app-emulation/libguestfs-appliance " @@ -87,6 +93,9 @@ src_configure() { # bug #794877 tc-export AR + # Needs both bison+flex (bug #915339, see configure too) + unset YACC LEX + if use test ; then # Skip Bash test # (See 13-test-suite.log in linked bug)