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 61687138200 for ; Sun, 2 Jun 2013 13:43:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02541E09EA; Sun, 2 Jun 2013 13:43:15 +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 5A8F9E09EA for ; Sun, 2 Jun 2013 13:43:14 +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 53B1633E37D for ; Sun, 2 Jun 2013 13:43:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E1A29E5462 for ; Sun, 2 Jun 2013 13:43:09 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1370180558.11b6c665a97557d3006738c86294e5ded6bb27ff.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/coot/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/coot/ChangeLog sci-chemistry/coot/coot-9999.ebuild X-VCS-Directories: sci-chemistry/coot/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 11b6c665a97557d3006738c86294e5ded6bb27ff X-VCS-Branch: master Date: Sun, 2 Jun 2013 13:43:09 +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: 9df6fbd8-7f83-464b-af67-32b37f1064a5 X-Archives-Hash: bc97f7cf06be3ed0fd848cfaf52369f7 commit: 11b6c665a97557d3006738c86294e5ded6bb27ff Author: Justin Lecher gentoo org> AuthorDate: Sun Jun 2 13:41:55 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Jun 2 13:42:38 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=11b6c665 sci-chemistry/coot: Fix PYTHON() -> ${EPYTHON} for new eclasses Package-Manager: portage-2.2.0_alpha177 --- sci-chemistry/coot/ChangeLog | 3 +++ sci-chemistry/coot/coot-9999.ebuild | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sci-chemistry/coot/ChangeLog b/sci-chemistry/coot/ChangeLog index e877cf7..c729ace 100644 --- a/sci-chemistry/coot/ChangeLog +++ b/sci-chemistry/coot/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 02 Jun 2013; Justin Lecher coot-9999.ebuild: + Fix PYTHON() -> ${EPYTHON} for new eclasses + 29 May 2013; Justin Lecher coot-9999.ebuild: Move to new python eclasses diff --git a/sci-chemistry/coot/coot-9999.ebuild b/sci-chemistry/coot/coot-9999.ebuild index 73032af..4a7ee55 100644 --- a/sci-chemistry/coot/coot-9999.ebuild +++ b/sci-chemistry/coot/coot-9999.ebuild @@ -96,7 +96,7 @@ src_unpack() { src_prepare() { sed \ - -e "s:AM_COOT_SYS_BUILD_TYPE:COOT_SYS_BUILD_TYPE=Gentoo-Linux-$(PYTHON)-gtk2 ; AC_MSG_RESULT([\$COOT_SYS_BUILD_TYPE]); AC_SUBST(COOT_SYS_BUILD_TYPE):g" \ + -e "s:AM_COOT_SYS_BUILD_TYPE:COOT_SYS_BUILD_TYPE=Gentoo-Linux-${PYTHON}-gtk2 ; AC_MSG_RESULT([\$COOT_SYS_BUILD_TYPE]); AC_SUBST(COOT_SYS_BUILD_TYPE):g" \ -i configure.in || die autotools-utils_src_prepare @@ -128,7 +128,7 @@ src_configure() { src_compile() { autotools-utils_src_compile - python_fix_shebang "${S}"/src/coot_gtk2.py + python_fix_shebang "${S}"/src/coot_gtk2.py "${S}"/python-tests/coot_unittest.py cp "${S}"/src/coot_gtk2.py python/coot.py || die }