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 1QoJhQ-0001jy-Bu for garchives@archives.gentoo.org; Tue, 02 Aug 2011 18:28:16 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73A5C21C0A9; Tue, 2 Aug 2011 18:28:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4768821C0A9 for ; Tue, 2 Aug 2011 18:28:09 +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 CD0C31B402B for ; Tue, 2 Aug 2011 18:28:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id CCEFB3C004 for ; Tue, 2 Aug 2011 18:28:07 +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: Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b33f68f8b3ade6531d45ad79c72acbd7f0cb9109 Date: Tue, 2 Aug 2011 18:28:07 +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: af2bf13817f3b5b0571e610594f3d137 commit: b33f68f8b3ade6531d45ad79c72acbd7f0cb9109 Author: Zac Medico gentoo org> AuthorDate: Tue Aug 2 18:25:58 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Aug 2 18:25:58 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Db33f68f8 unpack: remove backward compat for bug #376741 This case is extremely rare, since the most common practice is to unpack source files that are already in the cwd. The only Gentoo packages that needed to be fixed were games-arcade/tuxpuck and www-plugins/google-talkplugin. --- bin/ebuild.sh | 12 ------------ 1 files changed, 0 insertions(+), 12 deletions(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 3d4d557..d68e54b 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -373,18 +373,6 @@ unpack() { local cwd_dest=3D${x##*/} cwd_dest=3D${cwd_dest%.*} $1 -c -- "${srcdir}${x}" > "${cwd_dest}" || die "$myfail" - case "$EAPI" in - 0|1|2|3|4|4-python) - # If the source file is in a writable directory then - # create a symlink for backward-compatible emulation - # of tools like gunzip and bunzip2 (see bug #376741). - if [[ ! -e ${x%.*} && -w ${x%/*} ]] && \ - [[ ${x} =3D=3D "${PORTAGE_BUILDDIR}/"* || - ${x} =3D=3D ./* || ${x} !=3D /* ]] ; then - ln -snf "${PWD}/${cwd_dest}" "${x%.*}" - fi - ;; - esac fi } =20