Received: by mail.netbsd.org (Postfix, from userid 605) id 89C1584D7D; Wed, 19 Jun 2019 19:08:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0DB5684D31 for ; Wed, 19 Jun 2019 19:08:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id on2mP36Ujkij for ; Wed, 19 Jun 2019 19:08:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8182684CCF for ; Wed, 19 Jun 2019 19:08:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 752B0FBF4; Wed, 19 Jun 2019 19:08:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1560971285189760" MIME-Version: 1.0 Date: Wed, 19 Jun 2019 19:08:05 +0000 From: "Andreas Gustafsson" Subject: CVS commit: pkgsrc/emulators/qemu To: pkgsrc-changes@NetBSD.org Reply-To: gson@netbsd.org X-Mailer: log_accum Message-Id: <20190619190805.752B0FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1560971285189760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gson Date: Wed Jun 19 19:08:05 UTC 2019 Modified Files: pkgsrc/emulators/qemu: Makefile PLIST Log Message: qemu: Linux PLIST fixes bin/virtfs-proxy-helper and man/man1/virtfs-proxy-helper.1 were missing from the PLIST when building on Linux. To generate a diff of this commit: cvs rdiff -u -r1.210 -r1.211 pkgsrc/emulators/qemu/Makefile cvs rdiff -u -r1.59 -r1.60 pkgsrc/emulators/qemu/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1560971285189760 Content-Disposition: inline Content-Length: 1789 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/qemu/Makefile diff -u pkgsrc/emulators/qemu/Makefile:1.210 pkgsrc/emulators/qemu/Makefile:1.211 --- pkgsrc/emulators/qemu/Makefile:1.210 Sat May 25 12:36:59 2019 +++ pkgsrc/emulators/qemu/Makefile Wed Jun 19 19:08:05 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.210 2019/05/25 12:36:59 kamil Exp $ +# $NetBSD: Makefile,v 1.211 2019/06/19 19:08:05 gson Exp $ DISTNAME= qemu-4.0.0 PKGREVISION= 5 @@ -123,12 +123,13 @@ PLIST.bridge-helper= yes PLIST.nbd= yes PLIST.ivshmem= yes PLIST.pr-helper= yes +PLIST.virtfs-proxy-helper=yes .elif !empty(MACHINE_PLATFORM:MSunOS-5.11-*) PLIST.nbd= yes CONFIGURE_ARGS+= --disable-coroutine-pool .endif -PLIST_VARS+= ${UE_ARCHS} bridge-helper ivshmem nbd pr-helper +PLIST_VARS+= ${UE_ARCHS} bridge-helper ivshmem nbd pr-helper virtfs-proxy-helper .for pvar in ${USER_EMUL} PLIST.${pvar}= yes .endfor Index: pkgsrc/emulators/qemu/PLIST diff -u pkgsrc/emulators/qemu/PLIST:1.59 pkgsrc/emulators/qemu/PLIST:1.60 --- pkgsrc/emulators/qemu/PLIST:1.59 Sat May 25 12:36:59 2019 +++ pkgsrc/emulators/qemu/PLIST Wed Jun 19 19:08:05 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.59 2019/05/25 12:36:59 kamil Exp $ +@comment $NetBSD: PLIST,v 1.60 2019/06/19 19:08:05 gson Exp $ bin/elf2dmp ${PLIST.ivshmem}bin/ivshmem-client ${PLIST.ivshmem}bin/ivshmem-server @@ -74,9 +74,11 @@ ${PLIST.tilegx}bin/qemu-tilegx ${PLIST.x86_64}bin/qemu-x86_64 ${PLIST.xtensa}bin/qemu-xtensa ${PLIST.xtensaeb}bin/qemu-xtensaeb +${PLIST.virtfs-proxy-helper}bin/virtfs-proxy-helper ${PLIST.bridge-helper}libexec/qemu-bridge-helper man/man1/qemu-img.1 man/man1/qemu.1 +${PLIST.virtfs-proxy-helper}man/man1/virtfs-proxy-helper.1 man/man7/qemu-block-drivers.7 man/man7/qemu-cpu-models.7 man/man7/qemu-ga-ref.7 --_----------=_1560971285189760--