blob: 07e043cf4ffb0597a544239bd6b7ecee2fcb6087 (
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PATCH_PV="1.6.6_p1"
inherit bash-completion-r1 edo multiprocessing toolchain-funcs xdg-utils
DESCRIPTION="Compiled, garbage-collected systems programming language"
HOMEPAGE="https://nim-lang.org/"
SRC_URI="
https://nim-lang.org/download/${P}.tar.xz
experimental? (
https://git.sr.ht/~cyber/${PN}-patches/archive/${PATCH_PV}.tar.gz
-> nim-patches-${PATCH_PV}.tar.gz
)
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~x86"
IUSE="doc experimental test-js test"
RESTRICT="!test? ( test )"
DEPEND="
test? (
dev-db/sqlite:3
dev-libs/boehm-gc
dev-libs/libffi
dev-libs/libpcre:3
dev-libs/openssl
media-libs/libsdl
media-libs/libsfml
)
"
BDEPEND="
sys-process/parallel
test? (
test-js? (
net-libs/nodejs
)
)
"
PATCHES=(
"${FILESDIR}"/${PN}-0.20.0-paths.patch
"${FILESDIR}"/${PN}-1.6.6-csources-flags.patch
)
# Borrowed from nim-utils.eclass (guru overlay).
nim_gen_config() {
cat > nim.cfg <<- EOF || die "Failed to create Nim config"
cc:"gcc"
gcc.exe:"$(tc-getCC)"
gcc.linkerexe:"$(tc-getCC)"
gcc.cpp.exe:"$(tc-getCXX)"
gcc.cpp.linkerexe:"$(tc-getCXX)"
gcc.options.speed:"${CFLAGS}"
gcc.options.size:"${CFLAGS}"
gcc.options.debug:"${CFLAGS}"
gcc.options.always:"${CPPFLAGS}"
gcc.options.linker:"${LDFLAGS}"
gcc.cpp.options.speed:"${CXXFLAGS}"
gcc.cpp.options.size:"${CXXFLAGS}"
gcc.cpp.options.debug:"${CXXFLAGS}"
gcc.cpp.options.always:"${CPPFLAGS}"
gcc.cpp.options.linker:"${LDFLAGS}"
$([[ "${NOCOLOR}" == true || "${NOCOLOR}" == yes ]] && echo '--colors:"off"')
-d:"release"
--parallelBuild:"$(makeopts_jobs)"
# some tests don't work with processing hints
--processing:"off"
EOF
}
src_prepare() {
default
# note: there are consumers in the ::guru overlay
use experimental && eapply "${WORKDIR}"/nim-patches-${PATCH_PV}
# refer: https://github.com/nim-lang/Nim/issues/20886#issuecomment-1511708198
# bug: https://bugs.gentoo.org/894410
use elibc_musl && eapply "${FILESDIR}"/${PN}-1.6.14-clang16-musl-fix.patch
}
src_configure() {
xdg_environment_reset # bug 667182
unset NIMBLE_DIR
tc-export CC CXX LD
nim_gen_config
mkdir "${HOME}"/.parallel || die
touch "${HOME}"/.parallel/will-cite || die "parallel setup failed"
}
src_compile() {
local -x PATH="${S}/bin:${PATH}"
edo ./build.sh --parallel "$(makeopts_jobs)"
ebegin "Waiting for unfinished parallel jobs"
while [[ ! -f "bin/nim" ]] ; do
sleep 3
done
sleep 10
eend 0
edo chmod +x ./bin/nim
edo ./bin/nim compile koch
edo ./koch boot -d:nimUseLinenoise --skipParentCfg:off
edo ./koch tools
if use doc; then
local -a docargs=(
# set git tag
--git.commit:v${PV}
# skip runnableExamples as some of them need net
--docCmd:skip
# make logs less verbose
--hints:off
--warnings:off
)
edo ./koch doc "${docargs[@]}"
HTML_DOCS=( web/upload/${PV}/. )
fi
}
src_test() {
local -x PATH="${S}/bin:${PATH}"
local -a nimflags=(
# Leave only the safe hints enabled.
--hint:all:off
--hint:User:on
--hint:UserRaw:on
)
local -a testament_args=(
--skipFrom:"${FILESDIR}/${PN}-1.6.14-testament-skipfile.txt"
--nim:"bin/nim"
--targets:"$(usex test-js 'c js' 'c')"
)
[[ "${NOCOLOR}" == true || "${NOCOLOR}" == yes ]] && \
testament_args+=( --colors:off )
local -a categories
readarray -t categories < <(find tests -mindepth 1 -maxdepth 1 -type d -printf "%P\n" | sort)
# AdditionalCategories from "testament/categories.nim".
categories+=( debugger examples lib )
local test_return=0
local tcat
local checkpoint
for tcat in "${categories[@]}"; do
# Use checkpoints for less painful testing.
checkpoint="${T}/.testament-${tcat}"
[[ -f "${checkpoint}" ]] && continue
case ${tcat} in
testdata )
:
;;
arc | ic | valgrind )
einfo "Skipped category '${tcat}'"
;;
* )
einfo "Running tests in category '${tcat}'"
nonfatal edo ./bin/testament "${testament_args[@]}" \
category "${tcat}" "${nimflags[@]}" || test_return=1
;;
esac
touch "${checkpoint}" || die
done
[[ "${test_return}" -eq 1 ]] &&
die "tests failed, please inspect the failed test categories above"
}
src_install() {
local -x PATH="${S}/bin:${PATH}"
edo ./koch install "${ED}"
einstalldocs
# "./koch install" installs only "nim" binary but not the rest.
local exe
for exe in bin/* ; do
[[ "${exe}" == bin/nim ]] && continue
dobin "${exe}"
done
newbashcomp tools/nim.bash-completion nim
newbashcomp dist/nimble/nimble.bash-completion nimble
insinto /usr/share/zsh/site-functions
newins tools/nim.zsh-completion _nim
newins dist/nimble/nimble.zsh-completion _nimble
# Install the @nim-rebuild set for Portage.
insinto /usr/share/portage/config/sets
newins "${FILESDIR}"/nim-sets.conf nim.conf
}
|