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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A87E21382C5 for ; Fri, 1 Jan 2021 05:52:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2EA3E088A; Fri, 1 Jan 2021 05:52:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B9614E088A for ; Fri, 1 Jan 2021 05:52:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9FD3335CA0 for ; Fri, 1 Jan 2021 05:52:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CA054C for ; Fri, 1 Jan 2021 05:52:36 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609480349.fb97c7de4b112b77e5205b7926bfaf1d38cc733d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/, dev-scheme/guile/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/guile/files/guile-2.2.7-stack-up.patch dev-scheme/guile/guile-2.2.7.ebuild X-VCS-Directories: dev-scheme/guile/files/ dev-scheme/guile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fb97c7de4b112b77e5205b7926bfaf1d38cc733d X-VCS-Branch: master Date: Fri, 1 Jan 2021 05:52:36 +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: e789992b-5739-404d-bf51-8c092becc4a3 X-Archives-Hash: 04087fdb100dca6dfcb5757a1a4c482e commit: fb97c7de4b112b77e5205b7926bfaf1d38cc733d Author: Sam James gentoo org> AuthorDate: Fri Jan 1 05:52:29 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 1 05:52:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb97c7de dev-scheme/guile: fix build where stack grows upwards Closes: https://bugs.gentoo.org/747049 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-scheme/guile/files/guile-2.2.7-stack-up.patch | 17 +++++++++++++++++ dev-scheme/guile/guile-2.2.7.ebuild | 8 ++++++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/dev-scheme/guile/files/guile-2.2.7-stack-up.patch b/dev-scheme/guile/files/guile-2.2.7-stack-up.patch new file mode 100644 index 00000000000..de291421c0b --- /dev/null +++ b/dev-scheme/guile/files/guile-2.2.7-stack-up.patch @@ -0,0 +1,17 @@ +This patch (dropping an obsolete extra parameter to grow_stack) landed post +2.2.7 and we're not likely to ever see a 2.2.8, as development has moved +on to 3.x now. + +https://bugs.gentoo.org/747049 +https://www.mail-archive.com/guile-devel@gnu.org/msg15502.html +--- a/libguile/continuations.c ++++ b/libguile/continuations.c +@@ -302,7 +302,7 @@ + + #if SCM_STACK_GROWS_UP + if (dst + continuation->num_stack_items >= &stack_top_element) +- grow_stack (cont, mra); ++ grow_stack (cont); + #else + dst -= continuation->num_stack_items; + if (dst <= &stack_top_element) diff --git a/dev-scheme/guile/guile-2.2.7.ebuild b/dev-scheme/guile/guile-2.2.7.ebuild index 61026da9a02..6020cc99568 100644 --- a/dev-scheme/guile/guile-2.2.7.ebuild +++ b/dev-scheme/guile/guile-2.2.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -29,7 +29,11 @@ BDEPEND=" sys-devel/libtool sys-devel/gettext" -PATCHES=( "${FILESDIR}/${PN}-2.2.3-gentoo-sandbox.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-2.2.3-gentoo-sandbox.patch" + "${FILESDIR}/${PN}-2.2.7-stack-up.patch" +) + DOCS=( GUILE-VERSION HACKING README ) src_configure() {