commit:     d1272d4c770921b647badb63f12c369bee9c3a27
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 27 23:55:32 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 27 23:56:15 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1272d4c

dev-lang/nim: bump up to 1.0.4

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-lang/nim/Manifest         |  1 +
 dev-lang/nim/nim-1.0.4.ebuild | 78 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 79 insertions(+)

diff --git a/dev-lang/nim/Manifest b/dev-lang/nim/Manifest
index 68c8fb8a0ae..621b3396629 100644
--- a/dev-lang/nim/Manifest
+++ b/dev-lang/nim/Manifest
@@ -1 +1,2 @@
 DIST nim-1.0.2.tar.xz 5139712 BLAKE2B 
bcb0f0fa2ed6069021a6359e453def7beccb6e767e3e1111ff27d8fb2adb7351336f219a88e2450df3d4aece1dd7f6e1a8fb891aa31581c32bb2535d2cf604a7
 SHA512 
5d7a45efcf656d5467554c3bbf42d0c62a760ccd107cec439d8375839d2e80baadfb3f598598748ef8e1b32d3eb931caaa273f8e41bbf6f4e16c7afbef745349
+DIST nim-1.0.4.tar.xz 5161396 BLAKE2B 
ff6f5b51775bfc8e83cf5ed91bf70d63d6af40cb8802d765b27a306d6a1c93ecbd4de64edfe9537b659c89c62c92ab46008d55616c7143fa9b8adaa4e905aa66
 SHA512 
0614259372500da4e5d67822d3caeec4c9ec6b1a06494768cfaff1db960484c1e9c1aafe70b05d1ac07b5f22d8ff57214f455e95dba26a5648d2186f13d1265a

diff --git a/dev-lang/nim/nim-1.0.4.ebuild b/dev-lang/nim/nim-1.0.4.ebuild
new file mode 100644
index 00000000000..160171c5b09
--- /dev/null
+++ b/dev-lang/nim/nim-1.0.4.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 multiprocessing toolchain-funcs
+
+DESCRIPTION="compiled, garbage-collected systems programming language"
+HOMEPAGE="https://nim-lang.org/";
+SRC_URI="https://nim-lang.org/download/${P}.tar.xz";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc +readline test"
+
+RESTRICT=test # need to sort out depends and numerous failures
+
+RDEPEND="
+       readline? ( sys-libs/readline:0= )
+"
+DEPEND="
+       ${DEPEND}
+       test? ( net-libs/nodejs )
+"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.20.0-paths.patch
+)
+
+_run() {
+       echo "$@"
+       "$@" || die "'$*' failed"
+}
+
+nim_use_enable() {
+       [[ -z $2 ]] && die "usage: nim_use_enable <USE flag> <compiler flag>"
+       use $1 && echo "-d:$2"
+}
+
+src_compile() {
+       export XDG_CACHE_HOME=${T}/cache #667182
+       tc-export CC LD
+
+       _run ./build.sh
+
+       _run ./bin/nim --parallelBuild:$(makeopts_jobs) c koch
+       _run ./koch boot --parallelBuild:$(makeopts_jobs) -d:release 
$(nim_use_enable readline useGnuReadline)
+       # build nimble and friends
+       # --stable to avoid pulling HEAD nimble
+       PATH="./bin:$PATH" _run ./koch --stable tools
+
+       if use doc; then
+               PATH="./bin:$PATH" _run ./koch doc
+       fi
+}
+
+src_test() {
+       PATH="./bin:$PATH" _run ./koch test
+}
+
+src_install() {
+       PATH="./bin:$PATH" _run ./koch install "${ED}"
+       rm -r "${ED}/usr/share/nim/doc" || die "failed to remove 'doc'"
+
+       exeinto /usr/bin
+
+       local bin_exe
+       for bin_exe in bin/*; do
+               # './koch install' installs only 'nim' binary
+               # but not the rest
+               [[ ${bin_exe} == bin/nim ]] && continue
+               doexe "${bin_exe}"
+       done
+
+       use doc && dodoc doc/html/*.html
+       newbashcomp tools/nim.bash-completion ${PN}
+}

Reply via email to