Re: [PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / c4 / fb2c221deb178fd88b6449239dcf81521d1780
1 Return-Path: <too@guru-group.fi>\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 73FA9431FC2\r
6         for <notmuch@notmuchmail.org>; Mon,  6 Jan 2014 01:22:08 -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 7G8Zk65moNrf for <notmuch@notmuchmail.org>;\r
16         Mon,  6 Jan 2014 01:22:04 -0800 (PST)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18         by olra.theworths.org (Postfix) with ESMTP id EF318431FBF\r
19         for <notmuch@notmuchmail.org>; Mon,  6 Jan 2014 01:22:03 -0800 (PST)\r
20 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
21         id 06FC9100063; Mon,  6 Jan 2014 11:21:58 +0200 (EET)\r
22 From: Tomi Ollila <tomi.ollila@iki.fi>\r
23 To: notmuch@notmuchmail.org\r
24 Subject: [PATCH 1/1] devel/release-checks.sh: check PROJECT_NAME in\r
25  doxygen.cfg\r
26 Date: Mon,  6 Jan 2014 11:21:56 +0200\r
27 Message-Id: <1389000116-16702-1-git-send-email-tomi.ollila@iki.fi>\r
28 X-Mailer: git-send-email 1.8.0\r
29 Cc: tomi.ollila@iki.fi\r
30 X-BeenThere: notmuch@notmuchmail.org\r
31 X-Mailman-Version: 2.1.13\r
32 Precedence: list\r
33 List-Id: "Use and development of the notmuch mail system."\r
34         <notmuch.notmuchmail.org>\r
35 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
36         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
37 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
38 List-Post: <mailto:notmuch@notmuchmail.org>\r
39 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
40 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
42 X-List-Received-Date: Mon, 06 Jan 2014 09:22:08 -0000\r
43 \r
44 Check that PROJECT_NAME configuration option in doxygen.cfg equals\r
45 "Notmuch $VERSION" in devel/release-checks.sh.\r
46 ---\r
47 \r
48 Note that release-checks.sh is not yet able to parse the doxygen-generated\r
49 namual pages in man/man3... Decision how to handle those is to be made\r
50 later...\r
51 \r
52  devel/release-checks.sh | 13 +++++++++++++\r
53  1 file changed, 13 insertions(+)\r
54 \r
55 diff --git a/devel/release-checks.sh b/devel/release-checks.sh\r
56 index 8938905..0585f68 100755\r
57 --- a/devel/release-checks.sh\r
58 +++ b/devel/release-checks.sh\r
59 @@ -236,6 +236,19 @@ do\r
60  done\r
61  echo $man_pages_ok.\r
62  \r
63 +doxygen_notmuch_version="\"Notmuch $VERSION\""\r
64 +doxyfile=devel/doxygen.cfg\r
65 +echo -n "Checking that $doxyfile PROJECT_NAME is $doxygen_notmuch_version... "\r
66 +doxygen_project_name=`sed -n '/^PROJECT_NAME/ { s/^[^"]*//p; q;}' $doxyfile`\r
67 +if [ "$doxygen_project_name" = "$doxygen_notmuch_version" ]\r
68 +then\r
69 +       echo Yes.\r
70 +else\r
71 +       append_emsg "PROJECT_NAME '$doxygen_project_name' is not '$doxygen_notmuch_version' in '$doxyfile'"\r
72 +       echo No.\r
73 +fi\r
74 +\r
75 +\r
76  if [ -n "$emsgs" ]\r
77  then\r
78         echo\r
79 -- \r
80 1.8.4.2\r
81 \r