]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/commit
MFC r274116:
authordteske <dteske@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Tue, 25 Nov 2014 15:49:51 +0000 (15:49 +0000)
committerdteske <dteske@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Tue, 25 Nov 2014 15:49:51 +0000 (15:49 +0000)
commit21ff155e557667073712869ce52dee75dc793cf6
treea83e86db6ea985c9df3cb6cfd7027a71a5b659c3
parent0defdc949f227b6768dea6c8d878d64a4de56658
MFC r274116:

Add new libraries/utilities for data throughput visualization.
dpv(3): dialog progress view library
dpv(1): stream data from stdin or multiple paths with dialog progress view
figpar(3): configuration file parsing library

MFC r274124: Temporarily _disable_ compilation of dpv(1,3)

NB: MFC broken into two halves (first half to bring in the new dirs so
mergeinfo can be properly recorded on them -- the second half of MFC).

Reviews:        D714
Relnotes:       New libdpv/libfigpar and dpv(1) utility
Reviewed by:    jelischer, shurd
Discussed at:   MeetBSD California 2014 Vendor/Dev Summit
Discussed on:   -current
Thanks to:      ngie, ian, jelischer, shurd, bapt

git-svn-id: svn://svn.freebsd.org/base/stable/9@275047 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
28 files changed:
lib/Makefile
lib/libdpv/Makefile [new file with mode: 0644]
lib/libdpv/dialog_util.c [new file with mode: 0644]
lib/libdpv/dialog_util.h [new file with mode: 0644]
lib/libdpv/dialogrc.c [new file with mode: 0644]
lib/libdpv/dialogrc.h [new file with mode: 0644]
lib/libdpv/dprompt.c [new file with mode: 0644]
lib/libdpv/dprompt.h [new file with mode: 0644]
lib/libdpv/dpv.3 [new file with mode: 0644]
lib/libdpv/dpv.c [new file with mode: 0644]
lib/libdpv/dpv.h [new file with mode: 0644]
lib/libdpv/dpv_private.h [new file with mode: 0644]
lib/libdpv/status.c [new file with mode: 0644]
lib/libdpv/status.h [new file with mode: 0644]
lib/libdpv/util.c [new file with mode: 0644]
lib/libdpv/util.h [new file with mode: 0644]
lib/libfigpar/Makefile [new file with mode: 0644]
lib/libfigpar/figpar.3 [new file with mode: 0644]
lib/libfigpar/figpar.c [new file with mode: 0644]
lib/libfigpar/figpar.h [new file with mode: 0644]
lib/libfigpar/string_m.c [new file with mode: 0644]
lib/libfigpar/string_m.h [new file with mode: 0644]
share/mk/bsd.libnames.mk
sys/sys/param.h
usr.bin/dpv/Makefile [new file with mode: 0644]
usr.bin/dpv/dpv.1 [new file with mode: 0644]
usr.bin/dpv/dpv.c [new file with mode: 0644]
usr.bin/dpv/dpv_util.h [new file with mode: 0644]