You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/libcloud/libcloud-0.12.3.ebuild

42 lines
975 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/libcloud/libcloud-0.12.3.ebuild,v 1.1 2013/04/02 05:00:13 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
}