diff options
author | Andrey Grozin <grozin@gentoo.org> | 2010-01-17 16:02:41 +0000 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2010-01-17 16:02:41 +0000 |
commit | 802b699d19d6db976dbb68a014c1cddd9adbc624 (patch) | |
tree | 6fbc5ef2e907429e9a422f699f4d697b9a311519 /dev-python/execnet | |
parent | Cleanup (diff) | |
download | gentoo-2-802b699d19d6db976dbb68a014c1cddd9adbc624.tar.gz gentoo-2-802b699d19d6db976dbb68a014c1cddd9adbc624.tar.bz2 gentoo-2-802b699d19d6db976dbb68a014c1cddd9adbc624.zip |
Initial import
(Portage version: 2.2_rc61/cvs/Linux i686)
Diffstat (limited to 'dev-python/execnet')
-rw-r--r-- | dev-python/execnet/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/execnet/execnet-1.0.2.ebuild | 38 | ||||
-rw-r--r-- | dev-python/execnet/metadata.xml | 12 |
3 files changed, 60 insertions, 0 deletions
diff --git a/dev-python/execnet/ChangeLog b/dev-python/execnet/ChangeLog new file mode 100644 index 000000000000..def2ae437013 --- /dev/null +++ b/dev-python/execnet/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/execnet +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/ChangeLog,v 1.1 2010/01/17 16:02:41 grozin Exp $ + +*execnet-1.0.2 (17 Jan 2010) + + 17 Jan 2010; Andrey Grozin <grozin@gentoo.org> +execnet-1.0.2.ebuild, + +metadata.xml: + Initial import + diff --git a/dev-python/execnet/execnet-1.0.2.ebuild b/dev-python/execnet/execnet-1.0.2.ebuild new file mode 100644 index 000000000000..fb77acbeecd4 --- /dev/null +++ b/dev-python/execnet/execnet-1.0.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/execnet-1.0.2.ebuild,v 1.1 2010/01/17 16:02:41 grozin Exp $ +EAPI=2 +SUPPORT_PYTHON_ABIS=1 +inherit distutils + +DESCRIPTION="Rapid multi-Python deployment" +HOMEPAGE="http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/" +SRC_URI="http://pypi.python.org/packages/source/e/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="doc test" + +RDEPEND="" +DEPEND="doc? ( dev-python/sphinx ) + test? ( >=dev-python/py-1.1.1 )" + +src_compile() { + distutils_src_compile + if use doc; then + pushd doc + emake html || die "emake html failed" + popd + fi +} + +src_test() { + py.test testing || die "test failed" +} + +src_install() { + distutils_src_install + if use doc; then + dohtml -r doc/_build/html/* || die "dohtml failed" + fi +} diff --git a/dev-python/execnet/metadata.xml b/dev-python/execnet/metadata.xml new file mode 100644 index 000000000000..d6248a3fc9d0 --- /dev/null +++ b/dev-python/execnet/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> + <maintainer> + <email>grozin@gentoo.org</email> + <name>Andrey Grozin</name> + </maintainer> + <longdescription>Interact with Python interpreters + across version, platform and network barriers. + </longdescription> +</pkgmetadata> |