tmux: Update to 2.3
Message ID | 20170103192822.1434-1-matthias.fischer@ipfire.org |
---|---|
State | Accepted |
Commit | f2a309dc088a735a862052e8c77ecf1261e5ee50 |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (unknown [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 5587461E52 for <patchwork@ipfire.org>; Tue, 3 Jan 2017 20:28:30 +0100 (CET) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 0AD42C17; Tue, 3 Jan 2017 20:28:28 +0100 (CET) Received: from Devel.localdomain (p5DD82631.dip0.t-ipconnect.de [93.216.38.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4F392C09 for <development@lists.ipfire.org>; Tue, 3 Jan 2017 20:28:26 +0100 (CET) From: Matthias Fischer <matthias.fischer@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH] tmux: Update to 2.3 Date: Tue, 3 Jan 2017 20:28:22 +0100 Message-Id: <20170103192822.1434-1-matthias.fischer@ipfire.org> X-Mailer: git-send-email 2.11.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Matthias Fischer
Jan. 4, 2017, 6:28 a.m. UTC
For details see:
https://raw.githubusercontent.com/tmux/tmux/master/CHANGES
Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
---
lfs/tmux | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
Comments
Thank you! Merged. On Tue, 2017-01-03 at 20:28 +0100, Matthias Fischer wrote: > For details see: > https://raw.githubusercontent.com/tmux/tmux/master/CHANGES > > Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org> > --- > lfs/tmux | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/lfs/tmux b/lfs/tmux > index 2223d1330..300080d5f 100644 > --- a/lfs/tmux > +++ b/lfs/tmux > @@ -1,7 +1,7 @@ > ############################################################################# > ## > # > # > # IPFire.org - A linux based > firewall # > -# Copyright (C) 2014 IPFire Team <info@ipfire.org> > # > +# Copyright (C) 2017 IPFire Team <info@ipfire.org> > # > # > # > # This program is free software: you can redistribute it and/or > modify # > # it under the terms of the GNU General Public License as published > by # > @@ -24,7 +24,7 @@ > > include Config > > -VER = 1.9a > +VER = 2.3 > > THISAPP = tmux-$(VER) > DL_FILE = $(THISAPP).tar.gz > @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) > DIR_APP = $(DIR_SRC)/$(THISAPP) > TARGET = $(DIR_INFO)/$(THISAPP) > PROG = tmux > -PAK_VER = 3 > +PAK_VER = 4 > > DEPS = "" > > @@ -44,7 +44,7 @@ objects = $(DL_FILE) > > $(DL_FILE) = $(DL_FROM)/$(DL_FILE) > > -$(DL_FILE)_MD5 = b07601711f96f1d260b390513b509a2d > +$(DL_FILE)_MD5 = fcfd1611d705d8b31df3c26ebc93bd3e > > install : $(TARGET) > > @@ -54,7 +54,7 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects)) > > md5 : $(subst %,%_MD5,$(objects)) > > -dist: > +dist: > @$(PAK) > > ############################################################################# > ##