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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 52EC615808B for ; Sun, 6 Mar 2022 09:18:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E723E083D; Sun, 6 Mar 2022 09:18:48 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 28057E0837 for ; Sun, 6 Mar 2022 09:18:48 +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 EECC334321C for ; Sun, 6 Mar 2022 09:18:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 584CF209 for ; Sun, 6 Mar 2022 09:18:45 +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: <1646558305.dc0541e23d790c3fdfea8e256d73b2cf916f310e.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.46.0-r2.ebuild app-emulation/libguestfs/libguestfs-1.46.0-r3.ebuild X-VCS-Directories: app-emulation/libguestfs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dc0541e23d790c3fdfea8e256d73b2cf916f310e X-VCS-Branch: master Date: Sun, 6 Mar 2022 09:18:45 +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: d0d160af-0903-46e1-bced-8342353a12e0 X-Archives-Hash: ce499f5ac0ca841afb766a6d9f568df6 commit: dc0541e23d790c3fdfea8e256d73b2cf916f310e Author: Sam James gentoo org> AuthorDate: Sun Mar 6 08:51:27 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 6 09:18:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc0541e2 app-emulation/libguestfs: fix automagic libselinux dependency Signed-off-by: Sam James gentoo.org> .../{libguestfs-1.46.0-r2.ebuild => libguestfs-1.46.0-r3.ebuild} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app-emulation/libguestfs/libguestfs-1.46.0-r2.ebuild b/app-emulation/libguestfs/libguestfs-1.46.0-r3.ebuild similarity index 96% rename from app-emulation/libguestfs/libguestfs-1.46.0-r2.ebuild rename to app-emulation/libguestfs/libguestfs-1.46.0-r3.ebuild index fafb279fa648..3a181e38f453 100644 --- a/app-emulation/libguestfs/libguestfs-1.46.0-r2.ebuild +++ b/app-emulation/libguestfs/libguestfs-1.46.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -26,7 +26,6 @@ REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) python? ( ${PYTHON_REQUIRED_USE} )" # Failures - doc -# FIXME: selinux support is automagic COMMON_DEPEND=" >=app-admin/augeas-1.8.0 app-arch/cpio @@ -83,7 +82,7 @@ COMMON_DEPEND=" lua? ( ${LUA_DEPS} ) ocaml? ( >=dev-lang/ocaml-4.03:=[ocamlopt] ) selinux? ( - sys-libs/libselinux + sys-libs/libselinux:= sys-libs/libsemanage ) systemtap? ( dev-util/systemtap ) @@ -154,6 +153,9 @@ src_configure() { append-ldflags "-Wl,-R${ESYSROOT}/usr/$(get_libdir)/xcrypt" fi + # Avoid automagic SELinux dependency + export ac_cv_header_selinux_selinux_h=$(usex selinux) + econf \ --disable-appliance \ --disable-daemon \