Overview
Comment: | Merge accidental fork. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bb6911fe4fabc9e3c1dbaa8988fe97ea |
User & Date: | glowpelt on 2019-11-01 06:38:46 |
Other Links: | manifest | tags |
Context
2019-11-01
| ||
07:52 | Disable PDF docs on NixOS. As it seems groff PDF support is currently broken on NixOS (https://github.com/NixOS/nixpkgs/issues/53056), disable the building of PDFs in the NixOS build. check-in: 9408112a57 user: glowpelt tags: trunk | |
06:38 | Merge accidental fork. check-in: bb6911fe4f user: glowpelt tags: trunk | |
06:28 | Mostly fix NixOS build. Docs are still broken. The rest of the problems, mostly from small changes since NixOS was last tested, are fixed. check-in: 009b0289f2 user: glowpelt tags: trunk | |
06:27 | remove nonexistant --normalize option check-in: 0ed5f80174 user: lexi tags: trunk | |
Changes
Modified global/build-manpage.sh from [af11c2c865] to [8cac5483dc].
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
offset=0
fi
tail -n+2 $file | head -n$(expr $descline - 2) | cmark --smart -t man >>"$fmt"
echo >>"$fmt" ".SH DESCRIPTION"
tail -n+$(expr $descline + $offset) "$file" | cmark --smart --normalize -t man >> "$fmt"
test "$doc_html" = "yes" && {
mkdir -p "$htmldest"
groff -Thtml -Kutf8 -m man "$fmt" > "$html"
test "$verbose" != "loud" ||
say "wrote html page for $stem to $html"
}
|
| |
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
offset=0 fi tail -n+2 $file | head -n$(expr $descline - 2) | cmark --smart -t man >>"$fmt" echo >>"$fmt" ".SH DESCRIPTION" tail -n+$(expr $descline + $offset) "$file" | cmark --smart -t man >> "$fmt" test "$doc_html" = "yes" && { mkdir -p "$htmldest" groff -Thtml -Kutf8 -m man "$fmt" > "$html" test "$verbose" != "loud" || say "wrote html page for $stem to $html" } |