blob: 1496b5df69246abc33f78d0c23939f08387fd93e (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/apipkg/apipkg-1.2-r1.ebuild,v 1.6 2015/03/06 22:07:01 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
inherit distutils-r1
DESCRIPTION="namespace control and lazy-import mechanism"
HOMEPAGE="http://pypi.python.org/pypi/apipkg"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="app-arch/unzip
dev-python/setuptools[${PYTHON_USEDEP}]"
python_prepare_all() {
# https://bitbucket.org/hpk42/apipkg/issue/5/test-failure-with-python-34
sed -e 's:test_initpkg_not_transfers_not_existing_attrs:_&:' -i test_apipkg.py || die
distutils-r1_python_prepare_all
}
python_test() {
# Bug 530388. The test requires patching to match py3.4; trivial.
py.test || die "Tests fail under ${EPYTHON}"
}
|