blob: 9d4da4f7a23b1f18a7bd2cd2de9aa564437a05c7 (
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-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 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/${PV}.tar.gz -> ${PN}-patches-${PV}.tar.gz )
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="debug experimental +readline"
RESTRICT="test" # need to sort out depends and numerous failures
RDEPEND="readline? ( sys-libs/readline:0= )"
DEPEND="${RDEPEND}"
# BDEPEND="test? ( net-libs/nodejs )"
PATCHES=( "${FILESDIR}"/${PN}-0.20.0-paths.patch )
_run() {
einfo "Running: ${@}"
PATH="${S}/bin:${PATH}" "${@}" || die "Failed: \"${*}\""
}
nim_use_enable() {
[[ -z "${2}" ]] && die "usage: nim_use_enable <USE flag> <compiler flag>"
use "${1}" && echo "-d:${2}"
}
# 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:"$(usex debug debug release)"
--parallelBuild:"$(makeopts_jobs)"
EOF
}
src_prepare() {
default
# note: there are consumers in the ::guru overlay
use experimental && \
eapply "${WORKDIR}"/${PN}-patches-${PV}
}
src_configure() {
xdg_environment_reset # bug 667182
unset NIMBLE_DIR
tc-export CC CXX LD
nim_gen_config
}
src_compile() {
_run bash ./build.sh
_run ./bin/nim compile koch
_run ./koch boot $(nim_use_enable readline useGnuReadline)
_run ./koch tools
}
src_test() {
_run ./koch test
}
src_install() {
_run ./koch install "${ED}"
# "./koch install" installs only "nim" binary
# but not the rest
exeinto /usr/bin
local exe
for exe in bin/* ; do
[[ "${exe}" == bin/nim ]] && continue
doexe "${exe}"
done
newbashcomp tools/nim.bash-completion nim
newbashcomp dist/nimble/nimble.bash-completion nimble
}
|