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 515F8138010 for ; Tue, 30 Oct 2012 17:22:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E37F21C007; Tue, 30 Oct 2012 17:22:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0B0E221C007 for ; Tue, 30 Oct 2012 17:22:35 +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 368F733C235 for ; Tue, 30 Oct 2012 17:22:35 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id 0076C21600; Tue, 30 Oct 2012 17:22:33 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-distutils-ng.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog python-distutils-ng.eclass X-VCS-Directories: eclass X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121030172234.0076C21600@flycatcher.gentoo.org> Date: Tue, 30 Oct 2012 17:22:33 +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: 89d0f188-7c9a-4c99-93da-58d48bc17b95 X-Archives-Hash: 0a3949cd2c4a2c957fa9705acf51e847 mgorny 12/10/30 17:22:33 Modified: ChangeLog python-distutils-ng.eclass Log: Fix Prefix support, wrt bug #423323. Revision Changes Path 1.485 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.485&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.485&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.484&r2=1.485 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.484 retrieving revision 1.485 diff -u -r1.484 -r1.485 --- ChangeLog 29 Oct 2012 13:34:02 -0000 1.484 +++ ChangeLog 30 Oct 2012 17:22:33 -0000 1.485 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.484 2012/10/29 13:34:02 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.485 2012/10/30 17:22:33 mgorny Exp $ + + 30 Oct 2012; Michał Górny python-distutils-ng.eclass: + Fix Prefix support, wrt bug #423323. 29 Oct 2012; Michał Górny distutils-r1.eclass: Support and use out-of-source builds by default. 1.29 eclass/python-distutils-ng.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.29&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.29&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?r1=1.28&r2=1.29 Index: python-distutils-ng.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- python-distutils-ng.eclass 27 Sep 2012 16:35:41 -0000 1.28 +++ python-distutils-ng.eclass 30 Oct 2012 17:22:33 -0000 1.29 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.28 2012/09/27 16:35:41 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.29 2012/10/30 17:22:33 mgorny Exp $ # @ECLASS: python-distutils-ng # @MAINTAINER: @@ -98,9 +98,9 @@ local impl="${1/_/.}" case "${impl}" in python?.?|jython?.?) - echo "/usr/bin/${impl}" ;; + echo "${EPREFIX}/usr/bin/${impl}" ;; pypy?.?) - echo "/usr/bin/pypy-c${impl: -3}" ;; + echo "${EPREFIX}/usr/bin/pypy-c${impl: -3}" ;; *) die "Unsupported implementation: ${1}" ;; esac @@ -400,7 +400,7 @@ fi if [[ -z "${PYTHON_DISABLE_SCRIPT_REDOS}" ]]; then - for script_file in $(find "${D}"{,usr/}{,s}bin/ -type f -executable 2> /dev/null); do + for script_file in $(find "${ED}"{,usr/}{,s}bin/ -type f -executable 2> /dev/null); do python-distutils-ng_redoscript "/${script_file#${D}}" done fi