commit:     01699406e0e5d03432da4b914264f1a3c5c95d3f
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 21:43:33 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 22:10:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01699406

dev-lang/nim: bump to 2.0.4

Closes: https://github.com/gentoo/gentoo/pull/32880
Closes: https://bugs.gentoo.org/913623
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-lang/nim/Manifest         |   2 +
 dev-lang/nim/nim-2.0.4.ebuild | 183 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 185 insertions(+)

diff --git a/dev-lang/nim/Manifest b/dev-lang/nim/Manifest
index 47c04511aadc..62f7ed856e14 100644
--- a/dev-lang/nim/Manifest
+++ b/dev-lang/nim/Manifest
@@ -1,2 +1,4 @@
 DIST nim-1.6.14.tar.xz 5266632 BLAKE2B 
f6eadf44365a099f45d1b734dea494e5d098b0427791c19a5e0b7ee6fa8069fee606005920cbcbfd7c88a36ace870949ff797d1e37fc1f84e14d5dd1aeb4bd1d
 SHA512 
6923ea98627ea48b5c939438618caa8e6860f248086e43bc101b543aa78e7c475bc8e56b8acb90dc4a3771ca0d2e27fbdda6a0b477dbb906acda8a7b39c272d3
+DIST nim-2.0.4.tar.xz 7620508 BLAKE2B 
cf7c737d734c5a468ac9229fb021bcd252c5c4f20ab091ec0ce27eb36ba44be8b438536aa39aa8c583483a7ce15dfbb91b1deb1c19794b3d77506d23096a4460
 SHA512 
1918b3d4a4fc02714677b2ca5051dc69e1d1daead2cf4dcc9b997076540d07d58ee4fe3049de86a37faa3143de1d3b95bedfa31f31d8463987bb267107459793
+DIST nim-atlas-0.8.0.tar.gz 59097 BLAKE2B 
231b238ac3b15cc2c2d9ad927f80ae72d8ae4c649277515f32df6cc04275ccd38db5307d627572af547501e6522c06c86dc279dc3e13b5385f14e24032f6fe69
 SHA512 
747c13e2c5bd45a1dc6c1426f8c7637f638ada9dd4c9aa3edf4ef8367060e73226dc4bcde6380fac25ed47ebf4097fd223c72fadc3cceba8c71dd0f0571e47eb
 DIST nim-patches-1.6.6_p1.tar.gz 2632 BLAKE2B 
64980d9510dc48e3c566473dc618d00cafba04783882d62b12015e8435c9c0515d7726da30f0b74dca6a41aa88a9c9aed2189a65b3325c28839d0051de8a3365
 SHA512 
7ba251675cd564452669bf5ec3748565db818324f58506f20a5036e4b54df10f4d7c149cece8cb97c853222cfa7d4d8d26856d92aaa25e613e31c6f5c2a8243d

diff --git a/dev-lang/nim/nim-2.0.4.ebuild b/dev-lang/nim/nim-2.0.4.ebuild
new file mode 100644
index 000000000000..706b0d3df3cf
--- /dev/null
+++ b/dev-lang/nim/nim-2.0.4.ebuild
@@ -0,0 +1,183 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ATLAS_V="0.8.0"
+
+inherit bash-completion-r1 edo multiprocessing toolchain-funcs xdg-utils
+
+DESCRIPTION="Compiled, garbage-collected systems programming language"
+HOMEPAGE="https://nim-lang.org/
+       https://github.com/nim-lang/Nim/";
+SRC_URI="
+       https://nim-lang.org/download/${P}.tar.xz
+       https://github.com/nim-lang/atlas/archive/refs/tags/${ATLAS_V}.tar.gz
+               -> nim-atlas-${ATLAS_V}.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="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
+               )
+       )
+"
+
+src_configure() {
+       xdg_environment_reset  # bug #667182
+
+       unset NIMBLE_DIR
+       tc-export CC CXX LD
+
+       mkdir "${HOME}/.parallel" || die
+       touch "${HOME}/.parallel/will-cite" || die "parallel setup failed"
+
+       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
+
+       cp -r "${WORKDIR}/atlas-${ATLAS_V}" "${S}/dist/atlas" || die
+}
+
+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 1
+       done
+       eend 0
+
+       chmod +x ./bin/nim || die
+
+       edo ./bin/nim compile -d:release koch
+       edo ./koch boot -d:nimUseLinenoise -d:release --skipParentCfg:off
+       edo ./koch tools -d:release
+       edo ./bin/nim compile -d:release ./tools/niminst/niminst.nim
+}
+
+src_test() {
+       local -x PATH="${S}/bin:${PATH}"
+       local -a -r 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 | gc | ic | js | msgs | stylecheck \
+                               | testament | untestable | objects | valgrind )
+                               einfo "Skipped nim test 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}/usr/lib"
+       dosym -r /usr/lib/nim/bin/nim /usr/bin/nim
+
+       # "./koch install" installs only "nim" binary but not the rest.
+       exeinto /usr/bin
+       local exe
+       while read -r exe ; do
+               einfo "Installing nim support tool: ${exe}"
+               doexe "${exe}"
+       done < <(find ./bin -type f -not -iname nim)
+
+       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
+
+       einstalldocs
+}

Reply via email to