summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2015-08-08 18:44:32 +0000
committerdholland <dholland@pkgsrc.org>2015-08-08 18:44:32 +0000
commit38f7d591251ce6871dd4cc4e028c915882d29afd (patch)
treec4c7fce26c497a8281ad5f8c490e9d33b37ef932
parentd982ff55fa4f12769b9c42151c1ce0e18f9e55bf (diff)
downloadpkgsrc-38f7d591251ce6871dd4cc4e028c915882d29afd.tar.gz
Update to 2.0.3.
Upstream changes: 20150804 dholland System/161 2.0.3 released. 20150714 dholland Fix the serial port FORCE logic meant to prevent ........ interrupt flapping. Thanks to Winnie Wu for a test ........ kernel and workload that reliably repeated the problem. 20150709 dholland Recognize some obvious aliases for disk161 commands. 20150706 dholland Add page on profiling to the manual. 20150706 dholland Add dynamic profiling control to the trace device. 20150703 dholland If profiling, write the profile out if we die(). 20150703 dholland Include seek times in disk activity trace output. 20150126 dholland System/161 2.0.2 released. 20150126 dholland Fix brown paper bag release. Sigh. 20150126 dholland System/161 2.0.1 released. 20150121 dholland Fix up some gdb threads issues appearing with gdb 7.8. 20150117 dholland Update included .hgignore file, from Cary Gray. 20150115 dholland System/161 2.0 released. 20150115 dholland Add workaround to make disk rotdelay deterministic. 20150114 dholland Fix stdint.h-related build problems on Linux. 20150114 dholland Fix flock-related build problem on Linux. 20150109 dholland Add software debugger requests to the trace device. 20150105 dholland Make the testsuite run. 20150105 dholland Add support for installing into a chroot/DESTDIR. 20150105 dholland Add man pages for all executables.
-rw-r--r--emulators/sys161/Makefile6
-rw-r--r--emulators/sys161/PLIST7
-rw-r--r--emulators/sys161/distinfo9
-rw-r--r--emulators/sys161/patches/patch-mk_doc.mk13
4 files changed, 27 insertions, 8 deletions
diff --git a/emulators/sys161/Makefile b/emulators/sys161/Makefile
index ab2d115a2e5..ae81db82f82 100644
--- a/emulators/sys161/Makefile
+++ b/emulators/sys161/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2014/12/10 05:46:00 dholland Exp $
+# $NetBSD: Makefile,v 1.5 2015/08/08 18:44:32 dholland Exp $
-DISTNAME= sys161-1.99.10
+DISTNAME= sys161-2.0.3
CATEGORIES= emulators
MASTER_SITES= http://www.eecs.harvard.edu/~dholland/os161/download/
@@ -10,6 +10,6 @@ COMMENT= System/161 MIPS emulator
LICENSE= modified-bsd
HAS_CONFIGURE= yes
-CONFIGURE_ARGS+= --prefix=${DESTDIR}${PREFIX} mipseb
+CONFIGURE_ARGS+= --destdir=${DESTDIR} --prefix=${PREFIX} mipseb
.include "../../mk/bsd.pkg.mk"
diff --git a/emulators/sys161/PLIST b/emulators/sys161/PLIST
index 067d8fde00a..7134073ccef 100644
--- a/emulators/sys161/PLIST
+++ b/emulators/sys161/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2014/10/01 08:11:29 dholland Exp $
+@comment $NetBSD: PLIST,v 1.3 2015/08/08 18:44:32 dholland Exp $
bin/disk161
bin/disk161-${PKGVERSION}
bin/hub161
@@ -9,6 +9,10 @@ bin/sys161
bin/sys161-${PKGVERSION}
bin/trace161
bin/trace161-${PKGVERSION}
+man/man1/disk161.1
+man/man1/hub161.1
+man/man1/stat161.1
+man/man1/sys161.1
share/doc/sys161/copying.txt
share/doc/sys161/devices.html
share/doc/sys161/gdb.html
@@ -17,5 +21,6 @@ share/doc/sys161/install.html
share/doc/sys161/lamebus.html
share/doc/sys161/mips.html
share/doc/sys161/networking.html
+share/doc/sys161/prof.html
share/doc/sys161/system.html
share/examples/sys161/sys161.conf.sample
diff --git a/emulators/sys161/distinfo b/emulators/sys161/distinfo
index 465f7f98482..9f77e276325 100644
--- a/emulators/sys161/distinfo
+++ b/emulators/sys161/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.4 2014/12/10 05:46:00 dholland Exp $
+$NetBSD: distinfo,v 1.5 2015/08/08 18:44:32 dholland Exp $
-SHA1 (sys161-1.99.10.tar.gz) = 8a9a26146516f650d7589032d3fac5d9fbfd5fc1
-RMD160 (sys161-1.99.10.tar.gz) = a3074fd766cace345b136a09b60fb13536f5e027
-Size (sys161-1.99.10.tar.gz) = 159582 bytes
+SHA1 (sys161-2.0.3.tar.gz) = 6838db38039f146f603b910c3e3aaa4bc82f7cc0
+RMD160 (sys161-2.0.3.tar.gz) = 91837c6ca9bf8715c8891c085f80317f863d6897
+Size (sys161-2.0.3.tar.gz) = 166109 bytes
+SHA1 (patch-mk_doc.mk) = 29fd6421a8865c39665fa4cda02133f2c6c862b2
diff --git a/emulators/sys161/patches/patch-mk_doc.mk b/emulators/sys161/patches/patch-mk_doc.mk
new file mode 100644
index 00000000000..7cab18e6cf0
--- /dev/null
+++ b/emulators/sys161/patches/patch-mk_doc.mk
@@ -0,0 +1,13 @@
+$NetBSD: patch-mk_doc.mk,v 1.1 2015/08/08 18:44:32 dholland Exp $
+
+--- mk/doc.mk~ 2015-08-05 04:18:46.000000000 +0000
++++ mk/doc.mk
+@@ -3,7 +3,7 @@
+ #
+
+ HTML=devices.html gdb.html index.html install.html lamebus.html \
+- mips.html networking.html system.html
++ mips.html networking.html prof.html system.html
+
+
+ include defs.mk