[Patch v3 2/4] doc: add target rst2man to build man pages using rst2man
authorDavid Bremner <david@tethera.net>
Sun, 9 Mar 2014 12:56:58 +0000 (09:56 +2100)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:00:30 +0000 (10:00 -0800)
4b/2188041f6b9cc968b00f7dedd4c2c2c77b7c4c [new file with mode: 0644]

diff --git a/4b/2188041f6b9cc968b00f7dedd4c2c2c77b7c4c b/4b/2188041f6b9cc968b00f7dedd4c2c2c77b7c4c
new file mode 100644 (file)
index 0000000..d93ba25
--- /dev/null
@@ -0,0 +1,155 @@
+Return-Path: <bremner@tethera.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id CC341431FDB\r
+       for <notmuch@notmuchmail.org>; Sun,  9 Mar 2014 05:57:40 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id cvgBL6vod6nu for <notmuch@notmuchmail.org>;\r
+       Sun,  9 Mar 2014 05:57:35 -0700 (PDT)\r
+Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
+       (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 4DF70431FBC\r
+       for <notmuch@notmuchmail.org>; Sun,  9 Mar 2014 05:57:25 -0700 (PDT)\r
+Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
+       (envelope-from <bremner@tethera.net>)\r
+       id 1WMdIA-0003qY-NF; Sun, 09 Mar 2014 09:57:22 -0300\r
+Received: (nullmailer pid 8483 invoked by uid 1000); Sun, 09 Mar 2014\r
+       12:57:08 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v3 2/4] doc: add target rst2man to build man pages using\r
+       rst2man\r
+Date: Sun,  9 Mar 2014 09:56:58 -0300\r
+Message-Id: <1394369820-8319-3-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 1.8.5.3\r
+In-Reply-To: <1394369820-8319-1-git-send-email-david@tethera.net>\r
+References: <1394369820-8319-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 09 Mar 2014 12:57:41 -0000\r
+\r
+Many people have docutils installed, but not sphinx. Allow these\r
+people to build the man pages.\r
+---\r
+ doc/Makefile.local |  7 ++++++\r
+ doc/prerst2man.py  | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++\r
+ 2 files changed, 69 insertions(+)\r
+ create mode 100644 doc/prerst2man.py\r
+\r
+diff --git a/doc/Makefile.local b/doc/Makefile.local\r
+index ec23012..4719247 100644\r
+--- a/doc/Makefile.local\r
++++ b/doc/Makefile.local\r
+@@ -7,10 +7,13 @@ SPHINXOPTS    := -q -c $(dir)\r
+ SPHINXBUILD   = sphinx-build\r
+ DOCBUILDDIR      := $(dir)/_build\r
\r
++prerst2man := python $(dir)/prerst2man.py\r
++\r
+ # Internal variables.\r
+ ALLSPHINXOPTS   := -d $(DOCBUILDDIR)/doctrees $(SPHINXOPTS) $(dir)\r
\r
+ .PHONY: sphinx-html sphinx-man sphinx-texinfo sphinx-info\r
++.PHONY: rst2man\r
\r
+ sphinx-html:\r
+       $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(DOCBUILDDIR)/html\r
+@@ -24,4 +27,8 @@ sphinx-texinfo:\r
+ sphinx-info: sphinx-texinfo\r
+       make -C $(DOCBUILDDIR)/texinfo info\r
\r
++# fallback target in case sphinx not installed\r
++rst2man:\r
++      $(prerst2man) $(DOCBUILDDIR)/.. $(DOCBUILDDIR)/man\r
++\r
+ CLEAN := $(CLEAN) $(DOCBUILDDIR)\r
+diff --git a/doc/prerst2man.py b/doc/prerst2man.py\r
+new file mode 100644\r
+index 0000000..720deb6\r
+--- /dev/null\r
++++ b/doc/prerst2man.py\r
+@@ -0,0 +1,62 @@\r
++from sys import argv\r
++from datetime import date\r
++from os.path import dirname, isdir\r
++from os import makedirs, system\r
++import re\r
++\r
++sourcedir = argv[1]\r
++outdir = argv[2]\r
++\r
++if not isdir(outdir):\r
++    makedirs(outdir, 0755)\r
++\r
++execfile(sourcedir + "/conf.py")\r
++\r
++\r
++def header(file, startdocname, command, description, authors, section):\r
++    file.write("""\r
++{0:s}\r
++{1:s}\r
++{2:s}\r
++\r
++:Date:   {3:s}\r
++:Version: {4:s}\r
++:Manual section: {5:d}\r
++:Manual group: {6:s}\r
++\r
++""".format(\r
++'-' * len(description),\r
++description,\r
++'-' * len(description),\r
++date.today().isoformat(), release, section, project))\r
++\r
++blankre = re.compile("^\s*$")\r
++for page in man_pages:\r
++    outdirname = outdir + '/' + dirname(page[0])\r
++    if not isdir(outdirname):\r
++        makedirs(outdirname, 0755)\r
++    filename = outdir + '/' + page[0] + '.rst'\r
++    outfile = open(filename, 'w')\r
++    infile = open(sourcedir + '/' + page[0] + '.rst', 'r')\r
++\r
++    # this is a crude hack. We look for the first blank line, and\r
++    # insert the rst2man header there.\r
++    #\r
++    # XXX consider really parsing input\r
++\r
++    count = 0\r
++    lines = infile.readlines()\r
++    for line in lines:\r
++        outfile.write(line)\r
++        if (blankre.match(line)):\r
++            break\r
++        count = count + 1\r
++\r
++    del lines[0:count + 1]\r
++\r
++    header(outfile, *page)\r
++\r
++    outfile.write("".join(lines))\r
++    outfile.close()\r
++\r
++    os.system('set -x; rst2man {0} {1}'.format(filename, outdir + '/' + page[0] + '.' + str(page[4])))\r
+-- \r
+1.8.5.3\r
+\r