Sat Apr 24 07:31:36 2021 UTC ()
gxemul: update to 0.7.0.

ChangeLog:

20210228	Switching back from C++ to plain C.
		Implementing a helper method for registering device addresses
		as symbols (so that it can be used from several machines).
20210307	Subtle colorized output when stdin/stdout are connected to a
		tty, to make it quicker to interpret text output. Enabled with
		-G or by setting the CLICOLOR environment variable. Can be
		disabled with -A.
20210309	Beginning to separate debug messages into subsystems, that have
		individual verbosity levels.
		Making -K work more consistently (enter the debugger at the
		end of a run). -V implies -K.
		Making -T work better for M88K (breaking into the debugger
		directly on bad memory accesses, if -K is used).
20210310	All MIPS machines now register their devices as symbols (based
		in kseg1, i.e. 0xffffffffa0000000).
20210311	Making -T work better for MIPS, PPC, ARM, and SuperH.
20210314	Adding a -L command line option for enabling tap networking
		without using configuration files.
		-x is now needed if one wants separate xterm windows for serial
		I/O when using configuration files with a single machine.
20210316	debugmsg subsystems can now be registered at runtime; this is
		so far done from the Lance Ethernet device.
		Adding a 'verbosity' debugger command for inspecting and
		setting the verbosity level for individual subsystems.
20210318	Fixing an annoying 'backspace' bug in the debugger command
		line handling, where the response sometimes could become
		"unknown command ''".
		Implementing CTRL-W (erase word) in the debugger.
		Implementing CTRL-T (SIGINFO-like status line) in the debugger.
20210320	Removing the UNSTABLE_DEVEL configure define; it was not used
		much, and the debugmsg verbosity levels can be used in its
		place.
		Fixing a bug for MIPS R2000/R3000 when writing to coprocessor 0
		"entrylo" register (if the lowest 8 bits were 0, the code took
		the non-R2000/R3000 code path).
20210321	Adding an empty i960 CPU skeleton [again].
		Moving 'arch' from struct machine to struct cpu; in the future,
		perhaps this would allow a machine to have heterogenous CPU
		sets (such as the Dreamcast with both SuperH and ARM).
		Removing "slow_serial_interrupts_hack_for_linux" (-U) command
		line option, since it is not used for most guest OSes, and
		occupied a command line option char.
20210323	Breaking out the mb89352 SCSI Protocol Controller from the
		luna88k device, and beginning to implement it. Works well
		enough for OpenBSD's "boot" to read the disk and load the
		kernel, but not well enough for the kernel to like it.
20210324	Adding support for 00 99 01 07 variant of luna88k a.out.
20210325	The mb89352 SCSI controller uses its own subsystem for debug
		messages.
20210327	Adding an empty RISC-V CPU skeleton [again].
		Implementing enough of the mb89352 to allow OpenBSD/luna88k
		to boot with SCSI (both the boot loader and the kernel)!
20210401	Applying a patch from George Matsumura to make things build
		better on Linux: __attribute__((__packed__));  in bootblock.h.
20210405	Adding hardcoded boot_unit=0 and boot_partition=0 NVRAM
		variables to the LUNA-88K machine, allowing OpenBSD/luna88k
		to boot from disk without asking for root and swap partitions.
		Adding 'R' (upper-case) disk image prefix, as a shorthand for
		creating temporary overlays.
20210407	Code for idling the host processor has been moved out from
		individual CPU implementations to the main emul loop.
		Implementing an X11 mouse pointer grab mechanism. Grab is
		activated by clicking in a framebuffer window, and released
		using left CTRL + ALT. When grab is active, the host mouse
		cursor is hidden and the window caption changes to indicate
		that grab is active.
20210408	Implementing an unusual 88K "not_maxneg_nor_zero" bcnd
		condition.
20210409	Moving the LUNA88K framebuffer to its own device file.
		Beginning to implement the LUNA88K front panel LCD.
		Also fixing a bug where the rightmost pixel (or 8 pixels in
		the case of monochrome) were not drawn.
20210410	Also check for X11R7 in the configure script, in addition
		to X11R6.
20210417	Porting over i960CA disassembly from the C++ framework.
20210418	More i960 stuff, including re-adding the (so far dummy)
		Cyclone VH machine.
		Assuming availabilty of __func__ (C99 standard).
20210422	Enabling idle detection for OpenBSD/luna88k, which uses a
		bcnd.n instruction. A hack, but it seems to work.
		Fixing a bug where console input could randomly be lost when
		idling, if there were multiple emulated serial ports.


