blob: a09ccadcf785a8a056e8e7eed5666bf83da5114c (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
inherit distutils-r1 eutils multilib-minimal versionator
DESCRIPTION="A streaming protocol for test results"
HOMEPAGE="https://launchpad.net/subunit https://pypi.org/project/python-subunit/"
SRC_URI="https://launchpad.net/${PN}/trunk/$(get_version_component_range 1-2)/+download/${P}.tar.gz"
LICENSE="Apache-2.0 BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="static-libs test"
RDEPEND="
>=dev-python/testtools-0.9.34[${PYTHON_USEDEP}]
dev-python/extras[${PYTHON_USEDEP}]
dev-lang/perl:="
DEPEND="
${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-libs/check-0.9.11[${MULTILIB_USEDEP}]
>=dev-util/cppunit-1.13.2[${MULTILIB_USEDEP}]
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
test? (
dev-python/fixtures[${PYTHON_USEDEP}]
dev-python/hypothesis[${PYTHON_USEDEP}]
dev-python/testscenarios[${PYTHON_USEDEP}]
)"
# Take out rogue & trivial failing tests that exit the suite before it even gets started
# The removed class in fact works fine in py3 and fails with py2.7 & pupu
# The setu to restrict this patch is just those 2 is not worth it.
PATCHES=( "${FILESDIR}"/1.0.0-tests.patch )
src_prepare() {
sed -i -e 's/os.chdir(os.path.dirname(__file__))//' setup.py || die
# Install perl modules in vendor_perl, bug 534654.
export INSTALLDIRS=vendor
# needed for perl modules
distutils-r1_src_prepare
multilib_copy_sources
}
multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
--enable-shared \
$(use_enable static-libs static)
}
multilib_src_compile() {
default
multilib_is_native_abi && distutils-r1_src_compile
}
python_test() {
local -x PATH="${PWD}/shell/share:${PATH}"
local -x PYTHONPATH=python
# Following tests are known to fail in py2.7 & pypy. They pass under py3.
# DO NOT re-file
# test_add_error test_add_error_details test_add_expected_failure
# test_add_expected_failure_details test_add_failure test_add_failure
# https://bugs.launchpad.net/subunit/+bug/1436686
"${PYTHON}" -m testtools.run all_tests.test_suite || die "Testing failed with ${EPYTHON}"
}
multilib_src_test() {
multilib_is_native_abi && distutils-r1_src_test
}
multilib_src_install() {
local targets=(
install-include_subunitHEADERS
install-pcdataDATA
install-exec-local
install-libLTLIBRARIES
)
emake DESTDIR="${D}" "${targets[@]}"
multilib_is_native_abi && distutils-r1_src_install
}
multilib_src_install_all() {
einstalldocs
prune_libtool_files
}
|