blob: 087668767fd88fe336332372d01d6b13deb8893a (
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1 multiprocessing
MY_P="SCons-${PV}"
DESCRIPTION="Extensible Python-based build utility"
HOMEPAGE="
https://www.scons.org/
https://github.com/SCons/scons/
https://pypi.org/project/SCons/
"
SRC_URI="
https://downloads.sourceforge.net/project/${PN}/${PN}/${PV}/${MY_P}.tar.gz
doc? (
https://www.scons.org/doc/${PV}/PDF/${PN}-user.pdf
-> ${P}-user.pdf
https://www.scons.org/doc/${PV}/HTML/${PN}-user.html
-> ${P}-user.html
)
test? (
https://github.com/SCons/scons/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
)
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
IUSE="doc test"
RESTRICT="!test? ( test )"
BDEPEND="
test? (
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
)
"
src_unpack() {
# use the git directory structure, then unpack the pypi tarball
# on top of it to make our life easier
if use test; then
unpack "${P}.gh.tar.gz"
else
mkdir -p "${P}" || die
fi
tar -C "${P}" --strip-components=1 -xzf "${DISTDIR}/${MY_P}.tar.gz" || die
}
src_prepare() {
distutils-r1_src_prepare
# TODO: rebase the patches <4.5.1-r2 is gone
# support env passthrough for Gentoo ebuilds
eapply -p2 "${FILESDIR}"/scons-4.1.0-env-passthrough.patch
# respect CC, CXX, C*FLAGS, LDFLAGS by default
eapply -p2 "${FILESDIR}"/scons-4.2.0-respect-cc-etc.patch
if use test; then
local remove_tests=(
# TODO: does not respect PATH?
test/Clang
# broken
test/DVIPDF/DVIPDFFLAGS.py
test/Java/swig-dependencies.py
test/Java/multi-step.py
test/TEX/newglossary.py
test/TEX/variant_dir_newglossary.py
test/Configure/option--config.py
# broken by commas in date, sic!
test/option/option-v.py
test/Interactive/version.py
# warnings from new binutils?
test/AS/as-live.py
test/AS/nasm.py
# hangs
test/KeyboardInterrupt.py
# requires f77 executable
test/Fortran/F77PATH.py
test/Fortran/FORTRANPATH.py
test/Fortran/gfortran.py
# TODO, these seem to be caused by our patches
test/Repository/include.py
test/Repository/multi-dir.py
test/Repository/variants.py
test/virtualenv/activated/option/ignore-virtualenv.py
# broken by CC being set? *facepalm*
test/LINK/applelink.py
test/ToolSurrogate.py
# no clue but why would we care about rpm?
test/packaging/option--package-type.py
test/packaging/rpm/cleanup.py
test/packaging/rpm/internationalization.py
test/packaging/rpm/multipackage.py
test/packaging/rpm/package.py
test/packaging/rpm/tagging.py
)
if ! use amd64 && ! use x86 ; then
# These tests are currently broken on arm and other non-amd64/x86 platforms
# Work seems to be ongoing in e.g. https://github.com/SCons/scons/pull/4022 to
# better plumb up the MSVC tests for alternative arches.
# Try again after 4.2.0.
# See also: https://pairlist4.pair.net/pipermail/scons-users/2020-November/008452.html
# bug #757534
remove_tests+=(
test/MSVS/vs-7.0-scc-files.py
test/MSVS/vs-7.0-scc-legacy-files.py
test/MSVS/vs-7.1-scc-files.py
test/MSVS/vs-7.1-scc-legacy-files.py
test/MSVS/vs-scc-files.py
test/MSVS/vs-scc-legacy-files.py
)
fi
rm -r "${remove_tests[@]}" || die
fi
}
python_test() {
local -x COLUMNS=80
# set variable from escons() of scons-util.eclass to make env-passthrough patch work within test env
local -x GENTOO_SCONS_ENV_PASSTHROUGH=1
# unset some env variables to pass appropriate tests
unset AR AS ASFLAGS CC CXX CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
cd "${WORKDIR}/${P}" || die
"${EPYTHON}" runtest.py -a --passed \
-j "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
# runtest.py script returns "0" if all tests are passed
# and returns "2" if there are any tests with "no result"
# (i.e. in case if some tools are not installed or it's Windows specific tests)
[[ ${?} == [02] ]] || die "Tests fail with ${EPYTHON}"
# sigh
rm "${BUILD_DIR}/install/usr/bin/.sconsign" || die
}
python_install_all() {
rm "${ED}"/usr/*.1 || die
distutils-r1_python_install_all
doman *.1
use doc && dodoc "${DISTDIR}/${P}"-user.{pdf,html}
}
|