(fcambus)
diff -r1.72 -r1.73 pkgsrc/emulators/gxemul/Makefile
diff -r1.30 -r1.31 pkgsrc/emulators/gxemul/PLIST
diff -r1.64 -r1.65 pkgsrc/emulators/gxemul/distinfo

cvs diff -r1.72 -r1.73 pkgsrc/emulators/gxemul/Makefile (expand / switch to unified diff)

--- pkgsrc/emulators/gxemul/Makefile 2021/04/17 07:36:53 1.72
+++ pkgsrc/emulators/gxemul/Makefile 2021/04/24 07:31:36 1.73
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1# $NetBSD: Makefile,v 1.72 2021/04/17 07:36:53 ryoon Exp $ 1# $NetBSD: Makefile,v 1.73 2021/04/24 07:31:36 fcambus Exp $
2 2
3DISTNAME= gxemul-0.6.3.1 3DISTNAME= gxemul-0.7.0
4CATEGORIES= emulators 4CATEGORIES= emulators
5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gxemul/} 5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gxemul/}
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8HOMEPAGE= http://gavare.se/gxemul/ 8HOMEPAGE= http://gavare.se/gxemul/
9COMMENT= Framework for full-system computer architecture emulation 9COMMENT= Framework for full-system computer architecture emulation
10LICENSE= modified-bsd 10LICENSE= modified-bsd
11 11
12USE_TOOLS+= pax 12USE_TOOLS+= pax
13 13
14USE_LANGUAGES= c c++ 14USE_LANGUAGES= c
15HAS_CONFIGURE= yes 15HAS_CONFIGURE= yes
16BUILD_TARGET= build 16BUILD_TARGET= build
17 17
18LDFLAGS.SunOS+= -lsocket -lnsl 18LDFLAGS.SunOS+= -lsocket -lnsl
19 19
20INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/${PKGBASE} 20INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/${PKGBASE}
21 21
22do-install: 22do-install:
23 ${INSTALL_PROGRAM} ${WRKSRC}/gxemul ${DESTDIR}${PREFIX}/bin 23 ${INSTALL_PROGRAM} ${WRKSRC}/gxemul ${DESTDIR}${PREFIX}/bin
24 ${INSTALL_MAN} ${WRKSRC}/man/gxemul.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 24 ${INSTALL_MAN} ${WRKSRC}/man/gxemul.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
25.for f in README HISTORY LICENSE 25.for f in README HISTORY LICENSE
26 ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} 26 ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
27.endfor 27.endfor

cvs diff -r1.30 -r1.31 pkgsrc/emulators/gxemul/PLIST (expand / switch to unified diff)

