41 lines
975 B
Bash
41 lines
975 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/libcloud/libcloud-0.11.4.ebuild,v 1.1 2012/11/29 06:56:59 patrick Exp $
|
|
|
|
EAPI="3"
|
|
|
|
PYTHON_DEPEND="2:2.6 3"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="2.[45] *-jython"
|
|
DISTUTILS_SRC_TEST="setup.py"
|
|
PYTHON_TESTS_RESTRICTED_ABIS="3.*"
|
|
PYTHON_USE_WITH="ssl"
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="Unified Interface to the Cloud - python support libs"
|
|
HOMEPAGE="http://libcloud.apache.org/index.html"
|
|
SRC_URI="mirror://apache/${PN}/apache-${P}.tar.bz2"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="examples test"
|
|
|
|
RDEPEND=""
|
|
DEPEND="test? ( dev-python/mock )"
|
|
|
|
S="${WORKDIR}/apache-${P}"
|
|
|
|
src_test() {
|
|
cp libcloud/test/secrets.py-dist libcloud/test/secrets.py || die
|
|
distutils_src_test
|
|
}
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
if use examples ; then
|
|
docinto examples/
|
|
dodoc "${S}"/example_*.py || die
|
|
fi
|
|
}
|