Debian policy says that each executable should have a man page.
This should remove the lintian warning about missing man pages.
Man pages have been created by the following command:
declare -A short_desc
short_desc['compareECL']='Comparator for Eclipse files'
short_desc['convertECL']='Converter for Eclipse files (binary <-> formatted format)'
short_desc['opmhash']='Hasher for summary keywords in Eclipse files'
short_desc['opmpack']='Validator and printer of deck in Eclipse files without comments'
short_desc['summary']='Printer for summary keys in Eclipse summary files'
for key in "${!short_desc[@]}"; do
help2man -h "-h" --version-string="2020.04" --no-discard-stderr -n "${short_desc[$key]}" $key >\
$key.1
done
Gbp-Pq: Name 0005-Added-manpages-for-all-executables.patch
55 lines
1.5 KiB
Groff
55 lines
1.5 KiB
Groff
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.8.
|
|
.TH OPMHASH "1" "April 2021" "opmhash 2020.04" "User Commands"
|
|
.SH NAME
|
|
opmhash \- Hasher for summary keywords in Eclipse files
|
|
.SH DESCRIPTION
|
|
opmhash: invalid option \fB\-\-\fR 'h'
|
|
The purpose of the opmhash program is to load a deck and create a summary, by
|
|
diffing two such summaries it is simple to determine if two decks are similar.
|
|
For each keyword a hash of the normalized content is calculated. The output of
|
|
the program will look like this:
|
|
.TP
|
|
RUNSPEC
|
|
: 13167205945009276792
|
|
.TP
|
|
TITLE
|
|
: 16047371705964514902
|
|
.TP
|
|
DIMENS
|
|
: 1264233216877515756
|
|
.TP
|
|
NONNC
|
|
: 10052807539267647959
|
|
.TP
|
|
OIL
|
|
: 6013609912232720008
|
|
.TP
|
|
WATER
|
|
: 14106203893673265964
|
|
.TP
|
|
Total
|
|
: 7362809723723482303
|
|
.PP
|
|
Where the 'random' integer following each keyword is the hash of the content of
|
|
that keyword. The hashing is insensitive to changes in white\-space and comments
|
|
and file location. At the bottom comes a total hash of the complete content. The
|
|
hash of each keyword is insensitive to shuffling of keywords, but the total hash
|
|
depends on the keyword order.
|
|
.SH OPTIONS
|
|
.HP
|
|
\fB\-l\fR : Add filename and linenumber information to each keyword.
|
|
.HP
|
|
\fB\-s\fR : Short form \- only print the hash of the complete deck.
|
|
.SH "SEE ALSO"
|
|
The full documentation for
|
|
.B opmhash
|
|
is maintained as a Texinfo manual. If the
|
|
.B info
|
|
and
|
|
.B opmhash
|
|
programs are properly installed at your site, the command
|
|
.IP
|
|
.B info opmhash
|
|
.PP
|
|
should give you access to the complete manual.
|