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 1Pt4Yd-0001Lb-4U for garchives@archives.gentoo.org; Fri, 25 Feb 2011 20:46:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 831BF1C004; Fri, 25 Feb 2011 20:46:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 40B8B1C004 for ; Fri, 25 Feb 2011 20:46:28 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D7241B4087 for ; Fri, 25 Feb 2011 20:46:27 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2098) id 70DB220054; Fri, 25 Feb 2011 20:46:25 +0000 (UTC) From: "Zac Medico (zmedico)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, zmedico@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/portage: portage-9999.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: portage-9999.ebuild ChangeLog X-VCS-Directories: sys-apps/portage X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico Content-Type: text/plain; charset=utf8 Message-Id: <20110225204625.70DB220054@flycatcher.gentoo.org> Date: Fri, 25 Feb 2011 20:46:25 +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: 34d9bdc87ae2b3df791a3554004349ca zmedico 11/02/25 20:46:25 Modified: portage-9999.ebuild ChangeLog Log: 25 Feb 2011; Zac Medico portage-9999.ebuild: Fix broken doexe call with all symlinks. =20 (Portage version: 2.2.0_alpha25/cvs/Linux i686) Revision Changes Path 1.20 sys-apps/portage/portage-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/p= ortage-9999.ebuild?rev=3D1.20&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/p= ortage-9999.ebuild?rev=3D1.20&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/p= ortage-9999.ebuild?r1=3D1.19&r2=3D1.20 Index: portage-9999.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- portage-9999.ebuild 8 Feb 2011 23:00:59 -0000 1.19 +++ portage-9999.ebuild 25 Feb 2011 20:46:25 -0000 1.20 @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,= v 1.19 2011/02/08 23:00:59 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,= v 1.20 2011/02/25 20:46:25 zmedico Exp $ =20 # Require EAPI 2 since we now require at least python-2.6 (for python 3 # syntax support) which also requires EAPI 2. @@ -187,14 +187,16 @@ rm "${S}"/bin/ebuild-helpers/sed || die "Failed to remove sed wrapper" fi =20 - local x symlinks + local x symlinks files =20 cd "$S" || die "cd failed" for x in $(find bin -type d) ; do exeinto $portage_base/$x || die "exeinto failed" cd "$S"/$x || die "cd failed" - doexe $(find . -mindepth 1 -maxdepth 1 -type f ! -type l) || \ - die "doexe failed" + files=3D$(find . -mindepth 1 -maxdepth 1 -type f ! -type l) + if [ -n "$files" ] ; then + doexe $files || die "doexe failed" + fi symlinks=3D$(find . -mindepth 1 -maxdepth 1 -type l) if [ -n "$symlinks" ] ; then cp -P $symlinks "$D$portage_base/$x" || die "cp failed" 1.804 sys-apps/portage/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/C= hangeLog?rev=3D1.804&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/C= hangeLog?rev=3D1.804&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/C= hangeLog?r1=3D1.803&r2=3D1.804 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v retrieving revision 1.803 retrieving revision 1.804 diff -u -r1.803 -r1.804 --- ChangeLog 22 Feb 2011 19:46:40 -0000 1.803 +++ ChangeLog 25 Feb 2011 20:46:25 -0000 1.804 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/portage # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.803 20= 11/02/22 19:46:40 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.804 20= 11/02/25 20:46:25 zmedico Exp $ + + 25 Feb 2011; Zac Medico portage-9999.ebuild: + Fix broken doexe call with all symlinks. =20 *portage-2.2.0_alpha25 (22 Feb 2011) =20