about summary refs log tree commit homepage
path: root/Documentation/extman.perl
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-24 02:57:56 +0000
committerEric Wong <e@80x24.org>2019-05-24 02:59:14 +0000
commitb56d4d2b4da1c6670cf31f62ba754018b8b27dcc (patch)
tree37985879c22f0bbc549c7bdb1cd33dc10973c734 /Documentation/extman.perl
parent9ed46d1cb99487ce96942f084c65ff95bce5017a (diff)
downloadpublic-inbox-b56d4d2b4da1c6670cf31f62ba754018b8b27dcc.tar.gz
They're nowhere to be found on Xapian.org, and links to
external services are either too long (for manpages.debian.org)
or have privacy-invasive tracking JS on them.
Diffstat (limited to 'Documentation/extman.perl')
-rwxr-xr-xDocumentation/extman.perl33
1 files changed, 33 insertions, 0 deletions
diff --git a/Documentation/extman.perl b/Documentation/extman.perl
new file mode 100755
index 00000000..a72caca8
--- /dev/null
+++ b/Documentation/extman.perl
@@ -0,0 +1,33 @@
+#!/usr/bin/perl -w
+# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+# prints a manpage to stdout
+use strict;
+my $xapmsg = 'See https://xapian.org/ for more information on Xapian';
+my $usage = "$0 /path/to/manpage.SECTION.txt";
+my $manpage = shift or die $usage;
+my $MAN = $ENV{MAN} || 'man';
+my @args;
+$manpage = (split('/', $manpage))[-1];
+$manpage =~ s/\.txt\z//;
+$manpage =~ s/\A\.//; # no leading dot (see Documentation/include.mk)
+$manpage =~ s/\.(\d+.*)\z// and push @args, $1; # section
+push @args, $manpage;
+
+# don't use UTF-8 characters which readers may not have fonts for
+$ENV{LC_ALL} = $ENV{LANG} = 'C';
+$ENV{COLUMNS} = '76'; # same as pod2text default
+$ENV{PAGER} = 'cat';
+my $cmd = join(' ', $MAN, @args);
+system($MAN, @args) and die "$cmd failed: $!\n";
+$manpage =~ /\A(?:copydatabase|xapian-compact)\z/ and
+        print "\n\n", $xapmsg, "\n";
+
+# touch -r $(man -w $section $manpage) output.txt
+if (-f \*STDOUT) {
+        open(my $fh, '-|', $MAN, '-w', @args) or die "$MAN -w broken?: $!\n";
+        chomp(my $path = <$fh>);
+        my @st = stat($path) or die "stat($path) failed: $!\n";
+        # 9 - mtime
+        utime($st[9], $st[9], \*STDOUT) or die "utime(STDOUT) failed: $!\n";
+}