svn commit: r473453 - in head/sysutils: . mping

Devin Teske dteske at FreeBSD.org
Wed Jun 27 18:34:45 UTC 2018


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 at 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 <bsd.port.mk>

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/


More information about the svn-ports-all mailing list