dev-lang/crystal: bump to 1.17.1

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć 2025-07-30 21:16:40 +02:00
parent 4c1d3070a5
commit 6d11e9ab78
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
2 changed files with 131 additions and 0 deletions

View File

@ -1,2 +1,4 @@
DIST crystal-1.16.3-1-linux-x86_64.tar.gz 51726619 BLAKE2B 1bfdd2cf03cdcb15148507d7e13662d38f73f0b01fe94a2cc5baf3967e55fe8671372a53ceffa1bcd1192e869e5aef1c840b756fbba3520f9d683f3ae234c8b4 SHA512 d4419417ac6f3a69d2c8da5ac7b71e8678090edd4beba538dadb54d3cf7ef54c574af03c9d25f744f9fb9969d5c6b76c85084ce99aa780740ec4218d9a919228
DIST crystal-1.16.3.gh.tar.gz 3720544 BLAKE2B 11e83f3efa5eaa499cea3bb61bcb94cd7a97a9dcaac856e7d6c75ca5f77dc3bc60adc996828512b558c859b48f1de1a5997c544c3b34027999055d61ebc30e81 SHA512 4a4a409ad28629c088ddd824fa17a4a1eacf16cb71a644f8df7636208cca0101c0fb190dcad759f1a56e5471fe2094a37d00df47381e54b8259f93f78481f517
DIST crystal-1.17.1-1-linux-x86_64.tar.gz 51825901 BLAKE2B c865caa6eb5d10a444d8b84cdaaf99bff4b74495176c2325858d67c0d5d78fa079dbf6fddffd728a868ac82309ab2ee8d227f83923c506340da8400f7d90771b SHA512 955553fb89eee33ca9b0f737b315f6cef931a9787bae3e6116c40b42d037f1253d22a4894620f600632401384110ca94dce994857c4fac6a78d86afe3843b82b
DIST crystal-1.17.1.gh.tar.gz 3868937 BLAKE2B 565a770efed6e138091e7681810b40798b30b69e358197cec9972c450d966ac38838480cd2a6511b4ed0b5c3f02dbfbdec7237e97c060b49b95f15da22b3c42d SHA512 72c11692747f71c1f926493152785c01d1efb919e7cbf9ef92a0012d1cda781603c90c4787bb6b2d057398b229c629250969110df7e4a2a219ffeae80701da2d

View File

@ -0,0 +1,129 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
BV="${PV}-1"
BV_AMD64="${BV}-linux-x86_64"
LLVM_COMPAT=( {18..20} )
inherit llvm-r1 multiprocessing shell-completion toolchain-funcs
DESCRIPTION="The Crystal Programming Language"
HOMEPAGE="https://crystal-lang.org/
https://github.com/crystal-lang/crystal/"
SRC_URI="
https://github.com/crystal-lang/crystal/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
amd64? (
https://github.com/crystal-lang/crystal/releases/download/${BV/-*}/crystal-${BV_AMD64}.tar.gz
)
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc debug llvm-libunwind"
RESTRICT="test" # Upstream test suite not reliable.
DEPEND="
dev-libs/boehm-gc:=[threads]
dev-libs/gmp:=
dev-libs/libatomic_ops:=
dev-libs/libevent:=
dev-libs/libpcre2:=[unicode]
dev-libs/libxml2:=
dev-libs/libyaml
dev-libs/pcl:=
$(llvm_gen_dep '
llvm-core/llvm:${LLVM_SLOT}=
')
llvm-libunwind? (
llvm-runtimes/libunwind:=
)
!llvm-libunwind? (
sys-libs/libunwind:=
)
"
RDEPEND="
${DEPEND}
"
PATCHES=(
"${FILESDIR}/${PN}-0.27.0-gentoo-tests-long-unix.patch"
"${FILESDIR}/${PN}-0.27.0-gentoo-tests-long-unix-2.patch"
"${FILESDIR}/${PN}-1.15.0-remove-enviroment-clearing-tests.patch"
)
src_prepare() {
default
# Link against system boehm-gc instead of upstream prebuilt static library
# bug #929123, #929989 and #931100
# https://github.com/crystal-lang/crystal/issues/12035#issuecomment-2522606612
rm "${WORKDIR}/crystal-${BV}"/lib/crystal/libgc.a || die
}
src_configure() {
local bootstrap_path="${WORKDIR}/${PN}-${BV}/bin"
if [[ ! -d "${bootstrap_path}" ]] ; then
eerror "Binary tarball does not contain expected directory:"
die "'${bootstrap_path}' path does not exist."
fi
# crystal uses 'LLVM_TARGETS' to override default list of targets
unset LLVM_TARGETS
MY_EMAKE_COMMON_ARGS=(
PATH="${bootstrap_path}:${PATH}"
CRYSTAL_CONFIG_VERSION="${PV}"
CRYSTAL_CONFIG_PATH="lib:${EPREFIX}/usr/$(get_libdir)/crystal"
$(usex debug "" release=1)
progress=true
stats=1
threads="$(makeopts_jobs)"
verbose=1
check_lld= # disable opportunistic lld
AR="$(tc-getAR)"
CC="$(tc-getCC)"
CXX="$(tc-getCXX)"
LLVM_CONFIG="$(get_llvm_prefix -d)/bin/llvm-config"
)
}
src_compile() {
emake "${MY_EMAKE_COMMON_ARGS[@]}"
if use doc ; then
emake docs "${MY_EMAKE_COMMON_ARGS[@]}"
fi
}
src_test() {
nonfatal emake std_spec "${MY_EMAKE_COMMON_ARGS[@]}"
}
src_install() {
insinto "/usr/$(get_libdir)/crystal"
doins -r src/.
exeinto /usr/bin
doexe .build/crystal
newzshcomp etc/completion.zsh _crystal
newfishcomp etc/completion.fish crystal.fish
dodoc -r samples
doman "man/${PN}.1"
newbashcomp etc/completion.bash "${PN}"
if use doc ; then
docinto api
dodoc -r docs/.
fi
}