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:           Wed Oct  8 09:19:14 UTC 2025
Modified Files:
        pkgsrc/emulators/PC6001VX: Makefile distinfo
Added Files:
        pkgsrc/emulators/PC6001VX/patches: patch-src_typedef.h
Log Message:
PC6001VX: fix endian issue on Z80 emulation on armeb.
Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 pkgsrc/emulators/PC6001VX/Makefile
cvs rdiff -u -r1.51 -r1.52 pkgsrc/emulators/PC6001VX/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/emulators/PC6001VX/patches/patch-src_typedef.h
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.116 pkgsrc/emulators/PC6001VX/Makefile:1.117
--- pkgsrc/emulators/PC6001VX/Makefile:1.116    Sat Aug 30 20:56:41 2025
+++ pkgsrc/emulators/PC6001VX/Makefile  Wed Oct  8 09:19:14 2025
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.116 2025/08/30 20:56:41 tsutsui Exp $
+# $NetBSD: Makefile,v 1.117 2025/10/08 09:19:14 tsutsui Exp $
 
 VERSION=               4.2.14
 DISTNAME=              PC6001VX_${VERSION}_src
 PKGNAME=               ${DISTNAME:S/_src//:S/_/-/}
+PKGREVISION=           1
 CATEGORIES=            emulators
 MASTER_SITES=          https://eighttails.up.seesaa.net/bin/
 
Index: pkgsrc/emulators/PC6001VX/distinfo
diff -u pkgsrc/emulators/PC6001VX/distinfo:1.51 pkgsrc/emulators/PC6001VX/distinfo:1.52
--- pkgsrc/emulators/PC6001VX/distinfo:1.51     Sat Aug 30 20:56:41 2025
+++ pkgsrc/emulators/PC6001VX/distinfo  Wed Oct  8 09:19:14 2025
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.51 2025/08/30 20:56:41 tsutsui Exp $
+$NetBSD: distinfo,v 1.52 2025/10/08 09:19:14 tsutsui Exp $
 
 BLAKE2s (PC6001VX_4.2.14_src.tar.gz) = 8bfdb6669cb3101cf2349ea4684e51b1f362f7a79ddd9ef6255f1a1222bd8c52
 SHA512 (PC6001VX_4.2.14_src.tar.gz) = 35dbb3cc2a34827758859f8324ab012122af8d7eaf4376fc0ce854ac330fc06f4666cc9e2f5cac429ce97f6d1d5dcc3b3d123e219a58f93d419e4f363772636b
 Size (PC6001VX_4.2.14_src.tar.gz) = 5983971 bytes
+SHA1 (patch-src_typedef.h) = 5617b7ffdddb9ab447130fd75242d3efc7e97153
Added files:
Index: pkgsrc/emulators/PC6001VX/patches/patch-src_typedef.h
diff -u /dev/null pkgsrc/emulators/PC6001VX/patches/patch-src_typedef.h:1.1
--- /dev/null   Wed Oct  8 09:19:14 2025
+++ pkgsrc/emulators/PC6001VX/patches/patch-src_typedef.h       Wed Oct  8 09:19:14 2025
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_typedef.h,v 1.1 2025/10/08 09:19:14 tsutsui Exp $
+
+- fix endian issue on Z80 emulation on big endian ARM
+ https://github.com/eighttails/PC6001VX/issues/25
+
+--- src/typedef.h.orig 2025-10-08 08:54:41.470982282 +0000
++++ src/typedef.h
+@@ -77,7 +77,8 @@ using P6VPATH = std::string;
+ #define P6V_BIG_ENDIAN        4321
+ 
+ #ifndef BYTEORDER
+-#if defined(__hppa__) || \
++#if defined(__ARMEB__) || \
++    defined(__hppa__) || \
+     defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \
+     (defined(__MIPS__) && defined(__MISPEB__)) || \
+     defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || \
Home |
Main Index |
Thread Index |
Old Index