Received: by mail.netbsd.org (Postfix, from userid 605) id 422AA850DD; Wed, 7 Apr 2021 13:21:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7CD41850C7 for ; Wed, 7 Apr 2021 13:21:29 +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 wo8BnKkmiFdu for ; Wed, 7 Apr 2021 13:21:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D37EA84D63 for ; Wed, 7 Apr 2021 13:21:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D0788FA95; Wed, 7 Apr 2021 13:21:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1617801688115540" MIME-Version: 1.0 Date: Wed, 7 Apr 2021 13:21:28 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/emulators/qemu To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210407132128.D0788FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1617801688115540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Apr 7 13:21:28 UTC 2021 Modified Files: pkgsrc/emulators/qemu: Makefile Log Message: qemu: add some PLIST magic to avoid getting _static files into the plist again At least if you're using print-PLIST, which is kind of hard for this package. To generate a diff of this commit: cvs rdiff -u -r1.269 -r1.270 pkgsrc/emulators/qemu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1617801688115540 Content-Disposition: inline Content-Length: 672 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.269 pkgsrc/emulators/qemu/Makefile:1.270 --- pkgsrc/emulators/qemu/Makefile:1.269 Wed Mar 31 08:52:27 2021 +++ pkgsrc/emulators/qemu/Makefile Wed Apr 7 13:21:28 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.269 2021/03/31 08:52:27 reinoud Exp $ +# $NetBSD: Makefile,v 1.270 2021/04/07 13:21:28 wiz Exp $ DISTNAME= qemu-5.2.0 PKGREVISION= 5 @@ -138,6 +138,8 @@ PLIST.${pvar}= yes # different versions of Sphinx generate different static files PLIST_SRC= PLIST ${WRKDIR}/PLIST.STATIC +PRINT_PLIST_AWK+= /\/_static\// { next; } + TEST_TARGET= check post-extract: --_----------=_1617801688115540--