From unknown Sat Aug 09 13:16:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61641] [PATCH] build-system/guile: Expose #:scheme-file-regexp when cross-compiling Resent-From: jlicht@fsfe.org Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 19 Feb 2023 23:20:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 61641 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61641@debbugs.gnu.org Cc: Jelle Licht X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16768487718938 (code B ref -1); Sun, 19 Feb 2023 23:20:02 +0000 Received: (at submit) by debbugs.gnu.org; 19 Feb 2023 23:19:31 +0000 Received: from localhost ([127.0.0.1]:49938 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTsxu-0002K6-N5 for submit@debbugs.gnu.org; Sun, 19 Feb 2023 18:19:31 -0500 Received: from lists.gnu.org ([209.51.188.17]:45396) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTsxt-0002Jy-MP for submit@debbugs.gnu.org; Sun, 19 Feb 2023 18:19:29 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pTsxt-0007G6-Cv for guix-patches@gnu.org; Sun, 19 Feb 2023 18:19:29 -0500 Received: from mail1.fsfe.org ([217.69.89.151]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pTsxr-0006ws-7g for guix-patches@gnu.org; Sun, 19 Feb 2023 18:19:29 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676848759; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=OVGrNacB0S4OBnZAt2Ph5WcjXZAcwKBZVWcY3HAKBwc=; b=ThIlEqFjcFtJ6U+8wkWKBbJEGRPgqfKfCWwFBTMIyN7k+xcY19RUhQmJeXtyuDg+ll9QM1 6uS6QHbbDJXooUnzswtw5isorlQiwA31u/rZDWuRqfzmTEXH/l2lUi8cMUHA2DSMRXMGBE MX9K/4s7SdCKU/r0gWInVkLFPTv6avI= Date: Mon, 20 Feb 2023 00:19:18 +0100 Message-Id: <6ebf254db3fee96ea3ff20eef18b2e4ccc5c4646.1676848633.git.jlicht@fsfe.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.69.89.151; envelope-from=jlicht@fsfe.org; helo=mail1.fsfe.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Jelle Licht * guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-regexp and pass it on to builder. --- guix/build-system/guile.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm index ffc892260a..7e2e33c13e 100644 --- a/guix/build-system/guile.scm +++ b/guix/build-system/guile.scm @@ -129,6 +129,7 @@ (define* (guile-cross-build name (phases '%standard-phases) (source-directory ".") + (scheme-file-regexp %scheme-file-regexp) not-compiled-file-regexp (compile-flags %compile-flags) (imported-modules %guile-build-system-modules) @@ -154,6 +155,7 @@ (define* (guile-cross-build name #:target #$target #:outputs %outputs #:source-directory #$source-directory + #:scheme-file-regexp #$scheme-file-regexp #:not-compiled-file-regexp #$not-compiled-file-regexp #:compile-flags #$compile-flags #:inputs %build-target-inputs base-commit: 57495d063587e9301feddbe051abe2f97ca038be -- 2.39.1 From unknown Sat Aug 09 13:16:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61641] [PATCH] build-system/guile: Expose #:scheme-file-regexp when cross-compiling Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 24 Feb 2023 21:28:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61641 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: jlicht@fsfe.org Cc: 61641@debbugs.gnu.org Received: via spool by 61641-submit@debbugs.gnu.org id=B61641.16772740529609 (code B ref 61641); Fri, 24 Feb 2023 21:28:01 +0000 Received: (at 61641) by debbugs.gnu.org; 24 Feb 2023 21:27:32 +0000 Received: from localhost ([127.0.0.1]:38383 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVfbI-0002Uv-Jj for submit@debbugs.gnu.org; Fri, 24 Feb 2023 16:27:32 -0500 Received: from eggs.gnu.org ([209.51.188.92]:41824) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVfbG-0002Uf-2Y for 61641@debbugs.gnu.org; Fri, 24 Feb 2023 16:27:30 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVfbA-0005He-Im; Fri, 24 Feb 2023 16:27:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=JFs+3Q1VPt9D27Ivbyf4dT2qF2BdHwtuzaScDLAgDj0=; b=EK+nR/h6+iB4Qki900TG eu7w1Cun1XJ9Qi56X35HuTk8JhVhXbEIMN64CkLqxSxBJdo07cQJmbXGz2hJHVyK7YRjxdiRCCVQw l6YcWypLyBXJsRX4zfPy6iBqcyMNJUuU+MXNU8H2+pk6kaeRjrpQA8BV7wMdcq1/yZF1GI+PIK8JW dYif3YtHQrF6HNPoy8g4PdhUhF2Hg5lEufzPtp4rhykcFbothRtYPw1NkinHog6M/ywiilDdULHIV WFLd7S/iQCSa+5TvS7AfGzSYZAAqiyKml8cJiCYn+8oZhL2yh+WK+JEOcDz5W7oqs0nD5gi8UHKUa HziczXVFlr3neQ==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVfb8-0004q8-Vi; Fri, 24 Feb 2023 16:27:24 -0500 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <6ebf254db3fee96ea3ff20eef18b2e4ccc5c4646.1676848633.git.jlicht@fsfe.org> Date: Fri, 24 Feb 2023 22:27:20 +0100 In-Reply-To: <6ebf254db3fee96ea3ff20eef18b2e4ccc5c4646.1676848633.git.jlicht@fsfe.org> (jlicht@fsfe.org's message of "Mon, 20 Feb 2023 00:19:18 +0100") Message-ID: <87sfeu21qf.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hello, jlicht@fsfe.org skribis: > From: Jelle Licht > > * guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-r= egexp > and pass it on to builder. LGTM! :-) Ludo=E2=80=99. From unknown Sat Aug 09 13:16:44 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: jlicht@fsfe.org Subject: bug#61641: closed (Re: bug#61641: [PATCH] build-system/guile: Expose #:scheme-file-regexp when cross-compiling) Message-ID: References: <87ttyy0y48.fsf@fsfe.org> <6ebf254db3fee96ea3ff20eef18b2e4ccc5c4646.1676848633.git.jlicht@fsfe.org> X-Gnu-PR-Message: they-closed 61641 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 61641@debbugs.gnu.org Date: Mon, 06 Mar 2023 14:11:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1678111862-27333-1" This is a multi-part message in MIME format... ------------=_1678111862-27333-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #61641: [PATCH] build-system/guile: Expose #:scheme-file-regexp when cross-= compiling which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 61641@debbugs.gnu.org. --=20 61641: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D61641 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1678111862-27333-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 61641-done) by debbugs.gnu.org; 6 Mar 2023 14:10:21 +0000 Received: from localhost ([127.0.0.1]:41740 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZBXh-00075v-HO for submit@debbugs.gnu.org; Mon, 06 Mar 2023 09:10:21 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:47160) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pZBXg-00075o-2R for 61641-done@debbugs.gnu.org; Mon, 06 Mar 2023 09:10:20 -0500 From: Jelle Licht DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1678111816; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=NtKbcWOY+b/Gs2WL9qf1Wyzmxzg0yB22elYDKDcYwO4=; b=Npfks/fv3hnR7N2tBAdV+WVP/MrUwJSTLyfifHYl6MFYrzfi3zDiNvUudvwSvL1cMXOO6I 0UH2kE22A7hib0ng2QdD2FXkmbOJXUPPvqgjK0O79mkz+HDBziGRTIRcaOkkSwMJq6rn5R Zb7oJGpJNLuinNG5nld+VgvDUBnFTkU= To: 61641-done@debbugs.gnu.org Subject: Re: bug#61641: [PATCH] build-system/guile: Expose #:scheme-file-regexp when cross-compiling In-Reply-To: <87sfeu21qf.fsf@gnu.org> References: <6ebf254db3fee96ea3ff20eef18b2e4ccc5c4646.1676848633.git.jlicht@fsfe.org> <87sfeu21qf.fsf@gnu.org> Date: Mon, 06 Mar 2023 15:10:15 +0100 Message-ID: <87ttyy0y48.fsf@fsfe.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61641-done Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Ludovic Court=C3=A8s writes: > Hello, > > jlicht@fsfe.org skribis: > >> From: Jelle Licht >> >> * guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-= regexp >> and pass it on to builder. > > LGTM! :-) Pushed to master, thanks again! - Jelle ------------=_1678111862-27333-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 19 Feb 2023 23:19:31 +0000 Received: from localhost ([127.0.0.1]:49938 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTsxu-0002K6-N5 for submit@debbugs.gnu.org; Sun, 19 Feb 2023 18:19:31 -0500 Received: from lists.gnu.org ([209.51.188.17]:45396) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pTsxt-0002Jy-MP for submit@debbugs.gnu.org; Sun, 19 Feb 2023 18:19:29 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pTsxt-0007G6-Cv for guix-patches@gnu.org; Sun, 19 Feb 2023 18:19:29 -0500 Received: from mail1.fsfe.org ([217.69.89.151]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pTsxr-0006ws-7g for guix-patches@gnu.org; Sun, 19 Feb 2023 18:19:29 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676848759; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=OVGrNacB0S4OBnZAt2Ph5WcjXZAcwKBZVWcY3HAKBwc=; b=ThIlEqFjcFtJ6U+8wkWKBbJEGRPgqfKfCWwFBTMIyN7k+xcY19RUhQmJeXtyuDg+ll9QM1 6uS6QHbbDJXooUnzswtw5isorlQiwA31u/rZDWuRqfzmTEXH/l2lUi8cMUHA2DSMRXMGBE MX9K/4s7SdCKU/r0gWInVkLFPTv6avI= To: guix-patches@gnu.org Subject: [PATCH] build-system/guile: Expose #:scheme-file-regexp when cross-compiling Date: Mon, 20 Feb 2023 00:19:18 +0100 Message-Id: <6ebf254db3fee96ea3ff20eef18b2e4ccc5c4646.1676848633.git.jlicht@fsfe.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.69.89.151; envelope-from=jlicht@fsfe.org; helo=mail1.fsfe.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Jelle Licht * guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-regexp and pass it on to builder. --- guix/build-system/guile.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm index ffc892260a..7e2e33c13e 100644 --- a/guix/build-system/guile.scm +++ b/guix/build-system/guile.scm @@ -129,6 +129,7 @@ (define* (guile-cross-build name (phases '%standard-phases) (source-directory ".") + (scheme-file-regexp %scheme-file-regexp) not-compiled-file-regexp (compile-flags %compile-flags) (imported-modules %guile-build-system-modules) @@ -154,6 +155,7 @@ (define* (guile-cross-build name #:target #$target #:outputs %outputs #:source-directory #$source-directory + #:scheme-file-regexp #$scheme-file-regexp #:not-compiled-file-regexp #$not-compiled-file-regexp #:compile-flags #$compile-flags #:inputs %build-target-inputs base-commit: 57495d063587e9301feddbe051abe2f97ca038be -- 2.39.1 ------------=_1678111862-27333-1--