pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/emulators/PC6001VX
Module Name: pkgsrc
Committed By: tsutsui
Date: Fri Apr 4 23:32:21 UTC 2025
Modified Files:
pkgsrc/emulators/PC6001VX: Makefile distinfo
Added Files:
pkgsrc/emulators/PC6001VX/patches: patch-src_debug.cpp
Log Message:
PC6001VX: apply patch to work around upstream issue #19.
Filenames are implicitly converted to uppercase on loadmem and
savemem commands on debugger mode.
To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 pkgsrc/emulators/PC6001VX/Makefile
cvs rdiff -u -r1.47 -r1.48 pkgsrc/emulators/PC6001VX/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/emulators/PC6001VX/patches/patch-src_debug.cpp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/emulators/PC6001VX/Makefile
diff -u pkgsrc/emulators/PC6001VX/Makefile:1.108 pkgsrc/emulators/PC6001VX/Makefile:1.109
--- pkgsrc/emulators/PC6001VX/Makefile:1.108 Tue Feb 25 17:01:32 2025
+++ pkgsrc/emulators/PC6001VX/Makefile Fri Apr 4 23:32:21 2025
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.108 2025/02/25 17:01:32 tsutsui Exp $
+# $NetBSD: Makefile,v 1.109 2025/04/04 23:32:21 tsutsui Exp $
VERSION= 4.2.11
DISTNAME= PC6001VX_${VERSION}_src
PKGNAME= ${DISTNAME:S/_src//:S/_/-/}
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= emulators
MASTER_SITES= http://eighttails.up.seesaa.net/bin/
Index: pkgsrc/emulators/PC6001VX/distinfo
diff -u pkgsrc/emulators/PC6001VX/distinfo:1.47 pkgsrc/emulators/PC6001VX/distinfo:1.48
--- pkgsrc/emulators/PC6001VX/distinfo:1.47 Mon Feb 10 22:57:22 2025
+++ pkgsrc/emulators/PC6001VX/distinfo Fri Apr 4 23:32:21 2025
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.47 2025/02/10 22:57:22 tsutsui Exp $
+$NetBSD: distinfo,v 1.48 2025/04/04 23:32:21 tsutsui Exp $
BLAKE2s (PC6001VX_4.2.11_src.tar.gz) = 4c9f57c50c8069ba63f02c96f005a54aa75d25a30f5b924731c07954f2f38720
SHA512 (PC6001VX_4.2.11_src.tar.gz) = 1aa7e0798223e6368fbd0b8db3b6a53133d2cb73fde3a6ca8e48314557303b49c907d7ac5b6f4265e1f8c43a8b9ea16b8c360ab14828703ec1f8da900230c485
Size (PC6001VX_4.2.11_src.tar.gz) = 5976484 bytes
+SHA1 (patch-src_debug.cpp) = ff1aeca1bd1ebe44beb8ce6c27770b14e22b2490
Added files:
Index: pkgsrc/emulators/PC6001VX/patches/patch-src_debug.cpp
diff -u /dev/null pkgsrc/emulators/PC6001VX/patches/patch-src_debug.cpp:1.1
--- /dev/null Fri Apr 4 23:32:21 2025
+++ pkgsrc/emulators/PC6001VX/patches/patch-src_debug.cpp Fri Apr 4 23:32:21 2025
@@ -0,0 +1,19 @@
+$NetBSD: patch-src_debug.cpp,v 1.1 2025/04/04 23:32:21 tsutsui Exp $
+
+- workaround for upstream issue #19:
+ https://github.com/eighttails/PC6001VX/issues/19
+ Filenames are implicitly converted to uppercase on loadmem and
+ savemem commands on debugger mode.
+
+--- src/debug.cpp.orig 2025-04-04 18:24:39.861946787 +0000
++++ src/debug.cpp
+@@ -1044,7 +1044,9 @@ void cWndMon::Shift( void )
+ argv.Str = Argv.front();
+
+ // 大文字化
++#if defined(_WIN32) || defined(_WIN64)
+ std::transform( argv.Str.begin(), argv.Str.end(), argv.Str.begin(), ::toupper );
++#endif
+
+ if( argv.Str.front() == '#' ){
+ size = true;
Home |
Main Index |
Thread Index |
Old Index