xz: update to 5.2.2
Message ID | 1456216648-9541-1-git-send-email-lorenz.marcel@web.de |
---|---|
State | Accepted |
Commit | 962fade2d4714d4c8d5e26b841e4a87c96f92845 |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (hedwig.ipfire.org [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 429E661C00 for <patchwork@ipfire.org>; Tue, 23 Feb 2016 09:26:32 +0100 (CET) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 82AEF2F73; Tue, 23 Feb 2016 09:26:31 +0100 (CET) Received: from mint01.skynet.local (ip5f5b7cdb.dynamic.kabel-deutschland.de [95.91.124.219]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 73F42B85; Tue, 23 Feb 2016 09:26:28 +0100 (CET) From: Marcel Lorenz <lorenz.marcel@web.de> To: development@lists.ipfire.org Subject: [PATCH] xz: update to 5.2.2 Date: Tue, 23 Feb 2016 09:37:28 +0100 Message-Id: <1456216648-9541-1-git-send-email-lorenz.marcel@web.de> X-Mailer: git-send-email 1.9.1 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> Cc: Marcel Lorenz <marcel.lorenz@ipfire.org>, Marcel Lorenz <lorenz.marcel@web.de> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Marcel Lorenz
Feb. 23, 2016, 7:37 p.m. UTC
Update xz to last version from Linux from Scratch.
Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org>
---
config/rootfiles/common/xz | 2 +-
lfs/xz | 5 +++--
2 files changed, 4 insertions(+), 3 deletions(-)
Comments
Hi, On Tue, 2016-02-23 at 09:37 +0100, Marcel Lorenz wrote: > Update xz to last version from Linux from Scratch. > > Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org> > > --- > config/rootfiles/common/xz | 2 +- > lfs/xz | 5 +++-- > 2 files changed, 4 insertions(+), 3 deletions(-) > > diff --git a/config/rootfiles/common/xz b/config/rootfiles/common/xz > index b4053d9..8b71758 100644 > --- a/config/rootfiles/common/xz > +++ b/config/rootfiles/common/xz > @@ -41,7 +41,7 @@ usr/bin/xzmore > #usr/lib/liblzma.la > usr/lib/liblzma.so > usr/lib/liblzma.so.5 > -usr/lib/liblzma.so.5.2.1 > +usr/lib/liblzma.so.5.2.2 > #usr/lib/pkgconfig/liblzma.pc > #usr/share/doc/xz > #usr/share/doc/xz/AUTHORS > diff --git a/lfs/xz b/lfs/xz > index c1d3ef7..c09cb34 100644 > --- a/lfs/xz > +++ b/lfs/xz > @@ -24,7 +24,7 @@ > > include Config > > -VER = 5.2.1 > +VER = 5.2.2 > > THISAPP = xz-$(VER) > DL_FILE = $(THISAPP).tar.xz > @@ -47,7 +47,7 @@ objects = $(DL_FILE) > > $(DL_FILE) = $(DL_FROM)/$(DL_FILE) > > -$(DL_FILE)_MD5 = b5e2dd95dc8498cea5354377ed89aa65 > +$(DL_FILE)_MD5 = e26772b69940085c0632589ab1d52e64 > > install : $(TARGET) > > @@ -77,6 +77,7 @@ $(subst %,%_MD5,$(objects)) : > $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) > @$(PREBUILD) > @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf > $(DIR_DL)/$(DL_FILE) > + cd $(DIR_APP) && sed -e '/mf\.buffer = NULL/a next->coder- > >mf.size = 0;' -i src/liblzma/lz/lz_encoder.c I am not too happy about these one-line seds. I know that LFS is using them a lot, but sometimes they do more damage than they help. Patches would be preferred. However I won't bitch about this one. > cd $(DIR_APP) && ./configure --prefix=$(PREFIX) > cd $(DIR_APP) && make $(MAKETUNING) > cd $(DIR_APP) && make install -Michael