Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog unpacker.eclass
Date: Thu, 01 May 2014 19:27:20
Message-Id: 20140501192714.8A20B2004C@flycatcher.gentoo.org
1 ottxor 14/05/01 19:27:14
2
3 Modified: ChangeLog unpacker.eclass
4 Log:
5 add app-arch/plzip support (bug #509264)
6
7 Revision Changes Path
8 1.1236 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1236&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1236&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1235&r2=1.1236
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1235
18 retrieving revision 1.1236
19 diff -u -r1.1235 -r1.1236
20 --- ChangeLog 1 May 2014 13:34:02 -0000 1.1235
21 +++ ChangeLog 1 May 2014 19:27:14 -0000 1.1236
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1235 2014/05/01 13:34:02 jlec Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1236 2014/05/01 19:27:14 ottxor Exp $
27 +
28 + 01 May 2014; Christoph Junghans <ottxor@g.o> unpacker.eclass:
29 + add app-arch/plzip support (bug #509264)
30
31 01 May 2014; Justin Lecher <jlec@g.o> python-utils-r1.eclass:
32 Add missing @DESCRIPTION
33
34
35
36 1.17 eclass/unpacker.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/unpacker.eclass?rev=1.17&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/unpacker.eclass?rev=1.17&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/unpacker.eclass?r1=1.16&r2=1.17
41
42 Index: unpacker.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v
45 retrieving revision 1.16
46 retrieving revision 1.17
47 diff -u -r1.16 -r1.17
48 --- unpacker.eclass 27 Feb 2014 00:20:57 -0000 1.16
49 +++ unpacker.eclass 1 May 2014 19:27:14 -0000 1.17
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.16 2014/02/27 00:20:57 ottxor Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.17 2014/05/01 19:27:14 ottxor Exp $
55
56 # @ECLASS: unpacker.eclass
57 # @MAINTAINER:
58 @@ -29,7 +29,7 @@
59 # @DEFAULT_UNSET
60 # @DESCRIPTION:
61 # Utility to use to decompress lzip files. Will dynamically pick between
62 -# `pdlzip` and `lzip`. Make sure your choice accepts the "-dc" options.
63 +# `plzip`, `pdlzip` and `lzip`. Make sure your choice accepts the "-dc" options.
64 # Note: this is meant for users to set, not ebuilds.
65
66 # for internal use only (unpack_pdv and unpack_makeself)
67 @@ -352,7 +352,7 @@
68 *.lzma|*.xz|*.txz)
69 comp="xz -dc" ;;
70 *.lz)
71 - : ${UNPACKER_LZIP:=$(type -P pdlzip || type -P lzip)}
72 + : ${UNPACKER_LZIP:=$(type -P plzip || type -P pdlzip || type -P lzip)}
73 comp="${UNPACKER_LZIP} -dc" ;;
74 *) comp="" ;;
75 esac
76 @@ -449,7 +449,7 @@
77 *.zip)
78 d="app-arch/unzip" ;;
79 *.lz)
80 - d="|| ( app-arch/pdlzip app-arch/lzip )" ;;
81 + d="|| ( app-arch/plzip app-arch/pdlzip app-arch/lzip )" ;;
82 esac
83 deps+=" ${d}"
84 done