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 942CC1381F3 for ; Sun, 11 Nov 2012 09:52:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D018E04C8; Sun, 11 Nov 2012 09:52: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 B8023E04C8 for ; Sun, 11 Nov 2012 09:52:29 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACB3133D968 for ; Sun, 11 Nov 2012 09:52:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 17B78E5436 for ; Sun, 11 Nov 2012 09:52:27 +0000 (UTC) From: "Reinis Danne" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Reinis Danne" Message-ID: <1352627449.d3af8bbc041e004862d0480cf290cc4f9eb820ac.rei4dan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-python/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/openbabel-python/ChangeLog sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild X-VCS-Directories: sci-chemistry/openbabel-python/ X-VCS-Committer: rei4dan X-VCS-Committer-Name: Reinis Danne X-VCS-Revision: d3af8bbc041e004862d0480cf290cc4f9eb820ac X-VCS-Branch: master Date: Sun, 11 Nov 2012 09:52: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: de396ae3-d0a7-4f32-a53f-f4ddd0630853 X-Archives-Hash: 2eb5c730bb93add5194ed23dd0a74643 commit: d3af8bbc041e004862d0480cf290cc4f9eb820ac Author: Reinis Danne gmail com> AuthorDate: Sat Nov 10 19:25:45 2012 +0000 Commit: Reinis Danne gmail com> CommitDate: Sun Nov 11 09:50:49 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d3af8bbc openbabel-python: Enter BUILD_DIR in src_install python-r1.eclass doesn't enter BUILD_DIR in python_foreach_impl. --- sci-chemistry/openbabel-python/ChangeLog | 4 ++++ .../openbabel-python/openbabel-python-2.3.2.ebuild | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/sci-chemistry/openbabel-python/ChangeLog b/sci-chemistry/openbabel-python/ChangeLog index 51e3bf6..aa49a85 100644 --- a/sci-chemistry/openbabel-python/ChangeLog +++ b/sci-chemistry/openbabel-python/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 10 Nov 2012; Reinis Danne openbabel-python-2.3.2.ebuild: + python-r1.eclass doesn't enter BUILD_DIR in python_foreach_impl, do it + manually where necessary. + *openbabel-python-2.3.2 (19 Oct 2012) 19 Oct 2012; Reinis Danne +openbabel-python-2.3.2.ebuild, diff --git a/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild b/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild index 18b3718..f24e084 100644 --- a/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild +++ b/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild @@ -84,5 +84,11 @@ src_test() { } src_install() { - python_foreach_impl cmake -DCOMPONENT=bindings_python -P cmake_install.cmake + my_impl_src_install() { + cd "${BUILD_DIR}" + + cmake -DCOMPONENT=bindings_python -P cmake_install.cmake + } + + python_foreach_impl my_impl_src_install }