From patchwork Wed Jan 24 08:18:48 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 1630 Return-Path: Received: from mail01.ipfire.org (unknown [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 8173D6095F for ; Tue, 23 Jan 2018 22:18:57 +0100 (CET) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id A49C245EF; Tue, 23 Jan 2018 22:18:56 +0100 (CET) Received: from Devel.localdomain (p4FDF0C34.dip0.t-ipconnect.de [79.223.12.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id A09E945EF for ; Tue, 23 Jan 2018 22:18:53 +0100 (CET) From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] sed: Update to 4.4 Date: Tue, 23 Jan 2018 22:18:48 +0100 Message-Id: <20180123211848.4957-1-matthias.fischer@ipfire.org> X-Mailer: git-send-email 2.15.1 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Hi, 'sed' hasn't been updated in IPFire for a few years - I thought it could be worthy an update: Excerpt from 'NEWS': "* Noteworthy changes in release 4.4 (2017-02-03) [stable] sed could segfault when invoked with specific combination of newlines in the input and regex pattern. [Bug introduced in sed-4.3]" "Noteworthy changes" from release 4.2.2 to 4.3 can be found in 'NEWS' file, too much to list them all... Best, Matthias Signed-off-by: Matthias Fischer --- lfs/sed | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lfs/sed b/lfs/sed index 3ac39a71c..9123183e3 100644 --- a/lfs/sed +++ b/lfs/sed @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2016 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2018 IPFire Team # # # # 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,10 +24,10 @@ include Config -VER = 4.2.2 +VER = 4.4 THISAPP = sed-$(VER) -DL_FILE = $(THISAPP).tar.gz +DL_FILE = $(THISAPP).tar.xz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) @@ -53,7 +53,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 4111de4faa3b9848a0686b2f260c5056 +$(DL_FILE)_MD5 = e0c583d4c380059abd818cd540fe6938 install : $(TARGET) @@ -82,7 +82,7 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./configure $(EXTRA_CONFIG) cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE) cd $(DIR_APP) && make $(EXTRA_INSTALL) install