From owner-svn-ports-head@FreeBSD.ORG Sat Sep 27 01:46:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6956C95A; Sat, 27 Sep 2014 01:46:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53E5A6E5; Sat, 27 Sep 2014 01:46:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8R1ktha020216; Sat, 27 Sep 2014 01:46:55 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8R1ksUT020212; Sat, 27 Sep 2014 01:46:54 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201409270146.s8R1ksUT020212@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 27 Sep 2014 01:46:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369353 - in head/sysutils: . f3 X-SVN-Group: ports-head 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.18-1 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, 27 Sep 2014 01:46:55 -0000 Author: jhale Date: Sat Sep 27 01:46:53 2014 New Revision: 369353 URL: http://svnweb.freebsd.org/changeset/ports/369353 QAT: https://qat.redports.org/buildarchive/r369353/ Log: F3 (Fight Flash Fraud or Fight Fake Flash) tests the full capacity of a flash card (flash drive, flash disk, pendrive). It writes to the card and then checks if it can read it. It will assure that you haven't been sold a card with a smaller capacity than stated. WARNING: All data on the tested disk might be lost! WWW: http://oss.digirati.com.br/f3 PR: 193779 Submitted by: Uffe Jakobsen Added: head/sysutils/f3/ head/sysutils/f3/Makefile (contents, props changed) head/sysutils/f3/distinfo (contents, props changed) head/sysutils/f3/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Sep 27 01:25:57 2014 (r369352) +++ head/sysutils/Makefile Sat Sep 27 01:46:53 2014 (r369353) @@ -217,6 +217,7 @@ SUBDIR += exfat-utils SUBDIR += extipl SUBDIR += ezjail + SUBDIR += f3 SUBDIR += fanout SUBDIR += farbot SUBDIR += fastest_cvsup Added: head/sysutils/f3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/f3/Makefile Sat Sep 27 01:46:53 2014 (r369353) @@ -0,0 +1,32 @@ +# Created by: Uffe Jakobsen +# $FreeBSD$ + +PORTNAME= f3 +PORTVERSION= 4.0 +CATEGORIES= sysutils + +MAINTAINER= uffe@uffe.org +COMMENT= Fight Flash Fraud or Fight Fake Flash test tool + +LICENSE= GPLv3 + +USE_GITHUB= yes +GH_ACCOUNT= AltraMayor +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 55d2017 + +USES= gmake pathfix shebangfix + +SHEBANG_FILES= f3write.h2w log-f3wr + +PLIST_FILES= bin/f3read bin/f3write bin/f3write.h2w \ + bin/log-f3wr man/man1/f3read.1.gz + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/f3read ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/f3write ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/f3write.h2w ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/log-f3wr ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/f3read.1 ${STAGEDIR}${MANPREFIX}/man/man1 + +.include Added: head/sysutils/f3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/f3/distinfo Sat Sep 27 01:46:53 2014 (r369353) @@ -0,0 +1,2 @@ +SHA256 (f3-4.0.tar.gz) = 735e79d58c8be457f69d724989ee0ef81bc4a06248ed8d8b94b6615aa59018c5 +SIZE (f3-4.0.tar.gz) = 21984 Added: head/sysutils/f3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/f3/pkg-descr Sat Sep 27 01:46:53 2014 (r369353) @@ -0,0 +1,8 @@ +F3 (Fight Flash Fraud or Fight Fake Flash) tests the full capacity +of a flash card (flash drive, flash disk, pendrive). It writes to +the card and then checks if it can read it. It will assure that +you haven't been sold a card with a smaller capacity than stated. + +WARNING: All data on the tested disk might be lost! + +WWW: http://oss.digirati.com.br/f3