--- pkgsrc/emulators/gxemul/PLIST 2021/04/17 07:36:53 1.30
+++ pkgsrc/emulators/gxemul/PLIST 2021/04/24 07:31:36 1.31
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.30 2021/04/17 07:36:53 ryoon Exp $ 1@comment $NetBSD: PLIST,v 1.31 2021/04/24 07:31:36 fcambus Exp $
2bin/gxemul 2bin/gxemul
3man/man1/gxemul.1 3man/man1/gxemul.1
4share/doc/gxemul/20040504-ultrix45-boot1.png 4share/doc/gxemul/20040504-ultrix45-boot1.png
5share/doc/gxemul/20040504-ultrix45-boot1_small.png 5share/doc/gxemul/20040504-ultrix45-boot1_small.png
6share/doc/gxemul/20040710-openbsd-pmax.png 6share/doc/gxemul/20040710-openbsd-pmax.png
7share/doc/gxemul/20040710-openbsd-pmax_small.png 7share/doc/gxemul/20040710-openbsd-pmax_small.png
8share/doc/gxemul/20040711-sprite-1.png 8share/doc/gxemul/20040711-sprite-1.png
9share/doc/gxemul/20040711-sprite-1_small.png 9share/doc/gxemul/20040711-sprite-1_small.png
10share/doc/gxemul/20041018-mach_pmax.png 10share/doc/gxemul/20041018-mach_pmax.png
11share/doc/gxemul/20041018-mach_pmax_small.png 11share/doc/gxemul/20041018-mach_pmax_small.png
12share/doc/gxemul/20041024-netbsd-arc-installed.gif 12share/doc/gxemul/20041024-netbsd-arc-installed.gif
13share/doc/gxemul/20041024-netbsd-arc-installed_small.gif 13share/doc/gxemul/20041024-netbsd-arc-installed_small.gif
14share/doc/gxemul/20041024-openbsd-arc-installed.gif 14share/doc/gxemul/20041024-openbsd-arc-installed.gif
@@ -108,39 +108,33 @@ share/doc/gxemul/20190528-winnt-arc-mips @@ -108,39 +108,33 @@ share/doc/gxemul/20190528-winnt-arc-mips
108share/doc/gxemul/20190528-winnt-arc-mips-video-fail_small.png 108share/doc/gxemul/20190528-winnt-arc-mips-video-fail_small.png
109share/doc/gxemul/20190612-netbsd-sgimips-1.png 109share/doc/gxemul/20190612-netbsd-sgimips-1.png
110share/doc/gxemul/20190612-netbsd-sgimips-1_small.png 110share/doc/gxemul/20190612-netbsd-sgimips-1_small.png
111share/doc/gxemul/20190612-netbsd-sgimips-2.png 111share/doc/gxemul/20190612-netbsd-sgimips-2.png
112share/doc/gxemul/20190612-netbsd-sgimips-2_small.png 112share/doc/gxemul/20190612-netbsd-sgimips-2_small.png
113share/doc/gxemul/20190616-netbsd-playstation2-userland-small.png 113share/doc/gxemul/20190616-netbsd-playstation2-userland-small.png
114share/doc/gxemul/20190616-netbsd-playstation2-userland.png 114share/doc/gxemul/20190616-netbsd-playstation2-userland.png
115share/doc/gxemul/20190715-sgi-o2-linux-small.png 115share/doc/gxemul/20190715-sgi-o2-linux-small.png
116share/doc/gxemul/20190715-sgi-o2-linux.png 116share/doc/gxemul/20190715-sgi-o2-linux.png
117share/doc/gxemul/20210222-openbsd-luna88k-mp-1-small.png 117share/doc/gxemul/20210222-openbsd-luna88k-mp-1-small.png
118share/doc/gxemul/20210222-openbsd-luna88k-mp-1.png 118share/doc/gxemul/20210222-openbsd-luna88k-mp-1.png
119share/doc/gxemul/20210222-openbsd-luna88k-mp-2-small.png 119share/doc/gxemul/20210222-openbsd-luna88k-mp-2-small.png
120share/doc/gxemul/20210222-openbsd-luna88k-mp-2.png 120share/doc/gxemul/20210222-openbsd-luna88k-mp-2.png
121share/doc/gxemul/Doxyfile 121share/doc/gxemul/20210328-openbsd-luna88k-inside-openbsd-luna88k-small.png
 122share/doc/gxemul/20210328-openbsd-luna88k-inside-openbsd-luna88k.png
