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 E9472138202 for ; Sun, 14 Oct 2012 11:01:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 736CDE0586; Sun, 14 Oct 2012 11:01:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 933D3E0534 for ; Sun, 14 Oct 2012 11:01:23 +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 F2B1633C770 for ; Sun, 14 Oct 2012 11:01:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9E392E5446 for ; Sun, 14 Oct 2012 11:01:21 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1350211802.154cdc8fc376fab7a5b8c38bf3d8e077753dea63.mgorny@gentoo> Subject: [gentoo-commits] dev/mgorny:master commit in: dev-python/python-exec/ X-VCS-Repository: dev/mgorny X-VCS-Files: dev-python/python-exec/metadata.xml dev-python/python-exec/python-exec-9999.ebuild X-VCS-Directories: dev-python/python-exec/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 154cdc8fc376fab7a5b8c38bf3d8e077753dea63 X-VCS-Branch: master Date: Sun, 14 Oct 2012 11:01:21 +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: 9868455a-2714-4e3f-8a42-f1ca289e895c X-Archives-Hash: 6d0649b0d1662c415f2b334c32ced548 commit: 154cdc8fc376fab7a5b8c38bf3d8e077753dea63 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 6 08:07:24 2012 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 14 10:50:02 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=154cdc8f Add an ebuild for python-exec. --- dev-python/python-exec/metadata.xml | 16 +++++++++ dev-python/python-exec/python-exec-9999.ebuild | 43 ++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 0 deletions(-) diff --git a/dev-python/python-exec/metadata.xml b/dev-python/python-exec/metadata.xml new file mode 100644 index 0000000..ba963d0 --- /dev/null +++ b/dev-python/python-exec/metadata.xml @@ -0,0 +1,16 @@ + + + + python + + mgorny@gentoo.org + Michał Górny + + + + mgorny@gentoo.org + Michał Górny + + https://bitbucket.org/mgorny/python-exec/issues/ + + diff --git a/dev-python/python-exec/python-exec-9999.ebuild b/dev-python/python-exec/python-exec-9999.ebuild new file mode 100644 index 0000000..308cb6f --- /dev/null +++ b/dev-python/python-exec/python-exec-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +#if LIVE +AUTOTOOLS_AUTORECONF=yes +EGIT_REPO_URI="http://bitbucket.org/mgorny/${PN}.git" + +inherit git-2 +#endif + +inherit autotools-utils python-r1 + +DESCRIPTION="Python script wrapper" +HOMEPAGE="https://bitbucket.org/mgorny/python-exec/" +SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +#if LIVE +KEYWORDS= +SRC_URI= +#endif + +append_impl() { + pyimpls+="${EPYTHON} " +} + +src_configure() { + local pyimpls + python_foreach_impl append_impl + + local myeconfargs=( + --with-python-impls="${pyimpls}" + ) + + autotools-utils_src_configure +}