Re: [PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / a6 / 700ab09e99472c7be85e24d609d31f98aee0d4
1 Return-Path: <tomi.ollila@iki.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 DBF86431FC3\r
6         for <notmuch@notmuchmail.org>; Sat, 11 Jan 2014 02:46: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 DH7rZi3hHMdj for <notmuch@notmuchmail.org>;\r
16         Sat, 11 Jan 2014 02:46:09 -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 8FBEF431FC0\r
19         for <notmuch@notmuchmail.org>; Sat, 11 Jan 2014 02:46:09 -0800 (PST)\r
20 Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
21         by guru.guru-group.fi (Postfix) with ESMTP id A754C10005E\r
22         for <notmuch@notmuchmail.org>; Sat, 11 Jan 2014 12:46:03 +0200 (EET)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: <notmuch@notmuchmail.org>\r
25 Subject: test: (gnu) tar(1) portability\r
26 User-Agent: Notmuch/0.17+23~ga575e35 (http://notmuchmail.org) Emacs/24.3.1\r
27         (x86_64-unknown-linux-gnu)\r
28 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
29         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
30         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
31 Date: Sat, 11 Jan 2014 12:46:03 +0200\r
32 Message-ID: <m2mwj2aj9w.fsf@guru.guru-group.fi>\r
33 MIME-Version: 1.0\r
34 Content-Type: text/plain\r
35 X-BeenThere: notmuch@notmuchmail.org\r
36 X-Mailman-Version: 2.1.13\r
37 Precedence: list\r
38 List-Id: "Use and development of the notmuch mail system."\r
39         <notmuch.notmuchmail.org>\r
40 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
42 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
43 List-Post: <mailto:notmuch@notmuchmail.org>\r
44 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
45 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
47 X-List-Received-Date: Sat, 11 Jan 2014 10:46:16 -0000\r
48 \r
49 Hi\r
50 \r
51 Currently performance-test requires GNU tar and the uprgrade test\r
52 in progress will (in it's current form) require it too.\r
53 \r
54 >From portability point of view these tests will work only on Linux\r
55 by default -- BSD/Mac OS X have libarchive based tar(1) and other\r
56 systems something less capable (no -z option, for example).\r
57 \r
58 >From the test point of view we can expect people to install GNU tar\r
59 (somewhere) in for their systems but should we provide less "intrusive"\r
60 way for having the GNU tar available.\r
61 \r
62 Options:\r
63 \r
64 1) Do nothing, and expect testers to have GNU tar in PATH available\r
65    before any other tar. For example /usr/local/bin/tar could be GNU tar\r
66    and that is put before /bin:/usr/bin in path.\r
67 \r
68 2) Change calls to 'tar' to format ${GNU_TAR:-tar} so testers can set \r
69    environment variable GNU_TAR to the name/path of gnu tar when running\r
70    tests (like GNU_TAR=/usr/local/bin/gtar make test or GNU_TAR=gtar ...)\r
71 \r
72 3) Check whether 'gtar' is in system and use that. if not use tar:\r
73 \r
74    # opportunistically check whether 'gtar' is in system and use that if it is\r
75    if hash gtar >/dev/null\r
76    then TAR=gtar\r
77    else TAR=tar\r
78    fi\r
79 \r
80    and then replate tar with ${TAR} ($ & {} to emphasize the variable usage)\r
81    in the test code.\r
82 \r
83    Interestingly Fedora 20 installs both /usr/bin/gtar & /usr/bin/tar.\r
84    In one wheezy system I saw only tar. I tried to JFGI 'gnu tar installation'\r
85    but I could not find references to 'gtar' there.\r
86 \r
87 If installing gtar is widespread I'd use option 3. If not, option 2.\r
88 It may be that we end up using option 1 ;/\r
89 \r
90 Tomi\r