blob: 94dde3f81613787d5ac19b7e1cd75b86e70921d1 (
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
96
97
98
99
100
101
102
103
104
105
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DIST_AUTHOR=SHAY
# Parallel tests seem to be bad.
DIST_TEST="do"
DIST_VERSION=1.43
inherit depend.apache optfeature perl-module
DESCRIPTION="Test.pm wrapper with helpers for testing Apache"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="virtual/perl-ExtUtils-MakeMaker"
need_apache
PATCHES=(
"${FILESDIR}/${PN}-1.400.0-catfile-import.patch"
"${FILESDIR}/${PN}-1.400.0-phpclient.patch"
)
pkg_setup() {
perl_set_version
}
src_test() {
local MODULES=(
"Apache::Test ${DIST_VERSION}"
"Apache::Test5005compat 0.01"
"Apache::TestBuild"
"Apache::TestClient"
"Apache::TestCommon"
"Apache::TestCommonPost"
"Apache::TestConfig"
"Apache::TestConfigC"
"Apache::TestConfigPHP"
"Apache::TestConfigParrot"
"Apache::TestConfigParse"
"Apache::TestConfigPerl"
"Apache::TestHarness"
"Apache::TestHarnessPHP"
"Apache::TestMB"
"Apache::TestMM"
"Apache::TestPerlDB"
"Apache::TestReport"
"Apache::TestRequest"
"Apache::TestRun"
"Apache::TestRunPHP 1.00"
"Apache::TestRunParrot 1.00"
"Apache::TestRunPerl 1.00"
"Apache::TestSSLCA"
"Apache::TestServer"
"Apache::TestSmoke"
"Apache::TestSort"
"Apache::TestTrace 0.01"
"Apache::TestUtil 0.02"
"Bundle::ApacheTest ${DISTVERSION}"
)
has_version "www-apache/mod_perl" && MODULES+=(
"Apache::TestHandler"
"Apache::TestReportPerl"
"Apache::TestSmokePerl"
)
local failed=()
for dep in "${MODULES[@]}"; do
ebegin "Compile testing ${dep}"
perl -Mblib="${S}" -M"${dep} ()" -e1
eend $? || failed+=( "$dep" )
done
if [[ ${failed[@]} ]]; then
eerror "One or more modules failed compile:"
for dep in "${failed[@]}"; do
eerror " ${dep}"
done
die "Failing due to module compilation errors"
fi
perl_rm_files t/more/02testmore.t t/more/04testmore.t
perl-module_src_test
}
src_install() {
# This is to avoid conflicts with a deprecated Apache::Test stepping
# in and causing problems/install errors
if [[ -f "${S}"/.mypacklist ]]; then
rm -f "${S}"/.mypacklist
fi
perl-module_src_install
}
pkg_postinst() {
optfeature "Running Perl code natively in Apache via Apache::TestHandler, Apache::TestReportPerl, or Apache::TestSmokePerl" www-apache/mod_perl
}
|