blob: 96b5b3817d40dc932aab4c0936ea54bcddda0459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# 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.1.ebuild,v 1.1 2012/08/04 16:02:47 floppym 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
}
|