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 ABE9D15814C 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 888532BC01C; 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 693F32BC01C 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 6B4E0335CD2 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 E094C9F1 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: <1696730133.b7fa38898fcb43f810130bc5a3001fe8091168bf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libguestfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/libguestfs/libguestfs-1.48.6.ebuild X-VCS-Directories: app-emulation/libguestfs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b7fa38898fcb43f810130bc5a3001fe8091168bf 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: d653ff46-6594-4911-a80f-68a04a3791c0 X-Archives-Hash: 54062efb101cae51856f698ea8d22502 commit: b7fa38898fcb43f810130bc5a3001fe8091168bf Author: Sam James gentoo org> AuthorDate: Sun Oct 8 01:55:33 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 8 01:55:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7fa3889 app-emulation/libguestfs: needs bison+flex Bug: https://bugs.gentoo.org/915339 Signed-off-by: Sam James gentoo.org> app-emulation/libguestfs/libguestfs-1.48.6.ebuild | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/app-emulation/libguestfs/libguestfs-1.48.6.ebuild b/app-emulation/libguestfs/libguestfs-1.48.6.ebuild index 11b39fa23a18..f6b4f9fd63e2 100644 --- a/app-emulation/libguestfs/libguestfs-1.48.6.ebuild +++ b/app-emulation/libguestfs/libguestfs-1.48.6.ebuild @@ -6,7 +6,7 @@ EAPI=8 # Bump with app-emulation/guestfs-tools and app-emulation/libguestfs-appliance (if any new release there) LUA_COMPAT=( lua5-1 ) -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit autotools flag-o-matic linux-info lua-single perl-functions python-single-r1 strip-linguas toolchain-funcs @@ -24,8 +24,10 @@ KEYWORDS="amd64 ~x86" IUSE="doc erlang +fuse gtk inspect-icons introspection libvirt lua +ocaml +perl python ruby selinux static-libs systemtap test" RESTRICT="!test? ( test )" -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) - python? ( ${PYTHON_REQUIRED_USE} )" +REQUIRED_USE=" + lua? ( ${LUA_REQUIRED_USE} ) + python? ( ${PYTHON_REQUIRED_USE} ) +" # Failures - doc COMMON_DEPEND=" @@ -92,7 +94,8 @@ COMMON_DEPEND=" " # Some OCaml is always required # bug #729674 -DEPEND="${COMMON_DEPEND} +DEPEND=" + ${COMMON_DEPEND} >=dev-lang/ocaml-4.03:=[ocamlopt] dev-util/gperf dev-ml/findlib[ocamlopt] @@ -107,7 +110,8 @@ DEPEND="${COMMON_DEPEND} ruby? ( dev-lang/ruby virtual/rubygems dev-ruby/rake ) test? ( introspection? ( dev-libs/gjs ) ) " -RDEPEND="${COMMON_DEPEND} +RDEPEND=" + ${COMMON_DEPEND} app-emulation/libguestfs-appliance acct-group/kvm " @@ -144,6 +148,9 @@ src_configure() { # bug #794877 tc-export AR + # Needs both bison+flex (bug #915339, see configure too) + unset LEX YACC + # Skip Bash test # (See 13-test-suite.log in linked bug) # bug #794874