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 0D62B1381F3 for ; Thu, 16 May 2013 13:59:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8882E07EE; Thu, 16 May 2013 13:59:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 29622E07EE for ; Thu, 16 May 2013 13:59:30 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4553333DE0C for ; Thu, 16 May 2013 13:59:29 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2098) id 347EE21710; Thu, 16 May 2013 13:59:27 +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 Content-Transfer-Encoding: 8bit Message-Id: <20130516135927.347EE21710@flycatcher.gentoo.org> Date: Thu, 16 May 2013 13:59:27 +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: 6de2b68a-3012-45bc-9780-771b30028b09 X-Archives-Hash: c5ce6e22674cb84802d0bd68c7bf61cc zmedico 13/05/16 13:59:27 Modified: portage-9999.ebuild ChangeLog Log: Eliminate subshell in boolean expression. (Portage version: 2.2.0_alpha175/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3) Revision Changes Path 1.77 sys-apps/portage/portage-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-9999.ebuild?rev=1.77&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-9999.ebuild?rev=1.77&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/portage-9999.ebuild?r1=1.76&r2=1.77 Index: portage-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,v retrieving revision 1.76 retrieving revision 1.77 diff -u -r1.76 -r1.77 --- portage-9999.ebuild 16 May 2013 00:34:25 -0000 1.76 +++ portage-9999.ebuild 16 May 2013 13:59:27 -0000 1.77 @@ -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/sys-apps/portage/portage-9999.ebuild,v 1.76 2013/05/16 00:34:25 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-9999.ebuild,v 1.77 2013/05/16 13:59:27 zmedico Exp $ EAPI=3 PYTHON_COMPAT=( @@ -399,8 +399,8 @@ # If portage-2.1.6 is installed and the preserved_libs_registry exists, # assume that the NEEDED.ELF.2 files have already been generated. has_version "<=${CATEGORY}/${PN}-2.2_pre7" && \ - ! ( [ -e "${EROOT}"var/lib/portage/preserved_libs_registry ] && \ - has_version ">=${CATEGORY}/${PN}-2.1.6_rc" ) \ + ! { [ -e "${EROOT}"var/lib/portage/preserved_libs_registry ] && \ + has_version ">=${CATEGORY}/${PN}-2.1.6_rc" ; } \ && NEEDED_REBUILD_UPGRADE=true || NEEDED_REBUILD_UPGRADE=false } 1.1267 sys-apps/portage/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?rev=1.1267&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?rev=1.1267&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/portage/ChangeLog?r1=1.1266&r2=1.1267 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v retrieving revision 1.1266 retrieving revision 1.1267 diff -u -r1.1266 -r1.1267 --- ChangeLog 16 May 2013 00:34:25 -0000 1.1266 +++ ChangeLog 16 May 2013 13:59:27 -0000 1.1267 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/portage # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1266 2013/05/16 00:34:25 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1267 2013/05/16 13:59:27 zmedico Exp $ + + 16 May 2013; Zac Medico portage-9999.ebuild: + Eliminate subshell in boolean expression. *portage-2.2.0_alpha175 (16 May 2013)