aboutsummaryrefslogtreecommitdiff
blob: 098007104a76cc4ddbbf5f950039abb0ecc7ef67 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5
PYTHON_COMPAT=( python2_7 pypy )

inherit distutils-r1 flag-o-matic

DESCRIPTION="Fast sandbox implementation for Python"
HOMEPAGE=" https://github.com/Pardus-Linux/catbox"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
	test? ( dev-python/testify[${PYTHON_USEDEP}] )"

python_prepare_all() {
	append-cflags -fno-strict-aliasing
	distutils-r1_python_prepare_all
}

python_test() {
	testify tests || die "Tests failed under ${EPYTHON}"
}

# Circular dep of testify to run the testsuite
pkg_post_inst() {
	elog "To run the testsuite, emerge testify spearately,"
	elog, "then re-run using FEATURES=test"
}