diff options
author | schmonz <schmonz@pkgsrc.org> | 2009-08-03 15:51:40 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2009-08-03 15:51:40 +0000 |
commit | 7662d601fec81be3c3235ef628f413de4f793d41 (patch) | |
tree | 7995eca0ebedeea1165bc9ad297b881f4ebc3c89 /sysutils | |
parent | db699bc5a9e33d7bc8dcb3cbac07cb1a178a3734 (diff) | |
download | pkgsrc-7662d601fec81be3c3235ef628f413de4f793d41.tar.gz |
Update to 4.1.2. From the changelog:
- fix portability issue with MAP_LOCKED flag. Thanks: Scott Haneda.
- remove debugging output accidentally left in v.4.1.0.
- cleanups
- memtester.h was missing from the 4.1.0 tarball; release update to
fix that. Thanks: Owen Leonard.
- added the ability to test a specific physical region of memory
(by mmap'ing /dev/mem) with the new -p option, which takes a
hex starting address as a value. This is mostly of use to
developers trying to verify memory or I/O mapped devices (on
an embedded system, for instance). Thanks: Allon Stern.
- re-add the ability to set a suffix on the memory to allocate:
"3G", "128K", etc, mostly for use with the above new feature,
where the "memory" to be tested is less than a megabyte, but
also useful for users wanting to test many gigabytes; you no
longer have to do the conversion-to-megs in your head.
- documentation updates and clarifications.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/memtester/Makefile | 13 | ||||
-rw-r--r-- | sysutils/memtester/distinfo | 8 |
2 files changed, 12 insertions, 9 deletions
diff --git a/sysutils/memtester/Makefile b/sysutils/memtester/Makefile index cde7aea5d77..30e98b39e2a 100644 --- a/sysutils/memtester/Makefile +++ b/sysutils/memtester/Makefile @@ -1,16 +1,18 @@ -# $NetBSD: Makefile,v 1.17 2007/11/21 18:41:19 xtraeme Exp $ +# $NetBSD: Makefile,v 1.18 2009/08/03 15:51:40 schmonz Exp $ # -DISTNAME= memtester-4.0.8 +DISTNAME= memtester-4.1.2 CATEGORIES= sysutils MASTER_SITES= ${HOMEPAGE}old-versions/ MAINTAINER= schmonz@NetBSD.org HOMEPAGE= http://pyropus.ca/software/memtester/ COMMENT= Utility for testing the memory subsystem for faults +LICENSE= gnu-gpl-v2 NOT_FOR_PLATFORM= Interix-*-* # no m[un]lock(2), so not useful anyway +PKG_DESTDIR_SUPPORT= user-destdir PKG_INSTALLATION_TYPES= overwrite pkgviews DJB_RESTRICTED= NO @@ -19,9 +21,10 @@ DJB_MAKE_TARGETS= NO INSTALLATION_DIRS= bin ${PKGMANDIR}/man8 share/doc/memtester do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/memtester ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/memtester.8 ${PREFIX}/${PKGMANDIR}/man8 - ${INSTALL_DATA} ${WRKSRC}/README.tests ${PREFIX}/share/doc/memtester + cd ${WRKSRC} && \ + ${INSTALL_PROGRAM} memtester ${DESTDIR}${PREFIX}/bin; \ + ${INSTALL_MAN} memtester.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8; \ + ${INSTALL_DATA} README.tests ${DESTDIR}${PREFIX}/share/doc/memtester .include "../../mk/djbware.mk" .include "../../mk/bsd.pkg.mk" diff --git a/sysutils/memtester/distinfo b/sysutils/memtester/distinfo index d43e8738e38..faa3ca5e05a 100644 --- a/sysutils/memtester/distinfo +++ b/sysutils/memtester/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2007/11/21 18:41:20 xtraeme Exp $ +$NetBSD: distinfo,v 1.11 2009/08/03 15:51:40 schmonz Exp $ -SHA1 (memtester-4.0.8.tar.gz) = 1330edaa60e0d797b83df51a56bba377db9223fc -RMD160 (memtester-4.0.8.tar.gz) = b804eb9563f98ffbd51ce17c091b71a466ba4eae -Size (memtester-4.0.8.tar.gz) = 17168 bytes +SHA1 (memtester-4.1.2.tar.gz) = 2131cc2b36cbec0e00c389d5be4fd24b94affaf5 +RMD160 (memtester-4.1.2.tar.gz) = 531bf0c0a175a1e49cbdc7896a7c61a1cd742e4e +Size (memtester-4.1.2.tar.gz) = 19974 bytes |