Import ioping 0.9

A tool to monitor I/O latency in real time. It shows disk latency in the same
way as ping shows network latency.

OK sthen@
This commit is contained in:
feinerer 2015-08-12 16:11:06 +00:00
parent 5e64966204
commit 149f5a0f0c
4 changed files with 38 additions and 0 deletions

31
sysutils/ioping/Makefile Normal file
View File

@ -0,0 +1,31 @@
# $OpenBSD: Makefile,v 1.1.1.1 2015/08/12 16:11:06 feinerer Exp $
COMMENT = simple disk I/0 latency measuring tool
VERSION = 0.9
DISTNAME = ioping-${VERSION}
CATEGORIES = sysutils
MAINTAINER = Ingo Feinerer <feinerer@logic.at>
# GPLv3+
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c m
GH_ACCOUNT = koct9i
GH_PROJECT = ioping
GH_TAGNAME = v${VERSION}
NO_TEST = Yes
do-build:
cd ${WRKSRC} && \
${CC} ${CFLAGS} -DVERSION=\"${VERSION}\" ioping.c -o ioping ${LDFLAGS} -lm
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ioping ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/ioping.1 ${PREFIX}/man/man1
.include <bsd.port.mk>

2
sysutils/ioping/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (ioping-0.9.tar.gz) = vWTdkegpIz51pNUshzEljvqen/eq7H4TFqbKTt+56IA=
SIZE (ioping-0.9.tar.gz) = 23380

View File

@ -0,0 +1,2 @@
A tool to monitor I/O latency in real time. It shows disk latency in the same
way as ping shows network latency.

View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2015/08/12 16:11:06 feinerer Exp $
@bin bin/ioping
@man man/man1/ioping.1