122share/doc/gxemul/HISTORY 123share/doc/gxemul/HISTORY
123share/doc/gxemul/LICENSE 124share/doc/gxemul/LICENSE
124share/doc/gxemul/README 125share/doc/gxemul/README
125share/doc/gxemul/RELEASE.html 126share/doc/gxemul/RELEASE.html
126share/doc/gxemul/TODO.html 127share/doc/gxemul/TODO.html
127share/doc/gxemul/components/component_cache.html 
128share/doc/gxemul/components/component_cpu.html 
129share/doc/gxemul/components/component_dummy.html 
130share/doc/gxemul/components/component_i960_cpu.html 
131share/doc/gxemul/components/component_m88k_cpu.html 
132share/doc/gxemul/components/component_mainbus.html 
133share/doc/gxemul/components/component_ram.html 
134share/doc/gxemul/configfiles.html 128share/doc/gxemul/configfiles.html
135share/doc/gxemul/debian-1-small.png 129share/doc/gxemul/debian-1-small.png
136share/doc/gxemul/debian-1.png 130share/doc/gxemul/debian-1.png
137share/doc/gxemul/debian-10-small.png 131share/doc/gxemul/debian-10-small.png
138share/doc/gxemul/debian-10.png 132share/doc/gxemul/debian-10.png
139share/doc/gxemul/debian-11-small.png 133share/doc/gxemul/debian-11-small.png
140share/doc/gxemul/debian-11.png 134share/doc/gxemul/debian-11.png
141share/doc/gxemul/debian-12-small.png 135share/doc/gxemul/debian-12-small.png
142share/doc/gxemul/debian-12.png 136share/doc/gxemul/debian-12.png
143share/doc/gxemul/debian-13-small.png 137share/doc/gxemul/debian-13-small.png
144share/doc/gxemul/debian-13.png 138share/doc/gxemul/debian-13.png
145share/doc/gxemul/debian-14-small.png 139share/doc/gxemul/debian-14-small.png
146share/doc/gxemul/debian-14.png 140share/doc/gxemul/debian-14.png
@@ -153,73 +147,59 @@ share/doc/gxemul/debian-3.png @@ -153,73 +147,59 @@ share/doc/gxemul/debian-3.png
153share/doc/gxemul/debian-4-small.png 147share/doc/gxemul/debian-4-small.png
154share/doc/gxemul/debian-4.png 148share/doc/gxemul/debian-4.png
155share/doc/gxemul/debian-5-small.png 149share/doc/gxemul/debian-5-small.png
156share/doc/gxemul/debian-5.png 150share/doc/gxemul/debian-5.png
157share/doc/gxemul/debian-6-small.png 151share/doc/gxemul/debian-6-small.png
158share/doc/gxemul/debian-6.png 152share/doc/gxemul/debian-6.png
159share/doc/gxemul/debian-7-small.png 153share/doc/gxemul/debian-7-small.png
160share/doc/gxemul/debian-7.png 154share/doc/gxemul/debian-7.png
161share/doc/gxemul/debian-8-small.png 155share/doc/gxemul/debian-8-small.png
162share/doc/gxemul/debian-8.png 156share/doc/gxemul/debian-8.png
163share/doc/gxemul/debian-9-small.png 157share/doc/gxemul/debian-9-small.png
164share/doc/gxemul/debian-9.png 158share/doc/gxemul/debian-9.png
165share/doc/gxemul/debugging.html 159share/doc/gxemul/debugging.html
166share/doc/gxemul/doxygen.css 
167share/doc/gxemul/doxygen_footerFile.html 
168share/doc/gxemul/doxygen_headerFile.html 
169share/doc/gxemul/experiments.html 160share/doc/gxemul/experiments.html
170share/doc/gxemul/framework.html 
171share/doc/gxemul/generate_machine_doc.sh 161share/doc/gxemul/generate_machine_doc.sh
172share/doc/gxemul/head.html 
173share/doc/gxemul/index.html 162share/doc/gxemul/index.html
174share/doc/gxemul/intro.html 163share/doc/gxemul/intro.html
175share/doc/gxemul/machine_algor.html 164share/doc/gxemul/machine_algor.html
176share/doc/gxemul/machine_arc.html 165share/doc/gxemul/machine_arc.html
177share/doc/gxemul/machine_cats.html 166share/doc/gxemul/machine_cats.html
178share/doc/gxemul/machine_cobalt.html 167share/doc/gxemul/machine_cobalt.html
179share/doc/gxemul/machine_decstation.html 168share/doc/gxemul/machine_decstation.html
180share/doc/gxemul/machine_dreamcast.html 169share/doc/gxemul/machine_dreamcast.html
181share/doc/gxemul/machine_evbarm.html 170share/doc/gxemul/machine_evbarm.html
182share/doc/gxemul/machine_evbmips.html 171share/doc/gxemul/machine_evbmips.html
183share/doc/gxemul/machine_hpcmips.html 172share/doc/gxemul/machine_hpcmips.html
184share/doc/gxemul/machine_landisk.html 173share/doc/gxemul/machine_landisk.html
185share/doc/gxemul/machine_luna88k.html 174share/doc/gxemul/machine_luna88k.html
186share/doc/gxemul/machine_macppc.html 175share/doc/gxemul/machine_macppc.html
187share/doc/gxemul/machine_mvme88k.html 176share/doc/gxemul/machine_mvme88k.html
188share/doc/gxemul/machine_netwinder.html 177share/doc/gxemul/machine_netwinder.html
189share/doc/gxemul/machine_pmppc.html 178share/doc/gxemul/machine_pmppc.html
190share/doc/gxemul/machine_prep.html 179share/doc/gxemul/machine_prep.html
191share/doc/gxemul/machine_ps2.html 180share/doc/gxemul/machine_ps2.html
192share/doc/gxemul/machine_rpi.html 181share/doc/gxemul/machine_rpi.html
193share/doc/gxemul/machine_sgi_o2.html 182share/doc/gxemul/machine_sgi_o2.html
194share/doc/gxemul/machine_template.html 183share/doc/gxemul/machine_template.html
195share/doc/gxemul/machine_vocore.html 184share/doc/gxemul/machine_vocore.html
196share/doc/gxemul/machines/machine_cyclonevh.html.SKEL 
197share/doc/gxemul/machines/machine_hp700rx.html.SKEL 
198share/doc/gxemul/machines/machine_mvme187.html.SKEL 
199share/doc/gxemul/machines/machine_testm88k-thumb.png 
200share/doc/gxemul/machines/machine_testm88k.html.SKEL 
201share/doc/gxemul/machines/machine_testm88k.png 
202share/doc/gxemul/machines/machine_testmips-thumb.png 
203share/doc/gxemul/misc.html 185share/doc/gxemul/misc.html
204share/doc/gxemul/model.png 
205share/doc/gxemul/networking.html 186share/doc/gxemul/networking.html
206share/doc/gxemul/openbsd-luna88k-20210130-small.png 187share/doc/gxemul/openbsd-luna88k-20210130-small.png
207share/doc/gxemul/openbsd-luna88k-20210130.png 188share/doc/gxemul/openbsd-luna88k-20210130.png
208share/doc/gxemul/openbsd-luna88k-20210209-small.png 189share/doc/gxemul/openbsd-luna88k-20210209-small.png
209share/doc/gxemul/openbsd-luna88k-20210209.png 190share/doc/gxemul/openbsd-luna88k-20210209.png
210share/doc/gxemul/openbsd-luna88k-20210220-small.png 191share/doc/gxemul/openbsd-luna88k-20210220-small.png
211share/doc/gxemul/openbsd-luna88k-20210220.png 192share/doc/gxemul/openbsd-luna88k-20210220.png
212share/doc/gxemul/openbsd-pmax-20040710.png 193share/doc/gxemul/openbsd-pmax-20040710.png
213share/doc/gxemul/openbsd-pmax-20040710_small.png 194share/doc/gxemul/openbsd-pmax-20040710_small.png
214share/doc/gxemul/openbsd-sgi-x-20210220-small.png 195share/doc/gxemul/openbsd-sgi-x-20210220-small.png
215share/doc/gxemul/openbsd-sgi-x-20210220.png 196share/doc/gxemul/openbsd-sgi-x-20210220.png
216share/doc/gxemul/sgi-o2-real.jpg 197share/doc/gxemul/sgi-o2-real.jpg
217share/doc/gxemul/sgi-o2-real_small.jpg 198share/doc/gxemul/sgi-o2-real_small.jpg
218share/doc/gxemul/simplified_dyntrans.png 199share/doc/gxemul/simplified_dyntrans.png
219share/doc/gxemul/sprite-20040711.png 200share/doc/gxemul/sprite-20040711.png
220share/doc/gxemul/sprite-20040711_small.png 201share/doc/gxemul/sprite-20040711_small.png
221share/doc/gxemul/tail.html 
222share/doc/gxemul/technical.html 202share/doc/gxemul/technical.html
223share/doc/gxemul/translation.html 203share/doc/gxemul/translation.html
224share/doc/gxemul/ultrix4.5-20040706.png 204share/doc/gxemul/ultrix4.5-20040706.png
225share/doc/gxemul/ultrix4.5-20040706_small.png 205share/doc/gxemul/ultrix4.5-20040706_small.png

