--- /dev/null
+Return-Path: <tomi.ollila@iki.fi>\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 2CC20431FBD\r
+ for <notmuch@notmuchmail.org>; Mon, 14 Apr 2014 11:00:32 -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 1KgxvM3taj5T for <notmuch@notmuchmail.org>;\r
+ Mon, 14 Apr 2014 11:00:24 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by olra.theworths.org (Postfix) with ESMTP id B0E4C431FBC\r
+ for <notmuch@notmuchmail.org>; Mon, 14 Apr 2014 11:00:23 -0700 (PDT)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+ by guru.guru-group.fi (Postfix) with ESMTP id E14BE10008F;\r
+ Mon, 14 Apr 2014 21:00:15 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: "W. Trevor King" <wking@tremily.us>, notmuch@notmuchmail.org\r
+Subject: Re: [PATCH 0/7] doc: Python 3 compat, rst2man.py support, etc.\r
+In-Reply-To: <cover.1396718720.git.wking@tremily.us>\r
+References: <cover.1396718720.git.wking@tremily.us>\r
+User-Agent: Notmuch/0.17+200~g5c6d42d (http://notmuchmail.org) Emacs/24.3.1\r
+ (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+ $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+ !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Mon, 14 Apr 2014 21:00:15 +0300\r
+Message-ID: <m2ppkjpz9s.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain; charset=utf-8\r
+Content-Transfer-Encoding: quoted-printable\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: Mon, 14 Apr 2014 18:00:32 -0000\r
+\r
+On Sat, Apr 05 2014, "W. Trevor King" <wking@tremily.us> wrote:\r
+\r
+> I just bumped into this today while testing v2 of my\r
+> content-description series:\r
+>\r
+> $ ./configure\r
+> =E2=80=A6\r
+> $ make\r
+> =E2=80=A6\r
+> python ./doc/mkdocdeps.py ./doc doc/_build doc/docdeps.mk\r
+> Traceback (most recent call last):\r
+> File "./doc/mkdocdeps.py", line 6, in <module>\r
+> execfile(srcdir + '/conf.py')\r
+> NameError: name 'execfile' is not defined\r
+> =E2=80=A6\r
+>\r
+> The first patch in this series fixes that issue, and the rest of the\r
+> series fixes some other issues I bumped into while working on that.\r
+> Sorry I missed these in the initial series.\r
+>\r
+> Note that while mkdocdeps.py and prerst2man.py are now Python 3\r
+> compatible (with this series), the build will fail for Python's 3.0\r
+> through 3.2 because of the explicit unicode literals in conf.py [1].\r
+> It's likely that conf.py could use [2]\r
+>\r
+> from __future__ import unicode_literals\r
+>\r
+> drop the u'' prefixes, and be compatible with all Python's =E2=89=A52.6\r
+> (including all 3s). I haven't checked the logic though, and I'm not\r
+> running 3.2 locally anymore, so it's not a big priority for me.\r
+>\r
+> Cheers,\r
+> Trevor\r
+>\r
+> [1]: https://docs.python.org/3/whatsnew/3.3.html#pep-414-explicit-unicode=\r
+-literals\r
+> [2]: from __future__ import unicode_literals\r
+>\r
+> W. Trevor King (7):\r
+> doc/mkdocdeps.py: Convert execfile to import\r
+> doc/mkdocdeps.py: Use "with" statement for the output file\r
+> doc/prerst2man.py: Use Python-3-compatible octal notation\r
+> doc/prerst2man.py: Fix 'os.system' -> 'system' typo\r
+> doc: Allow rst2man.py as an alternative to rst2man\r
+> doc/prerst2man.py: Convert execfile to import\r
+> doc/INSTALL: Remove rst2man reference and other updates\r
+\r
+In this series IMO the patches 1-4:\r
+\r
+id:8d518408f2da8bc96ae3123f05791142da26b9bc.1396718720.git.wking@tremily.us\r
+id:543aee63407956e60f85dc11a2d25855e98c10c3.1396718720.git.wking@tremily.us\r
+id:5e4509ab08699afe2681110fb35075e1d0bbdc7e.1396718720.git.wking@tremily.us\r
+id:c5ec510ac25c867ad600c475a0070a003440a4b8.1396718720.git.wking@tremily.us\r
+\r
+could go in as those are. 5:\r
+\r
+id:adce76bb9a0ca728d856da4ecaf6b282e22e7440.1396718720.git.wking@tremily.us\r
+\r
+if, for consistency reason (we don't use absolute paths with other commands\r
+either), rst2man/rst2man.py is used as is (and commit message adjusted\r
+accordingly).\r
+\r
+patch 6:\r
+\r
+id:7c43c614cb09665400544fc0928ac14bb67ceeb5.1396718720.git.wking@tremily.us\r
+\r
+would be good as is, but it doesn't apply without 5\r
+\r
+In 7:\r
+\r
+id:edf9a674bc1f41917caead8d38b5f09295a9d1bd.1396718720.git.wking@tremily.us\r
+\r
+In addition to David's comments, s/genric/generic/ ;D. I don't have opinion\r
+whether INSTALL should be changed to README.rst. Maybe this is good idea;\r
+that also distingush between ./INSTALL & doc/INSTALL. In this case=20\r
+`git grep INSTALL` shows that the line 83 in ./INSTALL needs to be changed,\r
+too.\r
+\r
+Tomi\r
+\r
+PS: this id:<hash>.<timestamp>.git.<user@host> is PITA format to work with =\r
+;p\r
+\r
+>\r
+> configure | 12 +++++++-----\r
+> doc/INSTALL | 34 ++++++++++++++++++++--------------\r
+> doc/Makefile.local | 6 +++---\r
+> doc/mkdocdeps.py | 19 ++++++++++---------\r
+> doc/prerst2man.py | 25 ++++++++++++++-----------\r
+> 5 files changed, 54 insertions(+), 42 deletions(-)\r
+>\r
+> --=20\r
+> 1.9.1.353.gc66d89d\r