From owner-svn-ports-head@FreeBSD.ORG Fri Nov 14 03:20:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3AECA00; Fri, 14 Nov 2014 03:20:08 +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 A5040176; Fri, 14 Nov 2014 03:20:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAE3K8SH054676; Fri, 14 Nov 2014 03:20:08 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAE3K7gc054570; Fri, 14 Nov 2014 03:20:07 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201411140320.sAE3K7gc054570@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Fri, 14 Nov 2014 03:20:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372547 - in head/sysutils: . zfs-stats-lite 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: Fri, 14 Nov 2014 03:20:09 -0000 Author: shurd Date: Fri Nov 14 03:20:07 2014 New Revision: 372547 URL: https://svnweb.freebsd.org/changeset/ports/372547 QAT: https://qat.redports.org/buildarchive/r372547/ Log: New port: sysutils/zfs-stats-lite zfs-stats displays ZFS statistics in human-readable format including ARC, L2ARC, zfetch (DMU) and vdev cache statistics. This script is a fork of sysutils/zfs-stats which has no dependency on perl or other ports. PR: ports/194977 Submitted by: Devin Teske (maintainer) Sponsored by: Panzura, Inc. Added: head/sysutils/zfs-stats-lite/ head/sysutils/zfs-stats-lite/Makefile (contents, props changed) head/sysutils/zfs-stats-lite/distinfo (contents, props changed) head/sysutils/zfs-stats-lite/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Nov 13 23:24:00 2014 (r372546) +++ head/sysutils/Makefile Fri Nov 14 03:20:07 2014 (r372547) @@ -1069,6 +1069,7 @@ SUBDIR += zfs-snapshot-clean SUBDIR += zfs-snapshot-mgmt SUBDIR += zfs-stats + SUBDIR += zfs-stats-lite SUBDIR += zfsnap SUBDIR += zfstools SUBDIR += zidrav Added: head/sysutils/zfs-stats-lite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zfs-stats-lite/Makefile Fri Nov 14 03:20:07 2014 (r372547) @@ -0,0 +1,23 @@ +# Created by: Devin Teske +# $FreeBSD$ + +PORTNAME= zfs-stats-lite +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= http://druidbsd.sourceforge.net/download/ + +MAINTAINER= dteske@FreeBSD.org +COMMENT= Display human-readable ZFS statistics + +LICENSE= BSD2CLAUSE + +CONFLICTS_INSTALL= zfs-stats-[0-9]* + +NO_BUILD= yes + +PLIST_FILES= bin/zfs-stats + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/zfs-stats ${STAGEDIR}${PREFIX}/bin/zfs-stats + +.include Added: head/sysutils/zfs-stats-lite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zfs-stats-lite/distinfo Fri Nov 14 03:20:07 2014 (r372547) @@ -0,0 +1,2 @@ +SHA256 (zfs-stats-lite-1.0.tar.gz) = 8b47ff8e23f8cd5ff8f4b894b6bd0760c86f0ae711efc36e5f4651596c335db6 +SIZE (zfs-stats-lite-1.0.tar.gz) = 6813 Added: head/sysutils/zfs-stats-lite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zfs-stats-lite/pkg-descr Fri Nov 14 03:20:07 2014 (r372547) @@ -0,0 +1,7 @@ +zfs-stats displays ZFS statistics in human-readable format including +ARC, L2ARC, zfetch (DMU) and vdev cache statistics. + +This script is a fork of sysutils/zfs-stats which has no dependency on perl or +other ports. + +WWW: http://druidbsd.sf.net/download.shtml