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 24FBB138335 for ; Mon, 24 Sep 2018 11:57:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 082ADE075F; Mon, 24 Sep 2018 11:57:43 +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 D5E3BE075F for ; Mon, 24 Sep 2018 11:57:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BF273335CC2 for ; Mon, 24 Sep 2018 11:57:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7135E3C3 for ; Mon, 24 Sep 2018 11:57:38 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1537790231.22d1d12880342385fbf139def0f4029bafdbb008.tamiko@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: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 22d1d12880342385fbf139def0f4029bafdbb008 X-VCS-Branch: master Date: Mon, 24 Sep 2018 11:57:38 +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-Archives-Salt: 98bca96a-7a71-46f3-a084-ea28950384e0 X-Archives-Hash: de6e2261b4bc5fa04a18fb0f4fa7cd53 commit: 22d1d12880342385fbf139def0f4029bafdbb008 Author: Michal Privoznik redhat com> AuthorDate: Mon Sep 24 09:21:30 2018 +0000 Commit: Matthias Maier gentoo org> CommitDate: Mon Sep 24 11:57:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d1d128 Revert "app-emulation/libvirt: update live ebuild" This reverts commit 2ad130bab3b38de59ff996dad8f3a1c68407e731. So after some painful bugs and v.4.6.0 release where we tried to make libvirt work with jansson we came to realize that it is not going to fly. QEMU relies on sending 64 bit integers and jansson supports only 53 bits long integers. Therefore we reverted back to using yajl. See d99a89592d65ab8 in libvirt repo (and friends). Signed-off-by: Michal Privoznik redhat.com> Signed-off-by: Matthias Maier gentoo.org> app-emulation/libvirt/libvirt-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/libvirt/libvirt-9999.ebuild b/app-emulation/libvirt/libvirt-9999.ebuild index e6f5276a786..55ce31c6b95 100644 --- a/app-emulation/libvirt/libvirt-9999.ebuild +++ b/app-emulation/libvirt/libvirt-9999.ebuild @@ -91,7 +91,7 @@ RDEPEND=" policykit? ( >=sys-auth/polkit-0.9 ) qemu? ( >=app-emulation/qemu-0.13.0 - dev-libs/jansson + dev-libs/yajl ) rbd? ( sys-cluster/ceph ) sasl? ( dev-libs/cyrus-sasl ) @@ -266,7 +266,7 @@ src_configure() { $(use_with phyp) $(use_with policykit polkit) $(use_with qemu) - $(use_with qemu jansson) + $(use_with qemu yajl) $(use_with rbd storage-rbd) $(use_with sasl) $(use_with selinux)