dev-lang/crystal: bump to 1.19.1

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2026-01-24 14:13:59 +01:00
parent 665572b519
commit 27abef1d51
2 changed files with 134 additions and 0 deletions
+2
View File
@@ -1,2 +1,4 @@
DIST crystal-1.18.2-1-linux-x86_64.tar.gz 51989421 BLAKE2B 768a1317290a317d0a634ee1b249c3ba6776b04bf539545d676c4cd1256832c2dc2cc1e18c02fdb87ef2e2d4566b423486f378a9e276300c10385a3255477daf SHA512 bb5b43467fe0adc37237bbc91841adfd61c97b1dceb6ed87cbe05c3ab8606973688aaa23bf11053a8deb4a636f60c7131baadbfd4af9d46f1f574c88e3f536e9
DIST crystal-1.18.2.gh.tar.gz 3886071 BLAKE2B a7d44daede2b8bf03860b367b005e4d7b7050c28ad5519189a10e6c98f4edb416285363f97e86cbf4b8544c4e1263d5bab38a795bcaa88c65b606a287d721c24 SHA512 4340e8ab8bdba5661acaeaf2d2f63bed1c2f9c8bcaa8aabab4f8a066b1833396e57dbf2143754fa3fff9191d3c548b8ae451bfa4778b4b10eb7875e25635b0b3
DIST crystal-1.19.1-1-linux-x86_64.tar.gz 57469667 BLAKE2B f1038d31ad30f7129d459db0bf85f1eabdf6eaa9c2f884f9fd114f2dd0941d552f069e49325565e089ef68155d2a6452c91157891ef83a1614c3d2800b3be6a7 SHA512 92d0ca05d3b0e49e4e357d811eac5f1720df42051f30d050b7056ecebce3ac60c5dfb7d4ca3a2d467f527f752d2368b71db5b2f42bb4033a127b41206cdd36b5
DIST crystal-1.19.1.gh.tar.gz 3955385 BLAKE2B 06c0b860337b5fd884f56d6c8ad7d3a52dc05bc93d37b2f97e2680d288e71b838966515d75d802fd8cfbbb0df777cefdee52db69bb02a7ce59d2a6bf655d6c46 SHA512 98638817764ab627c0e35f38079e81bf0ccece686478db82c891ef5a0cc1e83cc21d68e4ff45957a330110e3d08bafc62ab1740ff9d80303e8bfcf8dccca3da6
+132
View File
@@ -0,0 +1,132 @@
# Copyright 1999-2026 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=( {19..21} )
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"
)
# Do not complain about CFLAGS etc. Crystal rebuilds itself.
QA_FLAGS_IGNORED='.*'
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
}