From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5055515808E for ; Mon, 25 Apr 2022 21:48:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02FCAE07AE; Mon, 25 Apr 2022 21:48:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D675FE07AE for ; Mon, 25 Apr 2022 21:48:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF3FB34136E for ; Mon, 25 Apr 2022 21:48:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C160318 for ; Mon, 25 Apr 2022 21:48:46 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1650923115.4e1d3e8bf10d87fccdda51ad0da669797795e4f4.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/julia/files/julia-1.6.3-glibc-2.34.patch X-VCS-Directories: dev-lang/julia/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 4e1d3e8bf10d87fccdda51ad0da669797795e4f4 X-VCS-Branch: master Date: Mon, 25 Apr 2022 21:48:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 91cb2efd-20d1-4fd2-9a6d-93fea9ad2c3d X-Archives-Hash: d06415aa02b98ea9cf83db6b36f4305d commit: 4e1d3e8bf10d87fccdda51ad0da669797795e4f4 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Apr 25 17:48:50 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Apr 25 21:45:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e1d3e8b dev-lang/julia: remove unused patch Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/25199 Signed-off-by: Conrad Kostecki gentoo.org> dev-lang/julia/files/julia-1.6.3-glibc-2.34.patch | 32 ----------------------- 1 file changed, 32 deletions(-) diff --git a/dev-lang/julia/files/julia-1.6.3-glibc-2.34.patch b/dev-lang/julia/files/julia-1.6.3-glibc-2.34.patch deleted file mode 100644 index 3e3146529aea..000000000000 --- a/dev-lang/julia/files/julia-1.6.3-glibc-2.34.patch +++ /dev/null @@ -1,32 +0,0 @@ -https://github.com/JuliaLang/julia/commit/09a49c6b57fbde109f0f0c2aa9aa05cef2c1dd40 -https://bugs.gentoo.org/824486 - -From: t-bltg <13423344+t-bltg@users.noreply.github.com> -Date: Thu, 12 Aug 2021 21:36:18 +0200 -Subject: [PATCH] MINSIGSTKSZ is no longer constant in glibc (#41860) - -MINSIGSTKSZ is redefined to sysconf(_SC_MINSIGSTKSZ) starting from glibc 2.34 - -Co-authored-by: t-bltg -(cherry picked from commit f19b9a20dde2688c642b7dd709b5d9446e4df2f6) ---- a/src/task.c -+++ b/src/task.c -@@ -29,6 +29,7 @@ - #include - #include - #include -+#include - #include - #include - #include "julia.h" -@@ -75,8 +76,8 @@ static inline void tsan_switch_to_ctx(jl_ucontext_t *ctx) {} - - // empirically, jl_finish_task needs about 64k stack space to infer/run - // and additionally, gc-stack reserves 64k for the guard pages --#if defined(MINSIGSTKSZ) && MINSIGSTKSZ > 131072 --#define MINSTKSZ MINSIGSTKSZ -+#if defined(MINSIGSTKSZ) -+#define MINSTKSZ (MINSIGSTKSZ > 131072 ? MINSIGSTKSZ : 131072) - #else - #define MINSTKSZ 131072 - #endif