File: gmdiff

package info (click to toggle)
mdocml 1.13.3-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 1,716 kB
  • sloc: ansic: 28,438; makefile: 349; sh: 315
file content (50 lines) | stat: -rw-r--r-- 1,554 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/sh
# Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

if [ `id -u` -eq 0 ]; then
  echo "$0: do not run me as root"
  exit 1
fi

if [ $# -eq 0 ]; then
  echo "usage: $0 -h manual_source_file ..."
  exit 1
fi

if [ "X$1" = "X-h" ]; then
  shift
  export PATH="/usr/local/heirloom-doctools/bin:$PATH"
  EQN="neqn"
  ROFF="nroff"
  MOPT="-Omdoc $MOPT"
else
  EQN="eqn -Tascii"
  ROFF="groff -ww -Tascii -P -c"
fi
MOPT="-Werror $MOPT"

while [ -n "$1" ]; do
  file=$1
  shift
  echo " ========== $file ========== "
  tbl $file | $EQN | $ROFF -mandoc 2> /tmp/roff.err > /tmp/roff.out
  mandoc -Ios='OpenBSD ports' $MOPT $file 2> /tmp/mandoc.err > /tmp/mandoc.out
  for i in roff mandoc; do
    [[ -s /tmp/$i.err ]] && echo "$i errors:" && cat /tmp/$i.err
  done
  diff -au /tmp/roff.out /tmp/mandoc.out 2>&1
done

exit 0