summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2013-04-10 14:47:49 +0000
committerJeroen Roovers <jer@gentoo.org>2013-04-10 14:47:49 +0000
commit5849662b529c23ac7752b34146ad8c070ba5945e (patch)
tree23e83e23f5cb2815ea1e6138969db316f3100db6 /eclass
parentStable for HPPA (bug #464414). (diff)
downloadgentoo-2-5849662b529c23ac7752b34146ad8c070ba5945e.tar.gz
gentoo-2-5849662b529c23ac7752b34146ad8c070ba5945e.tar.bz2
gentoo-2-5849662b529c23ac7752b34146ad8c070ba5945e.zip
Add support for 1.6.0-nv2 (bug #465340).
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/unpacker.eclass7
2 files changed, 9 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index e17e10285205..beeb09be849e 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.779 2013/04/10 02:33:48 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.780 2013/04/10 14:47:49 jer Exp $
+
+ 10 Apr 2013; Jeroen Roovers <jer@gentoo.org> unpacker.eclass:
+ Add support for 1.6.0-nv2 (bug #465340).
10 Apr 2013; Jory A. Pratt <anarchy@gentoo.org> mozconfig-3.eclass:
Disable debug symbols unless debug is enabled.
diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass
index 8c141dbed140..f8114713c655 100644
--- a/eclass/unpacker.eclass
+++ b/eclass/unpacker.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.12 2013/03/23 21:18:25 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.13 2013/04/10 14:47:49 jer Exp $
# @ECLASS: unpacker.eclass
# @MAINTAINER:
@@ -178,7 +178,7 @@ unpack_makeself() {
local skip=0
exe=tail
case ${ver} in
- 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same
+ 1.5.*|1.6.0-nv*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same
skip=$(grep -a ^skip= "${src}" | cut -d= -f2)
;;
2.0|2.0.1)
@@ -234,6 +234,9 @@ unpack_makeself() {
compress*)
eval ${exe} | gunzip | tar --no-same-owner -xf -
;;
+ XZ*)
+ eval ${exe} | unxz | tar --no-same-owner -xf -
+ ;;
*)
eerror "Unknown filetype \"${filetype}\" ?"
false