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 1RcS3N-0006hl-IQ for garchives@archives.gentoo.org; Mon, 19 Dec 2011 01:30:10 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED54F21C04E; Mon, 19 Dec 2011 01:29:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B7F5F21C04E for ; Mon, 19 Dec 2011 01:29:59 +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 B3A561B4003 for ; Mon, 19 Dec 2011 01:29:58 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 544) id 85D5B2004B; Mon, 19 Dec 2011 01:29:57 +0000 (UTC) From: "Robin H. Johnson (robbat2)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, robbat2@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: python.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: python.eclass X-VCS-Directories: eclass X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson Content-Type: text/plain; charset=utf8 Message-Id: <20111219012957.85D5B2004B@flycatcher.gentoo.org> Date: Mon, 19 Dec 2011 01:29:57 +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: 5db10ccd-8bc5-4f03-94f4-e354953b0f76 X-Archives-Hash: 8017a556ba3258eb8608655a25be3146 robbat2 11/12/19 01:29:57 Modified: python.eclass Log: Fix missing quotes on has_verison call. Revision Changes Path 1.143 eclass/python.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python.ecla= ss?rev=3D1.143&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python.ecla= ss?rev=3D1.143&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python.ecla= ss?r1=3D1.142&r2=3D1.143 Index: python.eclass =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/eclass/python.eclass,v retrieving revision 1.142 retrieving revision 1.143 diff -p -w -b -B -u -u -r1.142 -r1.143 --- python.eclass 18 Dec 2011 23:38:11 -0000 1.142 +++ python.eclass 19 Dec 2011 01:29:57 -0000 1.143 @@ -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/eclass/python.eclass,v 1.142 2011/12/= 18 23:38:11 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.143 2011/12/= 19 01:29:57 robbat2 Exp $ =20 # @ECLASS: python.eclass # @MAINTAINER: @@ -1596,7 +1596,7 @@ for file in sorted(files_set): # the 3-way structure per comment #6. This enable users with old # coreutils to upgrade a lot easier (you need to upgrade python+portag= e # before coreutils can be upgraded). - if ROOT=3D"/" has_version >=3Dsys-apps/coreutils-6.9.90; then + if ROOT=3D"/" has_version '>=3Dsys-apps/coreutils-6.9.90'; then cp -fr --preserve=3Dall --no-preserve=3Dcontext "${intermediate_insta= llation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of inte= rmediate installation image for Python ABI '${PYTHON_ABI} into installati= on image failed" elif ROOT=3D"/" has_version sys-apps/coreutils; then cp -fr --preserve=3Dall "${intermediate_installation_images_directory= }/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation im= age for Python ABI '${PYTHON_ABI} into installation image failed"