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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 07F671382C5 for ; Tue, 8 Jun 2021 08:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35F66E0809; Tue, 8 Jun 2021 08:54:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D048E0809 for ; Tue, 8 Jun 2021 08:54:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3E06A340D6B for ; Tue, 8 Jun 2021 08:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9851E5C4 for ; Tue, 8 Jun 2021 08:54:29 +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: <1623142290.1328f5ce8c0fed6c3a374a7bc2a13c54ddf89893.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.44.1.ebuild X-VCS-Directories: app-emulation/libguestfs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1328f5ce8c0fed6c3a374a7bc2a13c54ddf89893 X-VCS-Branch: master Date: Tue, 8 Jun 2021 08:54:29 +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: 36f8ac1f-74d4-48de-a9b3-184339f6ab43 X-Archives-Hash: 8296d3f09dafefd63d6a03decc7bff20 commit: 1328f5ce8c0fed6c3a374a7bc2a13c54ddf89893 Author: Sam James gentoo org> AuthorDate: Tue Jun 8 08:51:30 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jun 8 08:51:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1328f5ce app-emulation/libguestfs: don't call AR directly Closes: https://bugs.gentoo.org/794877 Signed-off-by: Sam James gentoo.org> app-emulation/libguestfs/libguestfs-1.44.1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-emulation/libguestfs/libguestfs-1.44.1.ebuild b/app-emulation/libguestfs/libguestfs-1.44.1.ebuild index 57aa2f01a44..3678f17814d 100644 --- a/app-emulation/libguestfs/libguestfs-1.44.1.ebuild +++ b/app-emulation/libguestfs/libguestfs-1.44.1.ebuild @@ -6,7 +6,7 @@ EAPI=7 LUA_COMPAT=( lua5-1 ) PYTHON_COMPAT=( python3_{7,8,9} ) -inherit autotools bash-completion-r1 l10n linux-info lua-single perl-functions python-single-r1 xdg-utils flag-o-matic +inherit autotools bash-completion-r1 l10n linux-info lua-single perl-functions python-single-r1 toolchain-funcs xdg-utils flag-o-matic MY_PV_1="$(ver_cut 1-2)" MY_PV_2="$(ver_cut 2)" @@ -136,6 +136,9 @@ src_prepare() { } src_configure() { + # bug #794877 + tc-export AR + # Disable feature test for kvm for more reason # i.e: not loaded module in __build__ time, # build server not supported kvm, etc. ...