cvs diff -r1.64 -r1.65 pkgsrc/emulators/gxemul/distinfo (expand / switch to unified diff)

--- pkgsrc/emulators/gxemul/distinfo 2021/04/17 07:36:53 1.64
+++ pkgsrc/emulators/gxemul/distinfo 2021/04/24 07:31:36 1.65
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.64 2021/04/17 07:36:53 ryoon Exp $ 1$NetBSD: distinfo,v 1.65 2021/04/24 07:31:36 fcambus Exp $
2 2
3SHA1 (gxemul-0.6.3.1.tar.gz) = 30699f04c5a18c34b738c17304dad0d3e47e1f38 3SHA1 (gxemul-0.7.0.tar.gz) = 3a201be34b53bc851842c5a2ded6244e217e7cca
4RMD160 (gxemul-0.6.3.1.tar.gz) = c9c4466445093abf1d111d4b66107d318cb274b4 4RMD160 (gxemul-0.7.0.tar.gz) = 590a2ab904c2999552e33da42f1724d44efb9342
5SHA512 (gxemul-0.6.3.1.tar.gz) = b750a53c764245d2c02147beefdac4f44f1e6bad0f390a2300b3907b312d59a41fa8f6de612494627366f1787e49174acfc9113263901af878fab8e925b0645e 5SHA512 (gxemul-0.7.0.tar.gz) = d977342843e903aedd9dcdf6fdab81ceb5ee1552bf3b90deb77eb59b42e5fad3a65f216ce33cf33259372ff9a10af5b1365827de949f0c61fb9859b417972c71
6Size (gxemul-0.6.3.1.tar.gz) = 6144125 bytes 6Size (gxemul-0.7.0.tar.gz) = 5985021 bytes