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 B71A2138858 for ; Mon, 4 Feb 2013 16:12:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93038E01BE; Mon, 4 Feb 2013 16:12:07 +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 1B8D1E01BE for ; Mon, 4 Feb 2013 16:12:07 +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 E24F733DDEB for ; Mon, 4 Feb 2013 16:12:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3C9CBE4073 for ; Mon, 4 Feb 2013 16:12:03 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1359994277.7e398c72d2ac638ee6bbaf090383f9ee6e9536f6.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-python/sip/ X-VCS-Repository: proj/qt X-VCS-Files: dev-python/sip/sip-4.14.4_pre20130203.ebuild dev-python/sip/sip-4.9999.ebuild X-VCS-Directories: dev-python/sip/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 7e398c72d2ac638ee6bbaf090383f9ee6e9536f6 X-VCS-Branch: master Date: Mon, 4 Feb 2013 16:12:03 +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: 26096ff8-8d65-4b51-add3-6f26651b26e6 X-Archives-Hash: 8d1f2e4e405486d67b84037e464c1441 commit: 7e398c72d2ac638ee6bbaf090383f9ee6e9536f6 Author: Michael Palimaka gentoo org> AuthorDate: Mon Feb 4 16:11:17 2013 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Feb 4 16:11:17 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=7e398c72 [dev-python/sip] Use run_in_build_dir. Add python-3.3 support wrt bug #455020. Package-Manager: portage-2.1.11.50 --- dev-python/sip/sip-4.14.4_pre20130203.ebuild | 17 ++++------------- dev-python/sip/sip-4.9999.ebuild | 17 ++++------------- 2 files changed, 8 insertions(+), 26 deletions(-) diff --git a/dev-python/sip/sip-4.14.4_pre20130203.ebuild b/dev-python/sip/sip-4.14.4_pre20130203.ebuild index 4458acb..d9e9461 100644 --- a/dev-python/sip/sip-4.14.4_pre20130203.ebuild +++ b/dev-python/sip/sip-4.14.4_pre20130203.ebuild @@ -3,7 +3,7 @@ # $Header: $ EAPI=5 -PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} ) +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} ) inherit eutils python-r1 toolchain-funcs @@ -68,7 +68,6 @@ src_prepare() { src_configure() { configuration() { - pushd "${BUILD_DIR}" > /dev/null local myconf=( "${PYTHON}" configure.py --bindir="${EPREFIX}/usr/bin" @@ -92,28 +91,20 @@ src_configure() { ) echo "${myconf[@]}" "${myconf[@]}" - popd > /dev/null } - python_foreach_impl configuration + python_foreach_impl run_in_build_dir configuration } src_compile() { - compilation() { - pushd "${BUILD_DIR}" > /dev/null - default - popd > /dev/null - } - python_foreach_impl compilation + python_foreach_impl run_in_build_dir default } src_install() { installation() { - pushd "${BUILD_DIR}" > /dev/null emake DESTDIR="${D}" install python_optimize - popd > /dev/null } - python_foreach_impl installation + python_foreach_impl run_in_build_dir installation dodoc NEWS use doc && dohtml -r doc/html/* diff --git a/dev-python/sip/sip-4.9999.ebuild b/dev-python/sip/sip-4.9999.ebuild index 6777842..81f306a 100644 --- a/dev-python/sip/sip-4.9999.ebuild +++ b/dev-python/sip/sip-4.9999.ebuild @@ -3,7 +3,7 @@ # $Header: $ EAPI=5 -PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} ) +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} ) inherit eutils python-r1 toolchain-funcs @@ -68,7 +68,6 @@ src_prepare() { src_configure() { configuration() { - pushd "${BUILD_DIR}" > /dev/null local myconf=( "${PYTHON}" configure.py --bindir="${EPREFIX}/usr/bin" @@ -92,28 +91,20 @@ src_configure() { ) echo "${myconf[@]}" "${myconf[@]}" - popd > /dev/null } - python_foreach_impl configuration + python_foreach_impl run_in_build_dir configuration } src_compile() { - compilation() { - pushd "${BUILD_DIR}" > /dev/null - default - popd > /dev/null - } - python_foreach_impl compilation + python_foreach_impl run_in_build_dir default } src_install() { installation() { - pushd "${BUILD_DIR}" > /dev/null emake DESTDIR="${D}" install python_optimize - popd > /dev/null } - python_foreach_impl installation + python_foreach_impl run_in_build_dir installation dodoc NEWS use doc && dohtml -r doc/html/*