pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/emulators/gxemul



Module Name:    pkgsrc
Committed By:   fcambus
Date:           Sat Apr 24 07:31:36 UTC 2021

Modified Files:
        pkgsrc/emulators/gxemul: Makefile PLIST distinfo

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 pkgsrc/emulators/gxemul/Makefile
cvs rdiff -u -r1.30 -r1.31 pkgsrc/emulators/gxemul/PLIST
cvs rdiff -u -r1.64 -r1.65 pkgsrc/emulators/gxemul/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/emulators/gxemul/Makefile
diff -u pkgsrc/emulators/gxemul/Makefile:1.72 pkgsrc/emulators/gxemul/Makefile:1.73
--- pkgsrc/emulators/gxemul/Makefile:1.72       Sat Apr 17 07:36:53 2021
+++ pkgsrc/emulators/gxemul/Makefile    Sat Apr 24 07:31:36 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.72 2021/04/17 07:36:53 ryoon Exp $
+# $NetBSD: Makefile,v 1.73 2021/04/24 07:31:36 fcambus Exp $
 
-DISTNAME=      gxemul-0.6.3.1
+DISTNAME=      gxemul-0.7.0
 CATEGORIES=    emulators
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=gxemul/}
 
@@ -11,7 +11,7 @@ LICENSE=      modified-bsd
 
 USE_TOOLS+=    pax
 
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c
 HAS_CONFIGURE= yes
 BUILD_TARGET=  build
 

Index: pkgsrc/emulators/gxemul/PLIST
diff -u pkgsrc/emulators/gxemul/PLIST:1.30 pkgsrc/emulators/gxemul/PLIST:1.31
--- pkgsrc/emulators/gxemul/PLIST:1.30  Sat Apr 17 07:36:53 2021
+++ pkgsrc/emulators/gxemul/PLIST       Sat Apr 24 07:31:36 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.30 2021/04/17 07:36:53 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.31 2021/04/24 07:31:36 fcambus Exp $
 bin/gxemul
 man/man1/gxemul.1
 share/doc/gxemul/20040504-ultrix45-boot1.png
@@ -118,19 +118,13 @@ share/doc/gxemul/20210222-openbsd-luna88
 share/doc/gxemul/20210222-openbsd-luna88k-mp-1.png
 share/doc/gxemul/20210222-openbsd-luna88k-mp-2-small.png
 share/doc/gxemul/20210222-openbsd-luna88k-mp-2.png
-share/doc/gxemul/Doxyfile
+share/doc/gxemul/20210328-openbsd-luna88k-inside-openbsd-luna88k-small.png
+share/doc/gxemul/20210328-openbsd-luna88k-inside-openbsd-luna88k.png
 share/doc/gxemul/HISTORY
 share/doc/gxemul/LICENSE
 share/doc/gxemul/README
 share/doc/gxemul/RELEASE.html
 share/doc/gxemul/TODO.html
-share/doc/gxemul/components/component_cache.html
-share/doc/gxemul/components/component_cpu.html
-share/doc/gxemul/components/component_dummy.html
-share/doc/gxemul/components/component_i960_cpu.html
-share/doc/gxemul/components/component_m88k_cpu.html
-share/doc/gxemul/components/component_mainbus.html
-share/doc/gxemul/components/component_ram.html
 share/doc/gxemul/configfiles.html
 share/doc/gxemul/debian-1-small.png
 share/doc/gxemul/debian-1.png
@@ -163,13 +157,8 @@ share/doc/gxemul/debian-8.png
 share/doc/gxemul/debian-9-small.png
 share/doc/gxemul/debian-9.png
 share/doc/gxemul/debugging.html
-share/doc/gxemul/doxygen.css
-share/doc/gxemul/doxygen_footerFile.html
-share/doc/gxemul/doxygen_headerFile.html
 share/doc/gxemul/experiments.html
-share/doc/gxemul/framework.html
 share/doc/gxemul/generate_machine_doc.sh
-share/doc/gxemul/head.html
 share/doc/gxemul/index.html
 share/doc/gxemul/intro.html
 share/doc/gxemul/machine_algor.html
@@ -193,15 +182,7 @@ share/doc/gxemul/machine_rpi.html
 share/doc/gxemul/machine_sgi_o2.html
 share/doc/gxemul/machine_template.html
 share/doc/gxemul/machine_vocore.html
-share/doc/gxemul/machines/machine_cyclonevh.html.SKEL
-share/doc/gxemul/machines/machine_hp700rx.html.SKEL
-share/doc/gxemul/machines/machine_mvme187.html.SKEL
-share/doc/gxemul/machines/machine_testm88k-thumb.png
-share/doc/gxemul/machines/machine_testm88k.html.SKEL
-share/doc/gxemul/machines/machine_testm88k.png
-share/doc/gxemul/machines/machine_testmips-thumb.png
 share/doc/gxemul/misc.html
-share/doc/gxemul/model.png
 share/doc/gxemul/networking.html
 share/doc/gxemul/openbsd-luna88k-20210130-small.png
 share/doc/gxemul/openbsd-luna88k-20210130.png
@@ -218,7 +199,6 @@ share/doc/gxemul/sgi-o2-real_small.jpg
 share/doc/gxemul/simplified_dyntrans.png
 share/doc/gxemul/sprite-20040711.png
 share/doc/gxemul/sprite-20040711_small.png
-share/doc/gxemul/tail.html
 share/doc/gxemul/technical.html
 share/doc/gxemul/translation.html
 share/doc/gxemul/ultrix4.5-20040706.png

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



Home | Main Index | Thread Index | Old Index