Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1243A84D65 for ; Sun, 22 Oct 2023 02:47:08 +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 20aqZ4vrPEEk for ; Sun, 22 Oct 2023 02:47:07 +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 7DD9784C86 for ; Sun, 22 Oct 2023 02:47:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 71BF8FADC; Sun, 22 Oct 2023 02:47:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1697942827172620" MIME-Version: 1.0 Date: Sun, 22 Oct 2023 02:47:07 +0000 From: "Izumi Tsutsui" Subject: CVS commit: pkgsrc/emulators/PC6001VX To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: tsutsui@netbsd.org X-Mailer: log_accum Message-Id: <20231022024707.71BF8FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1697942827172620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tsutsui Date: Sun Oct 22 02:47:07 UTC 2023 Modified Files: pkgsrc/emulators/PC6001VX: Makefile distinfo Log Message: PC6001VX: update to 4.2.3. pkgsrc changes: - specify QMAKE_ARGS+=DEFINES+="DELAY_TIMER_MS_DEFAULT=10" on NetBSD, assuming most major Tier-I ports have HZ=100 Upstream changes: * The timer precision can now be changed to suit the environment. To generate a diff of this commit: cvs rdiff -u -r1.88 -r1.89 pkgsrc/emulators/PC6001VX/Makefile cvs rdiff -u -r1.40 -r1.41 pkgsrc/emulators/PC6001VX/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1697942827172620 Content-Disposition: inline Content-Length: 1998 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/PC6001VX/Makefile diff -u pkgsrc/emulators/PC6001VX/Makefile:1.88 pkgsrc/emulators/PC6001VX/Makefile:1.89 --- pkgsrc/emulators/PC6001VX/Makefile:1.88 Sun Oct 15 15:03:07 2023 +++ pkgsrc/emulators/PC6001VX/Makefile Sun Oct 22 02:47:07 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.88 2023/10/15 15:03:07 tsutsui Exp $ +# $NetBSD: Makefile,v 1.89 2023/10/22 02:47:07 tsutsui Exp $ -VERSION= 4.2.2 +VERSION= 4.2.3 DISTNAME= PC6001VX_${VERSION}_src PKGNAME= ${DISTNAME:S/_src//:S/_/-/} CATEGORIES= emulators @@ -17,8 +17,14 @@ USE_LANGUAGES= c c++ INSTALLATION_DIRS+= bin +.include "../../mk/bsd.prefs.mk" .include "options.mk" +.if ${OPSYS} == "NetBSD" +# XXX assumes most major Tier-I ports have HZ=100 +QMAKE_ARGS+= DEFINES+="DELAY_TIMER_MS_DEFAULT=10" +.endif + do-configure: cd ${WRKSRC} && ${PKGSRC_SETENV} ${CONFIGURE_ENV} \ ${QTDIR}/bin/qmake -o Makefile ${QMAKE_ARGS} PC6001VX.pro Index: pkgsrc/emulators/PC6001VX/distinfo diff -u pkgsrc/emulators/PC6001VX/distinfo:1.40 pkgsrc/emulators/PC6001VX/distinfo:1.41 --- pkgsrc/emulators/PC6001VX/distinfo:1.40 Sun Oct 15 15:03:07 2023 +++ pkgsrc/emulators/PC6001VX/distinfo Sun Oct 22 02:47:07 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.40 2023/10/15 15:03:07 tsutsui Exp $ +$NetBSD: distinfo,v 1.41 2023/10/22 02:47:07 tsutsui Exp $ -BLAKE2s (PC6001VX_4.2.2_src.tar.gz) = 9162b1c469989564fab5f93087dc7888348183136cf99c9574653265b294fc50 -SHA512 (PC6001VX_4.2.2_src.tar.gz) = 2fd03ca6f92d232f5b3d9a1beda090e10371a068eb03c2374e76de27a6dcbe64803d422e69d27a6e7b8cf21c946c48c8b0737d17d0a62107df20bb7ef2cb0431 -Size (PC6001VX_4.2.2_src.tar.gz) = 5355576 bytes +BLAKE2s (PC6001VX_4.2.3_src.tar.gz) = d1d871bbfc6865ed3594f1844735a2188e409181efd647883c76dcdca1702669 +SHA512 (PC6001VX_4.2.3_src.tar.gz) = 37b75c426ef07b57541b18b9b7bbb1b3f0b0fbb176d5b0b4889258dcd040d8d67ad3c08133e1c401a9e7fe4b2c93c1ac4f297faa95a8aab362395e06f102220e +Size (PC6001VX_4.2.3_src.tar.gz) = 5360268 bytes --_----------=_1697942827172620--