From owner-svn-ports-head@freebsd.org Sat Nov 28 06:14:01 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A93E14771BD; Sat, 28 Nov 2020 06:14:01 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cjh5j378Rz3G1J; Sat, 28 Nov 2020 06:14:01 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5D7BD227EA; Sat, 28 Nov 2020 06:14:01 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AS6E1Qc083677; Sat, 28 Nov 2020 06:14:01 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AS6E0mS083673; Sat, 28 Nov 2020 06:14:00 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202011280614.0AS6E0mS083673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 28 Nov 2020 06:14:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r556479 - in head/sysutils: . stressdisk X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/sysutils: . stressdisk X-SVN-Commit-Revision: 556479 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Nov 2020 06:14:01 -0000 Author: pi Date: Sat Nov 28 06:14:00 2020 New Revision: 556479 URL: https://svnweb.freebsd.org/changeset/ports/556479 Log: New port: sysutils/stressdisk This is a program designed to stress test your disks and find failures in them. - Use it to soak test your new disks / memory cards / USB sticks before trusting your valuable data to it. - Use it to soak test your new PC hardware also for the same reason. WWW: https://github.com/ncw/stressdisk PR: 251309 Submitted by: Nuno Teixeira Added: head/sysutils/stressdisk/ head/sysutils/stressdisk/Makefile (contents, props changed) head/sysutils/stressdisk/distinfo (contents, props changed) head/sysutils/stressdisk/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Nov 28 05:12:35 2020 (r556478) +++ head/sysutils/Makefile Sat Nov 28 06:14:00 2020 (r556479) @@ -1271,6 +1271,7 @@ SUBDIR += stow SUBDIR += stowES SUBDIR += stress + SUBDIR += stressdisk SUBDIR += superiotool SUBDIR += swapd SUBDIR += swapexd Added: head/sysutils/stressdisk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/stressdisk/Makefile Sat Nov 28 06:14:00 2020 (r556479) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= stressdisk +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.12 +CATEGORIES= sysutils + +MAINTAINER= ed.arrakis@gmail.com +COMMENT= Stress test your disks before trusting your valuable data to them + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= go:modules +USE_GITHUB= yes +GH_ACCOUNT= ncw +GH_TUPLE= ncw:directio:v1.0.4:ncw_directio/vendor/github.com/ncw/directio + +PLIST_FILES= bin/stressdisk + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/stressdisk/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/stressdisk/distinfo Sat Nov 28 06:14:00 2020 (r556479) @@ -0,0 +1,5 @@ +TIMESTAMP = 1606042976 +SHA256 (ncw-stressdisk-v1.0.12_GH0.tar.gz) = 2ddb89810f88c27edbcbd31eb3ec28d8393570f88421c6cdd95728986e820142 +SIZE (ncw-stressdisk-v1.0.12_GH0.tar.gz) = 11408 +SHA256 (ncw-directio-v1.0.4_GH0.tar.gz) = 65ae83dfce6da3673440b21bdac9951957283917aef4a63a9c234cbc2e8efb8a +SIZE (ncw-directio-v1.0.4_GH0.tar.gz) = 3873 Added: head/sysutils/stressdisk/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/stressdisk/pkg-descr Sat Nov 28 06:14:00 2020 (r556479) @@ -0,0 +1,9 @@ +This is a program designed to stress test your disks and +find failures in them. + +- Use it to soak test your new disks / memory cards / USB + sticks before trusting your valuable data to it. + +- Use it to soak test your new PC hardware also for the same reason. + +WWW: https://github.com/ncw/stressdisk