Re: [PATCH v4 09/16] index encrypted parts when asked.
[notmuch-archives.git] / 88 / 77f9305c778d857b4aeba4c46c56117b55b505
1 Return-Path: <bremner@tethera.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 23074431FC0\r
6         for <notmuch@notmuchmail.org>; Thu,  6 Mar 2014 05:21:15 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id bO26UTHY-9Bg for <notmuch@notmuchmail.org>;\r
16         Thu,  6 Mar 2014 05:21:11 -0800 (PST)\r
17 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
18         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 5F798431FC2\r
21         for <notmuch@notmuchmail.org>; Thu,  6 Mar 2014 05:21:11 -0800 (PST)\r
22 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
23         (envelope-from <bremner@tethera.net>)\r
24         id 1WLYEZ-0000vl-26; Thu, 06 Mar 2014 09:21:11 -0400\r
25 Received: (nullmailer pid 2402 invoked by uid 1000); Thu, 06 Mar 2014\r
26         13:20:57 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: [PATCH v2 4/4] doc: automagically read version from file\r
30 Date: Thu,  6 Mar 2014 09:20:48 -0400\r
31 Message-Id: <1394112048-2151-5-git-send-email-david@tethera.net>\r
32 X-Mailer: git-send-email 1.8.5.3\r
33 In-Reply-To: <1394112048-2151-1-git-send-email-david@tethera.net>\r
34 References: <m2d2i0jz2h.fsf@guru.guru-group.fi>\r
35         <1394112048-2151-1-git-send-email-david@tethera.net>\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.13\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Thu, 06 Mar 2014 13:21:15 -0000\r
49 \r
50 This avoids having to recreate the update-man-versions rule\r
51 ---\r
52  doc/conf.py | 12 +++++++++---\r
53  1 file changed, 9 insertions(+), 3 deletions(-)\r
54 \r
55 diff --git a/doc/conf.py b/doc/conf.py\r
56 index 6c2806d..a926fe4 100644\r
57 --- a/doc/conf.py\r
58 +++ b/doc/conf.py\r
59 @@ -14,10 +14,16 @@ master_doc = 'index'\r
60  project = u'notmuch'\r
61  copyright = u'2014, Carl Worth and many others'\r
62  \r
63 -# The short X.Y version.\r
64 -version = '0.17'\r
65 +location = os.path.dirname(__file__)\r
66 +\r
67 +for pathdir in ['.', '..']:\r
68 +    version_file = os.path.join(location,pathdir,'version')\r
69 +    if os.path.exists(version_file):\r
70 +        with open(version_file,'r') as infile:\r
71 +            version=infile.read().replace('\n','')\r
72 +\r
73  # The full version, including alpha/beta/rc tags.\r
74 -release = '0.17'\r
75 +release = version\r
76  \r
77  # List of patterns, relative to source directory, that match files and\r
78  # directories to ignore when looking for source files.\r
79 -- \r
80 1.8.5.3\r
81 \r