From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 302691393A4 for ; Sun, 9 Mar 2014 18:11:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25512E0B45; Sun, 9 Mar 2014 18:11:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA1CDE0B45 for ; Sun, 9 Mar 2014 18:11:34 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4F3633FC85 for ; Sun, 9 Mar 2014 18:11:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id F1D83183B3 for ; Sun, 9 Mar 2014 18:11:29 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1394388520.12e077100985efcebcf278a8025c7df53d953a8c.pinkbyte@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: eclass/ X-VCS-Repository: proj/gamerlay X-VCS-Files: eclass/unpacker-nixstaller.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: 12e077100985efcebcf278a8025c7df53d953a8c X-VCS-Branch: master Date: Sun, 9 Mar 2014 18:11:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6c3f3e40-5668-4daa-a22f-0642dd1bef44 X-Archives-Hash: 4f7ea71184f0fe0198aa4810cb158ecd commit: 12e077100985efcebcf278a8025c7df53d953a8c Author: Sergey Popov gentoo org> AuthorDate: Sun Mar 9 18:08:40 2014 +0000 Commit: Sergey Popov gentoo org> CommitDate: Sun Mar 9 18:08:40 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=12e07710 unpacker-nixstaller.eclass: fix handling of LZMA tarballs with new sys-apps/file --- eclass/unpacker-nixstaller.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/unpacker-nixstaller.eclass b/eclass/unpacker-nixstaller.eclass index 74ed2ba..717fc33 100644 --- a/eclass/unpacker-nixstaller.eclass +++ b/eclass/unpacker-nixstaller.eclass @@ -38,7 +38,7 @@ nixstaller_unpack() { [[ -f "./$i" ]] && ( local type=$(file -b ${i}) case ${type} in - data) + data|LZMA*) tar -xJf "./$i" ;; gzip*)