From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1R79qg-00029f-3w for garchives@archives.gentoo.org; Fri, 23 Sep 2011 17:47:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15F8F21C11C; Fri, 23 Sep 2011 17:47:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id DB14E21C11C for ; Fri, 23 Sep 2011 17:47:33 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 470791B400A for ; Fri, 23 Sep 2011 17:47:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5948580042 for ; Fri, 23 Sep 2011 17:47:32 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <6f4a5ef478b76ac24e6cd54a38728415fe852277.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/phase-helpers.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6f4a5ef478b76ac24e6cd54a38728415fe852277 Date: Fri, 23 Sep 2011 17:47:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 9900cc04da898417b5566f1d4edb11bd commit: 6f4a5ef478b76ac24e6cd54a38728415fe852277 Author: Zac Medico gentoo org> AuthorDate: Fri Sep 23 17:46:38 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Sep 23 17:46:38 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D6f4a5ef4 Revert "unpack: handle non-gz files from deb2targz" This reverts commit dd7c57ecb90949ce3306394cfe262566b87351ca. We'll do this in a new EAPI, as discussed in bug #384147. --- bin/phase-helpers.sh | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh index ab597ff..a033fa8 100644 --- a/bin/phase-helpers.sh +++ b/bin/phase-helpers.sh @@ -340,11 +340,7 @@ unpack() { # doesn't inadvertently install it. rm -f "$y" fi - local tarfile - for tarfile in "${y%.deb}".tar.* ; do - mv -f "${tarfile}" data.tar.${tarfile##*.} || \ - die "$myfail" - done + mv -f "${y%.deb}".tar.gz data.tar.gz || die "$myfail" else ar x "$srcdir$x" || die "$myfail" fi