Received: by mail.netbsd.org (Postfix, from userid 605) id E61B784D6C; Sun, 29 Aug 2021 01:53:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2BC3184CE1 for ; Sun, 29 Aug 2021 01:53:07 +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 catfzTs-sJQd for ; Sun, 29 Aug 2021 01:53:06 +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 9920684CDC for ; Sun, 29 Aug 2021 01:53:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 92CA3FA97; Sun, 29 Aug 2021 01:53:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1630201986297840" MIME-Version: 1.0 Date: Sun, 29 Aug 2021 01:53:06 +0000 From: "Michael Forney" Subject: CVS commit: pkgsrc/emulators/qemu To: pkgsrc-changes@NetBSD.org Reply-To: mcf@netbsd.org X-Mailer: log_accum Message-Id: <20210829015306.92CA3FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1630201986297840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mcf Date: Sun Aug 29 01:53:06 UTC 2021 Modified Files: pkgsrc/emulators/qemu: Makefile PLIST Log Message: qemu: re-add qemu-sparc and qemu-sparc64 to PLIST Instead, drop them from USER_EMUL on BSD platforms, since these user-mode qemu targets were removed only for BSD [0]; they still remain on Linux. [0] https://git.qemu.org/?p=qemu.git;a=commit;h=f8ce39701b5be032fb3f9c05e8adb4055f70eec2 To generate a diff of this commit: cvs rdiff -u -r1.283 -r1.284 pkgsrc/emulators/qemu/Makefile cvs rdiff -u -r1.77 -r1.78 pkgsrc/emulators/qemu/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1630201986297840 Content-Disposition: inline Content-Length: 1614 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.283 pkgsrc/emulators/qemu/Makefile:1.284 --- pkgsrc/emulators/qemu/Makefile:1.283 Fri Aug 27 03:32:37 2021 +++ pkgsrc/emulators/qemu/Makefile Sun Aug 29 01:53:06 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.283 2021/08/27 03:32:37 ryoon Exp $ +# $NetBSD: Makefile,v 1.284 2021/08/29 01:53:06 mcf Exp $ DISTNAME= qemu-6.1.0 PKGNAME= ${DISTNAME:S/-rc/rc/} @@ -122,10 +122,10 @@ PLIST.nbd= yes . if !exists(/usr/include/machine/trap.h) CONFIGURE_ARGS+= --disable-bsd-user . else -USER_EMUL= i386 x86_64 sparc sparc64 +USER_EMUL= i386 x86_64 . endif .elif !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly" -USER_EMUL= i386 x86_64 sparc sparc64 +USER_EMUL= i386 x86_64 PLIST.nbd= yes .elif ${OPSYS} == "Darwin" USER_EMUL= Index: pkgsrc/emulators/qemu/PLIST diff -u pkgsrc/emulators/qemu/PLIST:1.77 pkgsrc/emulators/qemu/PLIST:1.78 --- pkgsrc/emulators/qemu/PLIST:1.77 Fri Aug 27 03:32:37 2021 +++ pkgsrc/emulators/qemu/PLIST Sun Aug 29 01:53:06 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.77 2021/08/27 03:32:37 ryoon Exp $ +@comment $NetBSD: PLIST,v 1.78 2021/08/29 01:53:06 mcf Exp $ bin/elf2dmp ${PLIST.aarch64}bin/qemu-aarch64 ${PLIST.aarch64_be}bin/qemu-aarch64_be @@ -35,7 +35,9 @@ ${PLIST.riscv64}bin/qemu-riscv64 ${PLIST.s390x}bin/qemu-s390x ${PLIST.sh4}bin/qemu-sh4 ${PLIST.sh4eb}bin/qemu-sh4eb +${PLIST.sparc}bin/qemu-sparc ${PLIST.sparc32plus}bin/qemu-sparc32plus +${PLIST.sparc64}bin/qemu-sparc64 bin/qemu-storage-daemon bin/qemu-system-aarch64 bin/qemu-system-alpha --_----------=_1630201986297840--