From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1197476-garchives=archives.gentoo.org@lists.gentoo.org> 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 612DF138359 for <garchives@archives.gentoo.org>; Tue, 18 Aug 2020 06:43:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92D76E083B; Tue, 18 Aug 2020 06:43:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1FBD8E0863 for <gentoo-commits@lists.gentoo.org>; Tue, 18 Aug 2020 06:43:38 +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 E2D0D34EEE0 for <gentoo-commits@lists.gentoo.org>; Tue, 18 Aug 2020 06:43:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B531315 for <gentoo-commits@lists.gentoo.org>; Tue, 18 Aug 2020 06:43:35 +0000 (UTC) From: "Sergei Trofimovich" <slyfox@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" <slyfox@gentoo.org> Message-ID: <1597733011.b0d65dcdbc5f2f81b3da40f05147c93fd78277c4.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libvirt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/libvirt/libvirt-9999.ebuild X-VCS-Directories: app-emulation/libvirt/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: b0d65dcdbc5f2f81b3da40f05147c93fd78277c4 X-VCS-Branch: master Date: Tue, 18 Aug 2020 06:43:35 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ffe192eb-0616-4300-9caa-03ab32efda80 X-Archives-Hash: 615031a39cfc4bbb0a89b5c8ea4bc73c commit: b0d65dcdbc5f2f81b3da40f05147c93fd78277c4 Author: Michal Privoznik <mprivozn <AT> redhat <DOT> com> AuthorDate: Mon Aug 17 09:59:33 2020 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Tue Aug 18 06:43:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d65dcd app-emulation/libvirt: Fix meson option names In a9084be3e091bf4aff4b75b632ef90866090571f I've made a couple of mistakes, where the arguments passed to meson contains dashes instead of underscores. Signed-off-by: Michal Privoznik <mprivozn <AT> redhat.com> Closes: https://github.com/gentoo/gentoo/pull/17147 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> app-emulation/libvirt/libvirt-9999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-emulation/libvirt/libvirt-9999.ebuild b/app-emulation/libvirt/libvirt-9999.ebuild index e15fe024101..7b42d43f87f 100644 --- a/app-emulation/libvirt/libvirt-9999.ebuild +++ b/app-emulation/libvirt/libvirt-9999.ebuild @@ -224,7 +224,7 @@ src_prepare() { src_configure() { local emesonargs=( $(meson_feature apparmor) - $(meson_use apparmor apparmor-profiles) + $(meson_use apparmor apparmor_profiles) $(meson_feature audit) $(meson_feature caps capng) $(meson_feature dbus) @@ -232,9 +232,9 @@ src_configure() { $(meson_feature firewalld) $(meson_feature fuse) $(meson_feature glusterfs) - $(meson_feature glusterfs storage-gluster) - $(meson_feature iscsi storage-iscsi) - $(meson_feature iscsi-direct storage-iscsi-direct) + $(meson_feature glusterfs storage_gluster) + $(meson_feature iscsi storage_iscsi) + $(meson_feature iscsi-direct storage_iscsi_direct) $(meson_feature libvirtd driver_libvirtd) $(meson_feature libssh) $(meson_feature lvm storage_lvm) @@ -268,7 +268,7 @@ src_configure() { -Ddriver_esx=enabled -Dinit_script=systemd -Dqemu_user=$(usex caps qemu root) - -Dqemu-user=$(usex caps qemu root) + -Dqemu_group=$(usex caps qemu root) -Ddriver_remote=enabled -Dstorage_fs=enabled -Ddriver_vmware=enabled