From owner-svn-ports-head@freebsd.org Wed Jun 27 18:34:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C126E1000899; Wed, 27 Jun 2018 18:34:44 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 641388BE1B; Wed, 27 Jun 2018 18:34:44 +0000 (UTC) (envelope-from dteske@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 2060526D50; Wed, 27 Jun 2018 18:34:44 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5RIYhLS024010; Wed, 27 Jun 2018 18:34:43 GMT (envelope-from dteske@FreeBSD.org) Received: (from dteske@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5RIYhod024007; Wed, 27 Jun 2018 18:34:43 GMT (envelope-from dteske@FreeBSD.org) Message-Id: <201806271834.w5RIYhod024007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dteske set sender to dteske@FreeBSD.org using -f From: Devin Teske Date: Wed, 27 Jun 2018 18:34:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473453 - in head/sysutils: . mping X-SVN-Group: ports-head X-SVN-Commit-Author: dteske X-SVN-Commit-Paths: in head/sysutils: . mping X-SVN-Commit-Revision: 473453 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.26 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: Wed, 27 Jun 2018 18:34:45 -0000 Author: dteske Date: Wed Jun 27 18:34:43 2018 New Revision: 473453 URL: https://svnweb.freebsd.org/changeset/ports/473453 Log: [New Port] sysutils/mping mping is a utility for pinging multiple hosts. It is written in shell with minimal dependencies (awk, date, getconf, head, host, ping, sleep, sort, stty, tr, uname, and xargs). It also has a feature to keep watching the given hosts and alert to any changes in uptime. Reviewed by: mat (mentor) Approved by: mat (mentor) Sponsored by: Smule, Inc. Differential Revision: https://reviews.freebsd.org/D15875 Added: head/sysutils/mping/ head/sysutils/mping/Makefile (contents, props changed) head/sysutils/mping/distinfo (contents, props changed) head/sysutils/mping/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Jun 27 18:03:05 2018 (r473452) +++ head/sysutils/Makefile Wed Jun 27 18:34:43 2018 (r473453) @@ -716,6 +716,7 @@ SUBDIR += mount.app SUBDIR += mountsmb2 SUBDIR += mpiexec + SUBDIR += mping SUBDIR += mptd SUBDIR += msiklm SUBDIR += msktutil Added: head/sysutils/mping/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mping/Makefile Wed Jun 27 18:34:43 2018 (r473453) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= mping +DISTVERSION= 0.1.3 +CATEGORIES= sysutils + +MAINTAINER= dteske@FreeBSD.org +COMMENT= Ping multiple hosts + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= FrauBSD +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/mping +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/mping ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/mping/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mping/distinfo Wed Jun 27 18:34:43 2018 (r473453) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529345998 +SHA256 (FrauBSD-mping-0.1.3_GH0.tar.gz) = 7c299d0433c8a02f94fd92c12e667e719edea1d2c1516c1eb6ebdc21511858e2 +SIZE (FrauBSD-mping-0.1.3_GH0.tar.gz) = 7104 Added: head/sysutils/mping/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mping/pkg-descr Wed Jun 27 18:34:43 2018 (r473453) @@ -0,0 +1,6 @@ +mping is a utility for pinging multiple hosts. It is written in shell with +minimal dependencies (awk, date, getconf, head, host, ping, sleep, sort, stty, +tr, uname, and xargs). It also has a feature to keep watching the given hosts +and alert to any changes in uptime. + +WWW: https://fraubsd.org/mping/