aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/dpv
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-162-2/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
| | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
* Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* Update/fix Makefile.depend for userlandSimon J. Gerraty2023-04-191-3/+1
|
* Indicate the port where the referenced man pages come from.Jens Schweikhardt2022-08-161-14/+17
|
* dpv.1: Do not use mdoc macros for Bl widthMateusz Piotrowski2021-11-021-2/+2
| | | | | | Macros do not expand there. MFC after: 3 days
* dpv.1: Fix an exampleMateusz Piotrowski2021-11-021-1/+1
| | | | | | dpv(1) requires a label to be specified. MFC after: 3 days
* dpv: Fix synopsis formatting & sort optionsMateusz Piotrowski2021-11-022-57/+70
| | | | MFC after: 3 days
* Fix a few mandoc issuesGordon Bergling2020-10-091-1/+2
| | | | | | | | | | - skipping paragraph macro: Pp after Sh - sections out of conventional order: Sh EXAMPLES - whitespace at end of input line - normalizing date format Notes: svn path=/head/; revision=366583
* Do a sweep and remove most WARNS=6 settingsKyle Evans2020-10-011-2/+0
| | | | | | | | | | | | | | | Repeating the default WARNS here makes it slightly more difficult to experiment with default WARNS changes, e.g. if we did something absolutely bananas and introduced a WARNS=7 and wanted to try lifting the default to that. Drop most of them; there is one in the blake2 kernel module, but I suspect it should be dropped -- the default WARNS in the rest of the build doesn't currently apply to kernel modules, and I haven't put too much thought into whether it makes sense to make it so. Notes: svn path=/head/; revision=366304
* pkgbase: Add a FreeBSD-dpv packageEmmanuel Vadot2019-07-191-0/+2
| | | | | | | | | | | | Move the dpv related files from FreeBSD-runtime to a new package named FreeBSD-dpv The only consumer is bsdinstall which is already in it's own package. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D20960 Notes: svn path=/head/; revision=350133
* Use full month in dpv(3), figpar(3), and bsdconfig(8) manualsDevin Teske2018-03-141-1/+1
| | | | | | | Reported by: maxim Notes: svn path=/head/; revision=330939
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* Bump copyrightDevin Teske2016-01-271-1/+1
| | | | Notes: svn path=/head/; revision=294863
* Add `-k' for dpv(3) `keep_tite' config optionDevin Teske2016-01-262-4/+13
| | | | | | | | | For scripts using dialog(1) several times, it can be visually distracting running dpv(1) several times amidst other dialogs. The `-k' option, similar to dialog(1) `--keep-tite', enables the same functionality to smooth ti/te. Notes: svn path=/head/; revision=294861
* META MODE: Update dependencies with 'the-lot' and add missing directories.Bryan Drewery2015-12-011-0/+24
| | | | | | | | | | | | | | | | | This is not properly respecting WITHOUT or ARCH dependencies in target/. Doing so requires a massive effort to rework targets/ to do so. A better approach will be to either include the SUBDIR Makefiles directly and map to DIRDEPS or just dynamically lookup the SUBDIR. These lose the benefit of having a userland/lib, userland/libexec, etc, though and results in a massive package. The current implementation of targets/ is very unmaintainable. Currently rescue/rescue and sys/modules are still not connected. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=291563
* dpv(1) merged to stable/10 before release/10.2.0Devin Teske2015-10-231-3/+3
| | | | | | | | MFC after: 3 days X-MFC-to: stable/10 Notes: svn path=/head/; revision=289797
* mdoc: sort SEE ALSO.Joel Dahl2014-12-261-2/+2
| | | | Notes: svn path=/head/; revision=276258
* Convert to usr.bin/ to LIBADDBaptiste Daroussin2014-11-251-2/+1
| | | | | | | Reduce overlinking Notes: svn path=/head/; revision=275042
* Misc mdoc fixes:Joel Dahl2014-11-231-16/+14
| | | | | | | | | | | - Remove superfluous paragraph macros. - Remove/fix empty or incorrect macros. - Sort sections into conventional order. - Terminate quoted strings properly. - Remove EOL whitespace. Notes: svn path=/head/; revision=274925
* Add libm to eliminate "undefined reference to sqrt" on arm 'softfp' builds.Ian Lepore2014-11-221-2/+2
| | | | Notes: svn path=/head/; revision=274851
* Balance DPADD against LDADD for dpv(1,3).Devin Teske2014-11-051-2/+2
| | | | | | | | | | Thanks to: ngie MFC after: 21 days X-MFC-to: stable/10 stable/9 X-MFC-with: 274116 274120 274121 274123 274144 Notes: svn path=/head/; revision=274146
* Fix buildworld by adding DPADD= to libdpv [dpv(3)] MakefileDevin Teske2014-11-051-2/+2
| | | | | | | | | | | | | | NB: Should also address `make -j' building Remove "+" from "+=" in assignments to DPADD/LDADD while here. NB: Also move CFLAGS for style measure. Reviewed by: shurd MFC after: 21 days X-MFC-to: stable/10 stable/9 X-MFC-with: 274116 274120 274121 Notes: svn path=/head/; revision=274123
* Fix build-error (pointy hat; didn't merge full up-to-date code)Devin Teske2014-11-051-2/+2
| | | | | | | | | MFC after: 21 days X-MFC-to: stable/10 stable/9 X-MFC-with: 274116 Notes: svn path=/head/; revision=274120
* Add new libraries/utilities for data throughput visualization.Devin Teske2014-11-044-0/+1051
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 Reviews: D714 Reviewed by: jelischer, shurd Discussed at: MeetBSD California 2014 Vendor/Dev Summit Discussed on: -current MFC after: 21 days X-MFC-to: stable/10 stable/9 Notes: svn path=/head/; revision=274116