- Update to 4.5.0

This commit is contained in:
Dmitry Marakasov 2020-09-27 23:26:01 +00:00
parent b5b54c761f
commit 6557eaa182
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=550385
4 changed files with 4 additions and 39 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= memtester
PORTVERSION= 4.3.0
PORTREVISION= 1
PORTVERSION= 4.5.0
CATEGORIES= sysutils
MASTER_SITES= http://pyropus.ca/software/${PORTNAME}/old-versions/

View File

@ -1,2 +1,3 @@
SHA256 (memtester-4.3.0.tar.gz) = f9dfe2fd737c38fad6535bbab327da9a21f7ce4ea6f18c7b3339adef6bf5fd88
SIZE (memtester-4.3.0.tar.gz) = 22113
TIMESTAMP = 1601211567
SHA256 (memtester-4.5.0.tar.gz) = 8ed52b0d06d4aeb61954994146e2a5b2d20448a8f3ce3ee995120e6dbde2ae37
SIZE (memtester-4.5.0.tar.gz) = 23286

View File

@ -1,19 +0,0 @@
--- tests.c.orig 2012-06-09 21:45:22 UTC
+++ tests.c
@@ -22,6 +22,16 @@
#include "sizes.h"
#include "memtester.h"
+union {
+ unsigned char bytes[UL_LEN/8];
+ ul val;
+} mword8;
+
+union {
+ unsigned short u16s[UL_LEN/16];
+ ul val;
+} mword16;
+
char progress[] = "-\\|/";
#define PROGRESSLEN 4
#define PROGRESSOFTEN 2500

View File

@ -1,16 +0,0 @@
--- types.h.orig 2012-06-09 21:45:22 UTC
+++ types.h
@@ -24,13 +24,3 @@ struct test {
char *name;
int (*fp)();
};
-
-union {
- unsigned char bytes[UL_LEN/8];
- ul val;
-} mword8;
-
-union {
- unsigned short u16s[UL_LEN/16];
- ul val;
-} mword16;