From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/
Date: Sun, 11 May 2025 23:35:44 +0000 (UTC) [thread overview]
Message-ID: <1747006501.a1e1e4b7366c54b65c51d907ded4b7689a679c86.sam@gentoo> (raw)
commit: a1e1e4b7366c54b65c51d907ded4b7689a679c86
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 11 23:34:42 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 11 23:35:01 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1e1e4b7
dev-lang/julia: don't use system libgit2
Julia uses libgit2 via FFI and libgit2 has unstable ABI.
Closes: https://bugs.gentoo.org/955402
Thanks-to: William Throwe <wtt6 <AT> cornell.edu>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-lang/julia/{julia-1.8.3-r5.ebuild => julia-1.8.3-r6.ebuild} | 8 +++++---
dev-lang/julia/{julia-1.8.5-r2.ebuild => julia-1.8.5-r3.ebuild} | 8 +++++---
dev-lang/julia/{julia-1.9.0-r1.ebuild => julia-1.9.0-r2.ebuild} | 8 +++++---
dev-lang/julia/{julia-1.9.4-r1.ebuild => julia-1.9.4-r2.ebuild} | 8 +++++---
4 files changed, 20 insertions(+), 12 deletions(-)
diff --git a/dev-lang/julia/julia-1.8.3-r5.ebuild b/dev-lang/julia/julia-1.8.3-r6.ebuild
similarity index 95%
rename from dev-lang/julia/julia-1.8.3-r5.ebuild
rename to dev-lang/julia/julia-1.8.3-r6.ebuild
index 7ae8ecc12cb4..268849df5c80 100644
--- a/dev-lang/julia/julia-1.8.3-r5.ebuild
+++ b/dev-lang/julia/julia-1.8.3-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# correct versions for stdlibs are in deps/checksums
@@ -24,7 +24,6 @@ RDEPEND="
app-arch/p7zip
app-misc/ca-certificates
dev-libs/gmp:0=
- dev-libs/libgit2:0
dev-libs/mpfr:0=
>=dev-libs/libutf8proc-2.6.1:0=[-cjk]
>=dev-util/patchelf-0.13
@@ -142,7 +141,10 @@ src_configure() {
USE_SYSTEM_LIBSSH2:=1
USE_SYSTEM_NGHTTP2:=1
USE_SYSTEM_CURL:=1
- USE_SYSTEM_LIBGIT2:=1
+ # Julia uses libgit2 via FFI and libgit2 has unstable ABI.
+ # It's common for there to be a substantial mismatch that
+ # leads to bother (bug #955402).
+ USE_SYSTEM_LIBGIT2:=0
USE_SYSTEM_PATCHELF:=1
USE_SYSTEM_ZLIB:=1
USE_SYSTEM_P7ZIP:=1
diff --git a/dev-lang/julia/julia-1.8.5-r2.ebuild b/dev-lang/julia/julia-1.8.5-r3.ebuild
similarity index 96%
rename from dev-lang/julia/julia-1.8.5-r2.ebuild
rename to dev-lang/julia/julia-1.8.5-r3.ebuild
index 405c44c053f9..df8c13ee0620 100644
--- a/dev-lang/julia/julia-1.8.5-r2.ebuild
+++ b/dev-lang/julia/julia-1.8.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# correct versions for stdlibs are in deps/checksums
@@ -40,7 +40,6 @@ RDEPEND="
app-arch/p7zip
app-misc/ca-certificates
dev-libs/gmp:0=
- dev-libs/libgit2:0
dev-libs/mpfr:0=
net-misc/curl[http2,ssh]
sci-libs/amd:0=
@@ -184,7 +183,10 @@ src_configure() {
USE_SYSTEM_LIBSSH2:=1
USE_SYSTEM_NGHTTP2:=1
USE_SYSTEM_CURL:=1
- USE_SYSTEM_LIBGIT2:=1
+ # Julia uses libgit2 via FFI and libgit2 has unstable ABI.
+ # It's common for there to be a substantial mismatch that
+ # leads to bother (bug #955402).
+ USE_SYSTEM_LIBGIT2:=0
USE_SYSTEM_PATCHELF:=1
USE_SYSTEM_ZLIB:=1
USE_SYSTEM_P7ZIP:=1
diff --git a/dev-lang/julia/julia-1.9.0-r1.ebuild b/dev-lang/julia/julia-1.9.0-r2.ebuild
similarity index 96%
rename from dev-lang/julia/julia-1.9.0-r1.ebuild
rename to dev-lang/julia/julia-1.9.0-r2.ebuild
index 46bd0cf4dd10..2e0830c2ad6f 100644
--- a/dev-lang/julia/julia-1.9.0-r1.ebuild
+++ b/dev-lang/julia/julia-1.9.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# correct versions for stdlibs are in deps/checksums
@@ -36,7 +36,6 @@ RDEPEND="
app-arch/p7zip
app-misc/ca-certificates
dev-libs/gmp:0=
- dev-libs/libgit2:0
dev-libs/mpfr:0=
net-misc/curl[http2,ssh]
sci-libs/amd:0=
@@ -163,7 +162,10 @@ src_configure() {
USE_SYSTEM_LIBSSH2:=1
USE_SYSTEM_NGHTTP2:=1
USE_SYSTEM_CURL:=1
- USE_SYSTEM_LIBGIT2:=1
+ # Julia uses libgit2 via FFI and libgit2 has unstable ABI.
+ # It's common for there to be a substantial mismatch that
+ # leads to bother (bug #955402).
+ USE_SYSTEM_LIBGIT2:=0
USE_SYSTEM_PATCHELF:=1
USE_SYSTEM_ZLIB:=1
USE_SYSTEM_P7ZIP:=1
diff --git a/dev-lang/julia/julia-1.9.4-r1.ebuild b/dev-lang/julia/julia-1.9.4-r2.ebuild
similarity index 95%
rename from dev-lang/julia/julia-1.9.4-r1.ebuild
rename to dev-lang/julia/julia-1.9.4-r2.ebuild
index a7a7d1a0cbea..60a51ab30625 100644
--- a/dev-lang/julia/julia-1.9.4-r1.ebuild
+++ b/dev-lang/julia/julia-1.9.4-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# correct versions for stdlibs are in deps/checksums
@@ -34,7 +34,6 @@ RDEPEND="
app-arch/p7zip
app-misc/ca-certificates
dev-libs/gmp:0=
- dev-libs/libgit2:0
dev-libs/mpfr:0=
net-misc/curl[http2,ssh]
sci-libs/amd:0=
@@ -146,7 +145,10 @@ src_configure() {
USE_SYSTEM_LIBSSH2:=1
USE_SYSTEM_NGHTTP2:=1
USE_SYSTEM_CURL:=1
- USE_SYSTEM_LIBGIT2:=1
+ # Julia uses libgit2 via FFI and libgit2 has unstable ABI.
+ # It's common for there to be a substantial mismatch that
+ # leads to bother (bug #955402).
+ USE_SYSTEM_LIBGIT2:=0
USE_SYSTEM_PATCHELF:=1
USE_SYSTEM_ZLIB:=1
USE_SYSTEM_P7ZIP:=1
next reply other threads:[~2025-05-11 23:35 UTC|newest]
Thread overview: 83+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-11 23:35 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-05-14 4:34 [gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/ Sam James
2025-05-13 0:29 Sam James
2025-01-05 20:33 Sam James
2024-08-26 13:13 Eli Schwartz
2023-05-14 6:30 Matthias Maier
2023-05-02 0:39 Maciej Barć
2023-04-30 11:10 Maciej Barć
2023-02-13 16:53 Maciej Barć
2023-02-13 14:46 Maciej Barć
2023-01-01 22:45 Maciej Barć
2023-01-01 12:30 Maciej Barć
2022-12-13 6:28 Matthias Maier
2022-12-13 6:22 Matthias Maier
2022-12-13 5:30 Maciej Barć
2022-11-16 16:27 Maciej Barć
2022-10-08 23:21 Maciej Barć
2022-07-26 21:40 Maciej Barć
2022-06-06 5:17 Matthias Maier
2022-03-17 16:18 Maciej Barć
2022-01-04 16:21 Matthias Maier
2022-01-03 22:22 Matthias Maier
2022-01-03 21:37 Matthias Maier
2021-11-18 6:38 Matthias Maier
2021-09-25 2:58 Sam James
2021-04-08 2:31 Matthias Maier
2021-04-08 2:31 Matthias Maier
2021-04-08 2:31 Matthias Maier
2021-04-08 2:31 Matthias Maier
2021-04-08 2:31 Matthias Maier
2020-12-26 0:53 Matthias Maier
2020-12-25 23:28 Matthias Maier
2020-12-25 21:56 Matthias Maier
2020-12-25 21:56 Matthias Maier
2020-12-25 21:17 Matthias Maier
2020-12-04 5:53 Matthias Maier
2020-10-02 18:27 Matthias Maier
2020-10-02 17:42 Matthias Maier
2020-10-02 17:42 Matthias Maier
2020-07-01 16:38 Andreas K. Hüttel
2020-06-22 6:53 Andreas K. Hüttel
2020-06-21 19:49 Andreas K. Hüttel
2020-04-07 21:03 Matthias Maier
2020-04-04 19:32 Matthias Maier
2019-12-11 3:33 Matthias Maier
2019-12-11 3:33 Matthias Maier
2019-12-11 3:33 Matthias Maier
2019-09-22 2:18 Matthias Maier
2019-08-05 15:03 Matthias Maier
2019-05-25 17:42 Matthias Maier
2018-10-06 19:56 Matthias Maier
2018-09-04 1:20 Matthias Maier
2018-09-04 1:20 Matthias Maier
2018-08-31 3:23 Matthias Maier
2018-08-31 2:32 Matthias Maier
2018-08-31 2:32 Matthias Maier
2018-08-27 22:00 Matthias Maier
2018-07-01 4:49 Matthias Maier
2018-07-01 4:11 Matthias Maier
2018-06-30 22:55 Matthias Maier
2018-05-25 7:47 Fabian Groffen
2018-03-19 1:01 Matthias Maier
2018-03-19 1:01 Matthias Maier
2018-03-01 19:13 Matthias Maier
2017-11-28 11:12 Matthias Maier
2017-11-28 11:12 Matthias Maier
2017-11-28 11:12 Matthias Maier
2017-11-27 18:09 Matthias Maier
2017-11-27 18:09 Matthias Maier
2017-10-07 4:12 Matthias Maier
2017-09-25 7:35 Patrick Lauer
2017-09-25 6:44 Patrick Lauer
2017-09-16 5:27 Matthias Maier
2017-09-16 5:01 Matthias Maier
2017-07-27 0:41 Matthias Maier
2017-04-27 12:31 Patrick Lauer
2017-03-22 23:04 Matthias Maier
2016-09-25 5:49 Matthias Maier
2016-09-24 21:25 Matthias Maier
2016-07-05 19:04 Michał Górny
2016-04-13 5:53 Austin English
2016-01-22 17:14 Matthias Maier
2016-01-16 11:48 Matthias Maier
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=1747006501.a1e1e4b7366c54b65c51d907ded4b7689a679c86.sam@gentoo \
--to=sam@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