From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id 6Kh6MHmR3F+QSwAA0tVLHw (envelope-from ) for ; Fri, 18 Dec 2020 11:24:41 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id KDtrLHmR3F8yZgAAB5/wlQ (envelope-from ) for ; Fri, 18 Dec 2020 11:24:41 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 771D6940667 for ; Fri, 18 Dec 2020 11:24:41 +0000 (UTC) Received: from localhost ([::1]:59542 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kqDsG-000553-Ep for larch@yhetil.org; Fri, 18 Dec 2020 06:24:40 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:55316) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kqDnm-0000eB-7H for guix-patches@gnu.org; Fri, 18 Dec 2020 06:20:02 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54535) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kqDnl-0000Kc-TI for guix-patches@gnu.org; Fri, 18 Dec 2020 06:20:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kqDnl-0008Lh-NH for guix-patches@gnu.org; Fri, 18 Dec 2020 06:20:01 -0500 X-Loop: help-debbugs@gnu.org Subject: [bug#40399] [PATCH] build-system/gnu: Allow overriding of bootstrap scripts. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 18 Dec 2020 11:20:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40399 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ricardo Wurmus Received: via spool by 40399-submit@debbugs.gnu.org id=B40399.160829035932039 (code B ref 40399); Fri, 18 Dec 2020 11:20:01 +0000 Received: (at 40399) by debbugs.gnu.org; 18 Dec 2020 11:19:19 +0000 Received: from localhost ([127.0.0.1]:37848 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kqDn4-0008Kg-UX for submit@debbugs.gnu.org; Fri, 18 Dec 2020 06:19:19 -0500 Received: from mira.cbaines.net ([212.71.252.8]:54572) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kqDn3-0008KY-2P for 40399@debbugs.gnu.org; Fri, 18 Dec 2020 06:19:17 -0500 Received: from localhost (188.30.130.172.threembb.co.uk [188.30.130.172]) by mira.cbaines.net (Postfix) with ESMTPSA id 95FF727BC05; Fri, 18 Dec 2020 11:19:16 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 49b9b022; Fri, 18 Dec 2020 11:19:14 +0000 (UTC) References: <20200403051133.10138-1-rekado@elephly.net> <87a73rvy3p.fsf@elephly.net> User-agent: mu4e 1.4.13; emacs 27.1 From: Christopher Baines In-reply-to: <87a73rvy3p.fsf@elephly.net> Date: Fri, 18 Dec 2020 11:19:14 +0000 Message-ID: <871rfn2wgd.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: 40399@debbugs.gnu.org Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: "Guix-patches" X-Migadu-Flow: FLOW_IN X-Migadu-Spam-Score: -4.42 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-patches-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-patches-bounces@gnu.org X-Migadu-Queue-Id: 771D6940667 X-Spam-Score: -4.42 X-Migadu-Scanner: scn0.migadu.com X-TUID: vHfwllfQV2fe --=-=-= Content-Type: text/plain Ricardo Wurmus writes: > Ricardo Wurmus writes: > >> * guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Accept >> bootstrap-scripts keyword argument and pass it to gnu-build. >> (%bootstrap-scripts): New variable. >> * guix/build/gnu-build-system.scm (%bootstrap-scripts): Remove variable. >> (bootstrap): Remove default value for bootstrap-scripts argument. > > This is for the next core-updates branch. This looks reasonable to me, I believe now is a good time to push to core-updates as well. Thanks, Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAl/ckDJfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XcOoQ/+MRcNQnW1vkhVlgv4CqITbDOO9d82dOwp G+RF7a6c1fjen4H+Sgcfe5djA0xig7rCKlkzkTPcJ0lll5HRve9/pIDdq6lMxQcz BaCQRz3TM1Uvc2gjCFQEq/lmv1O1/tCIySJTvHVl3foJKV+wrkfp2ryoBSO315v5 p9sFfYHlcPag44zUTL4amaNhGhVyF5XZ0YEr9UfAfFcUNWtSJdogzV7Ukl9VVYgY fAsDr3nidjcurJqLjur0FfohdEhixIegqcfMJ7XrUklD2g137AFAhogWlO+cIHzl 2kRvtv0mS5zuvmPsNd+vR5znfV4Pnz5fX+L0Zz8UD8bwFISyFiwu6/LKra80KQ1X sFeR/ORPOLmAVxj/1GfMPAEonOZKDePH7/+A+wOHtN/fTDL0eI7kBXeHEJ0EZwpJ 6uqValwRp/rXxNBv45qP7JPAY0XG9pq+gdBU0H4P9TycJAh3ahsyGL8DIZ9aOhnP B8qB9vIJhFuF2ZWa1rXouMdym5dpH6fDuu9e4jOFrOCxD+XrLKKmpANC2i6C12VV ho0bYXE+8CD4SJIgDKkAoVRQ7mdo+rwqfItXC2S2xP3AxC2hwS0DZKJTEKqst6yy o15LZ15BEw08oUVZ13tZ7vlDoYjwsiPrPxahGAkFplcuT9mdxdYJxMEU/JEJ+ir5 Pk4bSTPix4I= =aCqb -----END PGP SIGNATURE----- --=-=-=--