ottxor 14/05/01 19:27:14 Modified: ChangeLog unpacker.eclass Log: add app-arch/plzip support (bug #509264)
Revision Changes Path 1.1236 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1236&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1236&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1235&r2=1.1236 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1235 retrieving revision 1.1236 diff -u -r1.1235 -r1.1236 --- ChangeLog 1 May 2014 13:34:02 -0000 1.1235 +++ ChangeLog 1 May 2014 19:27:14 -0000 1.1236 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1235 2014/05/01 13:34:02 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1236 2014/05/01 19:27:14 ottxor Exp $ + + 01 May 2014; Christoph Junghans <[email protected]> unpacker.eclass: + add app-arch/plzip support (bug #509264) 01 May 2014; Justin Lecher <[email protected]> python-utils-r1.eclass: Add missing @DESCRIPTION 1.17 eclass/unpacker.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/unpacker.eclass?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/unpacker.eclass?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/unpacker.eclass?r1=1.16&r2=1.17 Index: unpacker.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- unpacker.eclass 27 Feb 2014 00:20:57 -0000 1.16 +++ unpacker.eclass 1 May 2014 19:27:14 -0000 1.17 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.16 2014/02/27 00:20:57 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.17 2014/05/01 19:27:14 ottxor Exp $ # @ECLASS: unpacker.eclass # @MAINTAINER: @@ -29,7 +29,7 @@ # @DEFAULT_UNSET # @DESCRIPTION: # Utility to use to decompress lzip files. Will dynamically pick between -# `pdlzip` and `lzip`. Make sure your choice accepts the "-dc" options. +# `plzip`, `pdlzip` and `lzip`. Make sure your choice accepts the "-dc" options. # Note: this is meant for users to set, not ebuilds. # for internal use only (unpack_pdv and unpack_makeself) @@ -352,7 +352,7 @@ *.lzma|*.xz|*.txz) comp="xz -dc" ;; *.lz) - : ${UNPACKER_LZIP:=$(type -P pdlzip || type -P lzip)} + : ${UNPACKER_LZIP:=$(type -P plzip || type -P pdlzip || type -P lzip)} comp="${UNPACKER_LZIP} -dc" ;; *) comp="" ;; esac @@ -449,7 +449,7 @@ *.zip) d="app-arch/unzip" ;; *.lz) - d="|| ( app-arch/pdlzip app-arch/lzip )" ;; + d="|| ( app-arch/plzip app-arch/pdlzip app-arch/lzip )" ;; esac deps+=" ${d}" done
