RE: Reply all - issue
[notmuch-archives.git] / 6d / 506d79fafac53e8fbed53bf8a39fd25b68cced
1 Return-Path: <tomi.ollila@nixu.com>\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 B6C95431FD0\r
6         for <notmuch@notmuchmail.org>; Thu, 24 Nov 2011 12:41:05 -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 J4z3BLPMXr4c for <notmuch@notmuchmail.org>;\r
16         Thu, 24 Nov 2011 12:41:04 -0800 (PST)\r
17 Received: from taco2.nixu.fi (taco2.nixu.fi [194.197.118.31])\r
18         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 690DB431FB6\r
21         for <notmuch@notmuchmail.org>; Thu, 24 Nov 2011 12:41:04 -0800 (PST)\r
22 Received: from taco2.nixu.fi (taco2.nixu.fi [194.197.118.31])\r
23         by taco2.nixu.fi (8.14.3/8.14.3/Debian-5+lenny1) with ESMTP id\r
24         pAOKf1bS002829\r
25         for <notmuch@notmuchmail.org>; Thu, 24 Nov 2011 22:41:01 +0200\r
26 From: Tomi Ollila <tomi.ollila@nixu.com>\r
27 To: <notmuch@notmuchmail.org>\r
28 Subject: [PATCH] have LATEST-notmuch-<version>.tar.gz on releases web page\r
29 User-Agent: Notmuch/0.10+15~gb5803e9 (http://notmuchmail.org) Emacs/23.3.1\r
30         (i686-pc-linux-gnu)\r
31 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
32         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
33         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
34 Date: Thu, 24 Nov 2011 22:41:01 +0200\r
35 Message-ID: <yf6ty5ttfs2.fsf@taco2.nixu.fi>\r
36 MIME-Version: 1.0\r
37 Content-Type: text/plain; charset=us-ascii\r
38 X-BeenThere: notmuch@notmuchmail.org\r
39 X-Mailman-Version: 2.1.13\r
40 Precedence: list\r
41 List-Id: "Use and development of the notmuch mail system."\r
42         <notmuch.notmuchmail.org>\r
43 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
44         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
45 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
46 List-Post: <mailto:notmuch@notmuchmail.org>\r
47 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
48 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
50 X-List-Received-Date: Thu, 24 Nov 2011 20:41:06 -0000\r
51 \r
52 The notmuchmail/releases page used to have LATEST-notmuch-<version>\r
53 to link to the latest notmuch source tarball. This is confusing on\r
54 web page and on disk when the file has been downloaded. This change\r
55 looks a bit inconsistent with the 'rm' command just executed before.\r
56 $(TAR_FILE) is defined (currently) as $(PACKAGE)-$(VERSION).tar.gz;\r
57 as long as the prefix stays $(PACKAGE)-$(VERSION) and version begins\r
58 with a digit then this line is good in execution point of view.\r
59 ---\r
60  Makefile.local |    2 +-\r
61  1 files changed, 1 insertions(+), 1 deletions(-)\r
62 \r
63 diff --git a/Makefile.local b/Makefile.local\r
64 index c94402b..b4faada 100644\r
65 --- a/Makefile.local\r
66 +++ b/Makefile.local\r
67 @@ -122,7 +122,7 @@ release: verify-source-tree-and-version\r
68  ifeq ($(REALLY_UPLOAD),yes)\r
69         git push origin $(VERSION)\r
70         cd releases && scp $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE) $(RELEASE_HOST):$(RELEASE_DIR)\r
71 -       ssh $(RELEASE_HOST) "rm -f $(RELEASE_DIR)/LATEST-$(PACKAGE)-[0-9]* ; ln -s $(TAR_FILE) $(RELEASE_DIR)/LATEST-$(PACKAGE)-$(VERSION)"\r
72 +       ssh $(RELEASE_HOST) "rm -f $(RELEASE_DIR)/LATEST-$(PACKAGE)-[0-9]* ; ln -s $(TAR_FILE) $(RELEASE_DIR)/LATEST-$(TAR_FILE)"\r
73  endif\r
74         @echo "Please send a release announcement using $(PACKAGE)-$(VERSION).announce as a template."\r
75  \r
76 -- \r
77 1.7.7.3\r
78 \r