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 DB18A1382C5 for ; Thu, 20 May 2021 11:18:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23883E08F4; Thu, 20 May 2021 11:18:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 EAC09E08F4 for ; Thu, 20 May 2021 11:18:23 +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 C9358335D50 for ; Thu, 20 May 2021 11:18:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CDEE729 for ; Thu, 20 May 2021 11:18:21 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1621509493.3affbb0ef22ca0c7e5cd842d613caf9b44a4e34d.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/fwupd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/fwupd/fwupd-1.6.0.ebuild X-VCS-Directories: sys-apps/fwupd/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3affbb0ef22ca0c7e5cd842d613caf9b44a4e34d X-VCS-Branch: master Date: Thu, 20 May 2021 11:18:21 +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: aadf49bc-419a-4f69-9778-12a095fc95cd X-Archives-Hash: f3bd66e3db40399491df529e56492d1d commit: 3affbb0ef22ca0c7e5cd842d613caf9b44a4e34d Author: Lars Wendler gentoo org> AuthorDate: Thu May 20 11:17:48 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu May 20 11:18:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3affbb0e sys-apps/fwupd: Don't build fwupd-efi binary Bug: https://bugs.gentoo.org/786147 Signed-off-by: Lars Wendler gentoo.org> sys-apps/fwupd/fwupd-1.6.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys-apps/fwupd/fwupd-1.6.0.ebuild b/sys-apps/fwupd/fwupd-1.6.0.ebuild index 050554b92f3..6d66480d42e 100644 --- a/sys-apps/fwupd/fwupd-1.6.0.ebuild +++ b/sys-apps/fwupd/fwupd-1.6.0.ebuild @@ -131,6 +131,10 @@ src_configure() { local emesonargs=( --localstatedir "${EPREFIX}"/var -Dbuild="$(usex minimal standalone all)" + -Dconsolekit="false" + -Dcurl="true" + -Defi_binary="false" + -Dsupported_build="true" $(meson_use agent) $(meson_use archive libarchive) $(meson_use bluetooth bluez) @@ -144,9 +148,6 @@ src_configure() { $(meson_use policykit polkit) $(meson_use systemd) $(meson_use test tests) - $(meson_use uefi efi_binary) - -Dconsolekit="false" - -Dcurl="true" ${plugins[@]} )