From owner-svn-ports-head@freebsd.org Tue Aug 14 16:03:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 028C3107C707; Tue, 14 Aug 2018 16:03:29 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ABFC176AEC; Tue, 14 Aug 2018 16:03:28 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 734611DC83; Tue, 14 Aug 2018 16:03:28 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7EG3SiJ071541; Tue, 14 Aug 2018 16:03:28 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7EG3S0O071539; Tue, 14 Aug 2018 16:03:28 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201808141603.w7EG3S0O071539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Tue, 14 Aug 2018 16:03:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477167 - head/devel/libvirt X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: head/devel/libvirt X-SVN-Commit-Revision: 477167 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2018 16:03:29 -0000 Author: novel Date: Tue Aug 14 16:03:27 2018 New Revision: 477167 URL: https://svnweb.freebsd.org/changeset/ports/477167 Log: devel/libvirt: fix build with QEMU enabled Libvirt has switched from yajl to jansson for JSON parsing, so update dependencies accordingly. Also add some missing directories to plist. Bump PORTREVISION. PR: 230583 (based on) Submitted by: hashiz@meridiani.jp Modified: head/devel/libvirt/Makefile head/devel/libvirt/pkg-plist Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Tue Aug 14 15:31:01 2018 (r477166) +++ head/devel/libvirt/Makefile Tue Aug 14 16:03:27 2018 (r477167) @@ -3,6 +3,7 @@ PORTNAME= libvirt PORTVERSION= 4.6.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ @@ -117,10 +118,10 @@ SUB_LIST+= PORTVERSION="-${PORTVERSION}" .include .if ${PORT_OPTIONS:MQEMU} || ${PORT_OPTIONS:MNSS} -LIB_DEPENDS+= libyajl.so:devel/yajl -CONFIGURE_ARGS+= --with-yajl=${LOCALBASE} +LIB_DEPENDS+= libjansson.so:devel/jansson +CONFIGURE_ARGS+= --with-jansson .else -CONFIGURE_ARGS+= --without-yajl +CONFIGURE_ARGS+= --without-jansson .endif .if !${PLIST_SUB:MXEN} Modified: head/devel/libvirt/pkg-plist ============================================================================== --- head/devel/libvirt/pkg-plist Tue Aug 14 15:31:01 2018 (r477166) +++ head/devel/libvirt/pkg-plist Tue Aug 14 16:03:27 2018 (r477167) @@ -397,11 +397,16 @@ lib/libvirt/connection-driver/libvirt_driver_vbox.so lib/libvirt/storage-backend/libvirt_storage_backend_fs.so %%ZFS%%lib/libvirt/storage-backend/libvirt_storage_backend_zfs.so lib/libvirt/storage-file/libvirt_storage_file_fs.so -%%QEMU%%@dir /var/run/libvirt/qemu +%%QEMU%%@dir /var/cache/libvirt/qemu %%QEMU%%@dir /var/lib/libvirt/qemu/channel/target %%QEMU%%@dir /var/lib/libvirt/qemu/channel %%QEMU%%@dir /var/lib/libvirt/qemu -%%QEMU%%@dir /var/cache/libvirt/qemu +%%QEMU%%@dir /var/lib/libvirt/swtpm +%%QEMU%%@dir /var/log/swtpm/libvirt/qemu +%%QEMU%%@dir /var/log/swtpm/libvirt +%%QEMU%%@dir /var/log/swtpm +%%QEMU%%@dir /var/run/libvirt/qemu/swtpm +%%QEMU%%@dir /var/run/libvirt/qemu %%XEN%%@dir /var/lib/libvirt/libxl %%XEN%%@dir /var/log/libvirt/libxl %%XEN%%@dir /var/run/libvirt/libxl