From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/
Date: Thu, 09 Jan 2025 21:22:01 +0000 (UTC) [thread overview]
Message-ID: <1736457717.3aea924fa65b05b0c09fb18c0bb9f8dc038b98c7.xgqt@gentoo> (raw)
commit: 3aea924fa65b05b0c09fb18c0bb9f8dc038b98c7
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 9 19:56:32 2025 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Jan 9 21:21:57 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aea924f
dev-lang/crystal: bump to 1.14.1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/crystal/Manifest | 2 +
dev-lang/crystal/crystal-1.14.1.ebuild | 120 +++++++++++++++++++++++++++++++++
2 files changed, 122 insertions(+)
diff --git a/dev-lang/crystal/Manifest b/dev-lang/crystal/Manifest
index 22423990d014..ee8517bb570c 100644
--- a/dev-lang/crystal/Manifest
+++ b/dev-lang/crystal/Manifest
@@ -1,2 +1,4 @@
DIST crystal-1.14.0-1-linux-x86_64.tar.gz 51712092 BLAKE2B 25281d0488ce84b278005e918fd7ae893ec690d50b01c65f06370e24d3ef6548a3ff823c0ce1903fc3d6d0c4108ab8c72365ce51f1ebb64519e0076cc5df9dff SHA512 ff7839166ebe0217149d0185c27fa0d48cd7322ddca3492e3bbbfaf505696994ce04a86eb1f51f6c0633892ebc4b82bac53ec9cb26c0a9c588c5002a984f0038
DIST crystal-1.14.0.tar.gz 3726474 BLAKE2B 97efe777790b4d2330f6891bbe91a709fb0aacf7989a60b70c3d22c2735e83b9315899ad529f4605eed7dc4b4eed14f4d51ccd8a47dfc55057f15acd62c8c10d SHA512 561e14212b8f3e2841739408870e70a79cbc11097070760e75e4013a030082db050f6615453da54adceae3f0de12af43498f33fab9b7f4ecfa6860d582dec095
+DIST crystal-1.14.1-3-linux-x86_64.tar.gz 51717984 BLAKE2B da2f977d8a81abb6085ea7d43dff4f3f9120d7e54bf374157e742e8516ff067db95b8f8578d31c6f57ac9116553a945b9e78a9ceefbc66157f321cfab29b96d7 SHA512 9b2fb8cab095041938f5088f9b136cda66b978e3f5c1245cff2d3966faaf18b5b899461cef60723c860afeb7ec5710880cc675d483a92db7b238b286bf9ad69d
+DIST crystal-1.14.1.tar.gz 3726868 BLAKE2B add2e478c3dbb5f8fce77c8dfb781858a1074e411f6899997052fd5f037fc6dcb86dd4f2aba432301912cac645dfaad4e916112c4d47c8247a9ea681270f945d SHA512 f16ba4e2b41ee9c1a4ef98bd026d843e7c8f831c592a919d79b3addea4647eea0eefefc8e964e1e187b8bfb0aed0829e2f5f5b120e3116a359616c0c043f9d3c
diff --git a/dev-lang/crystal/crystal-1.14.1.ebuild b/dev-lang/crystal/crystal-1.14.1.ebuild
new file mode 100644
index 000000000000..3d3cb3b00293
--- /dev/null
+++ b/dev-lang/crystal/crystal-1.14.1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+BV="${PV}-3"
+BV_AMD64="${BV}-linux-x86_64"
+
+LLVM_COMPAT=( {18..19} )
+
+inherit bash-completion-r1 llvm-r1 multiprocessing 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}.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/pcl:=
+ $(llvm_gen_dep '
+ llvm-core/llvm:${LLVM_SLOT}=
+ ')
+ llvm-libunwind? (
+ llvm-runtimes/libunwind:=
+ )
+ !llvm-libunwind? (
+ sys-libs/libunwind:=
+ )
+"
+RDEPEND="
+ ${DEPEND}
+ dev-libs/libxml2
+ dev-libs/libyaml
+"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-1.7.2-extra-spec-flags.patch"
+ "${FILESDIR}/${PN}-0.27.0-gentoo-tests-long-unix.patch"
+ "${FILESDIR}/${PN}-0.27.0-gentoo-tests-long-unix-2.patch"
+)
+
+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
+
+ 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[@]}"
+
+ use doc && emake docs "${MY_EMAKE_COMMON_ARGS[@]}"
+}
+
+src_test() {
+ # EXTRA_SPEC_FLAGS is useful to debug individual tests
+ # as part of full build:
+ # USE=debug EXTRA_SPEC_FLAGS='-e parse_set_cookie' emerge -1 crystal
+ emake std_spec \
+ "${MY_EMAKE_COMMON_ARGS[@]}" "EXTRA_SPEC_FLAGS=${EXTRA_SPEC_FLAGS}"
+}
+
+src_install() {
+ insinto "/usr/$(get_libdir)/crystal"
+ doins -r src/.
+
+ exeinto /usr/bin
+ doexe .build/crystal
+
+ insinto /usr/share/zsh/site-functions
+ newins etc/completion.zsh _crystal
+
+ dodoc -r samples
+ doman "man/${PN}.1"
+ newbashcomp etc/completion.bash "${PN}"
+
+ if use doc ; then
+ docinto api
+ dodoc -r docs/.
+ fi
+}
next reply other threads:[~2025-01-09 21:22 UTC|newest]
Thread overview: 140+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-09 21:22 Maciej Barć [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-09 21:40 [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/ Maciej Barć
2025-04-09 21:40 Maciej Barć
2025-03-24 11:46 Sam James
2025-03-07 19:34 Maciej Barć
2025-03-07 19:34 Maciej Barć
2025-03-04 22:43 Sam James
2025-02-09 20:50 Maciej Barć
2025-01-30 17:44 Maciej Barć
2025-01-30 17:44 Maciej Barć
2025-01-30 17:44 Maciej Barć
2025-01-12 21:54 Maciej Barć
2024-11-27 22:10 Maciej Barć
2024-11-24 15:47 Jakov Smolić
2024-11-04 0:19 Maciej Barć
2024-10-30 11:07 Sam James
2024-10-10 0:05 Maciej Barć
2024-10-10 0:05 Maciej Barć
2024-09-27 5:30 Arthur Zamarin
2024-09-25 21:16 Maciej Barć
2024-08-24 15:44 Maciej Barć
2024-08-24 15:44 Maciej Barć
2024-08-24 15:44 Maciej Barć
2024-08-17 16:06 Arthur Zamarin
2024-07-15 22:15 Maciej Barć
2024-07-12 12:35 Maciej Barć
2024-07-12 12:35 Maciej Barć
2024-07-09 2:56 Sam James
2024-06-04 15:17 Maciej Barć
2024-06-04 15:17 Maciej Barć
2024-05-18 3:19 Sam James
2024-04-13 22:56 Maciej Barć
2024-04-13 22:56 Maciej Barć
2024-04-11 1:38 Maciej Barć
2024-03-13 16:40 Maciej Barć
2024-03-08 14:50 Sam James
2024-02-06 13:07 Maciej Barć
2024-01-12 23:22 Maciej Barć
2023-12-18 0:11 Sam James
2023-12-16 21:45 Maciej Barć
2023-10-19 21:34 Maciej Barć
2023-10-17 13:39 Maciej Barć
2023-10-11 0:19 Maciej Barć
2023-10-11 0:19 Maciej Barć
2023-09-21 5:09 Sam James
2023-08-20 20:32 Maciej Barć
2023-08-20 20:32 Maciej Barć
2023-08-20 20:32 Maciej Barć
2023-08-16 2:20 Sam James
2023-07-22 13:09 Maciej Barć
2023-07-13 11:52 Maciej Barć
2023-07-13 11:52 Maciej Barć
2023-07-13 11:52 Maciej Barć
2023-07-13 11:52 Maciej Barć
2023-06-17 15:13 Sam James
2023-05-31 16:01 Sam James
2023-05-15 19:33 Maciej Barć
2023-04-27 23:00 Maciej Barć
2023-04-23 23:38 Maciej Barć
2023-04-23 23:38 Maciej Barć
2023-04-17 4:41 Sam James
2023-04-16 10:02 Maciej Barć
2023-03-26 2:34 Sam James
2023-03-12 22:52 Maciej Barć
2023-03-04 6:36 Arthur Zamarin
2023-02-12 0:48 Maciej Barć
2023-02-11 18:54 Jonas Stein
2022-07-19 18:04 Sam James
2022-07-19 18:04 Sam James
2022-03-26 0:01 Sam James
2021-12-24 23:55 Sam James
2021-10-27 14:14 Sam James
2021-08-26 10:51 Joonas Niilola
2021-07-23 7:33 Sergei Trofimovich
2021-07-17 11:22 Sergei Trofimovich
2021-04-02 9:54 Sergei Trofimovich
2021-03-27 8:18 Sergei Trofimovich
2021-03-09 8:13 Sergei Trofimovich
2021-02-12 8:22 Sergei Trofimovich
2021-02-05 10:13 Sergei Trofimovich
2021-02-05 10:13 Sergei Trofimovich
2021-01-27 7:31 Sergei Trofimovich
2020-06-20 19:49 Sergei Trofimovich
2020-06-19 20:52 Sergei Trofimovich
2020-06-09 20:36 Sergei Trofimovich
2020-05-02 17:51 Sergei Trofimovich
2020-04-07 22:07 Sergei Trofimovich
2020-04-01 21:14 Sergei Trofimovich
2020-02-26 13:13 Sergei Trofimovich
2020-02-12 22:32 Sergei Trofimovich
2019-12-19 0:15 Sergei Trofimovich
2019-12-19 0:15 Sergei Trofimovich
2019-12-11 20:59 Sergei Trofimovich
2019-09-30 21:13 Sergei Trofimovich
2019-09-30 21:13 Sergei Trofimovich
2019-09-24 19:17 Sergei Trofimovich
2019-08-13 22:45 Sergei Trofimovich
2019-08-04 9:08 Sergei Trofimovich
2019-08-04 9:08 Sergei Trofimovich
2019-06-08 11:58 Sergei Trofimovich
2019-06-02 16:39 Sergei Trofimovich
2019-04-26 16:20 Sergei Trofimovich
2019-02-16 21:15 Sergei Trofimovich
2019-02-08 20:35 Sergei Trofimovich
2018-11-07 20:06 Sergei Trofimovich
2018-09-04 8:19 Sergei Trofimovich
2018-08-09 22:34 Sergei Trofimovich
2018-05-19 16:10 Jonas Stein
2018-03-08 22:11 Sergei Trofimovich
2018-01-16 22:50 Sergei Trofimovich
2018-01-09 23:09 Sergei Trofimovich
2017-11-25 19:58 Sergei Trofimovich
2017-07-25 9:27 Sergei Trofimovich
2017-07-04 21:56 Sergei Trofimovich
2017-07-04 20:40 Sergei Trofimovich
2017-04-22 10:21 Sergei Trofimovich
2017-03-07 22:29 Sergei Trofimovich
2017-02-20 22:21 Sergei Trofimovich
2017-01-20 22:16 Sergei Trofimovich
2017-01-20 22:16 Sergei Trofimovich
2017-01-16 13:25 Sergei Trofimovich
2017-01-11 8:08 Sergei Trofimovich
2016-12-23 18:43 Sergei Trofimovich
2016-12-05 22:32 Sergei Trofimovich
2016-11-22 23:09 Sergei Trofimovich
2016-10-07 20:18 Sergei Trofimovich
2016-09-30 19:55 Sergei Trofimovich
2016-09-16 18:38 Sergei Trofimovich
2016-09-10 22:39 Sergei Trofimovich
2016-09-10 11:01 Sergei Trofimovich
2016-09-02 16:38 Sergei Trofimovich
2016-07-30 9:50 Sergei Trofimovich
2016-07-30 9:50 Sergei Trofimovich
2016-07-30 9:18 Sergei Trofimovich
2016-04-15 9:09 Ian Delaney
2016-03-26 9:48 Patrice Clement
2016-03-26 9:48 Patrice Clement
2016-03-20 22:59 Patrice Clement
2016-02-17 10:22 Patrice Clement
2016-02-02 8:48 Ian Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1736457717.3aea924fa65b05b0c09fb18c0bb9f8dc038b98c7.xgqt@gentoo \
--to=xgqt@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox