From unknown Sun Jun 15 08:45:49 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#42293 <42293@debbugs.gnu.org> To: bug#42293 <42293@debbugs.gnu.org> Subject: Status: [PATCH] gnu: fish: Update to 3.1.2. Reply-To: bug#42293 <42293@debbugs.gnu.org> Date: Sun, 15 Jun 2025 15:45:49 +0000 retitle 42293 [PATCH] gnu: fish: Update to 3.1.2. reassign 42293 guix-patches submitter 42293 Tanguy Le Carrour severity 42293 normal tag 42293 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 09 05:08:24 2020 Received: (at submit) by debbugs.gnu.org; 9 Jul 2020 09:08:24 +0000 Received: from localhost ([127.0.0.1]:39884 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jtSXX-0005WG-H1 for submit@debbugs.gnu.org; Thu, 09 Jul 2020 05:08:24 -0400 Received: from lists.gnu.org ([209.51.188.17]:45272) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jtSXV-0005W8-Vf for submit@debbugs.gnu.org; Thu, 09 Jul 2020 05:08:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:38516) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jtSXV-0007Np-RJ for guix-patches@gnu.org; Thu, 09 Jul 2020 05:08:21 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:41845) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jtSXT-00067R-Km for guix-patches@gnu.org; Thu, 09 Jul 2020 05:08:21 -0400 X-Originating-IP: 176.185.184.238 Received: from localhost.localdomain (static-176-185-184-238.ftth.abo.bbox.fr [176.185.184.238]) (Authenticated sender: tanguy@bioneland.org) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id C10FEC0013; Thu, 9 Jul 2020 09:08:15 +0000 (UTC) From: Tanguy Le Carrour To: guix-patches@gnu.org Subject: [PATCH] gnu: fish: Update to 3.1.2. Date: Thu, 9 Jul 2020 11:07:58 +0200 Message-Id: <20200709090758.4117-1-tanguy@bioneland.org> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=217.70.183.198; envelope-from=tanguy@bioneland.org; helo=relay6-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/09 03:48:51 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -35 X-Spam_score: -3.6 X-Spam_bar: --- X-Spam_report: (-3.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-1, SPF_HELO_NONE=0.001, SPF_NONE=0.001, URIBL_BLOCKED=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Tanguy Le Carrour 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 (---) * gnu/packages/shells.scm (fish): Update to 3.1.2. [arguments] Set HOME to a writable folder. Remove a failing test file. --- gnu/packages/shells.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index b790a0cc18..3bdda7c786 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -99,7 +99,7 @@ direct descendant of NetBSD's Almquist Shell (@command{ash}).") (define-public fish (package (name "fish") - (version "3.1.0") + (version "3.1.2") (source (origin (method url-fetch) @@ -107,7 +107,7 @@ direct descendant of NetBSD's Almquist Shell (@command{ash}).") "releases/download/" version "/" "fish-" version ".tar.gz")) (sha256 - (base32 "0s2356mlx7fp9kgqgw91lm5ds2i9iq9hq071fbqmcp3875l1xnz5")))) + (base32 "1vblmb3x2k2cb0db5jdyflppnlqsm7i6jjaidyhmvaaw7ch2gffm")))) (build-system cmake-build-system) (inputs `(("fish-foreign-env" ,fish-foreign-env) @@ -121,10 +121,16 @@ direct descendant of NetBSD's Almquist Shell (@command{ash}).") (arguments '(#:phases (modify-phases %standard-phases + (add-after 'unpack 'set-env + (lambda* (#:key inputs #:allow-other-keys) + ;; some tests write to $HOME + (setenv "HOME" (getcwd)))) (add-after 'unpack 'patch-tests (lambda* (#:key inputs #:allow-other-keys) (let ((coreutils (assoc-ref inputs "coreutils")) (bash (assoc-ref inputs "bash"))) + ;; This test fails + (delete-file "tests/checks/pipeline-pgroup.fish") ;; These try to open a terminal (delete-file "tests/checks/interactive.fish") (delete-file "tests/checks/login-interactive.fish") -- 2.27.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 12 15:00:08 2020 Received: (at 42293-done) by debbugs.gnu.org; 12 Jul 2020 19:00:08 +0000 Received: from localhost ([127.0.0.1]:46763 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1juhCq-00075x-EH for submit@debbugs.gnu.org; Sun, 12 Jul 2020 15:00:08 -0400 Received: from flashner.co.il ([178.62.234.194]:51844) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1juhCn-00073R-F5 for 42293-done@debbugs.gnu.org; Sun, 12 Jul 2020 15:00:07 -0400 Received: from localhost (unknown [141.226.9.208]) by flashner.co.il (Postfix) with ESMTPSA id 853D14001D; Sun, 12 Jul 2020 18:59:59 +0000 (UTC) Date: Sun, 12 Jul 2020 21:58:32 +0300 From: Efraim Flashner To: Tanguy Le Carrour Subject: Re: [bug#42293] [PATCH] gnu: fish: Update to 3.1.2. Message-ID: <20200712185832.GG9396@E5400> References: <20200709090758.4117-1-tanguy@bioneland.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="xs+9IvWevLaxKUtW" Content-Disposition: inline In-Reply-To: <20200709090758.4117-1-tanguy@bioneland.org> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 42293-done Cc: 42293-done@debbugs.gnu.org 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 (-) --xs+9IvWevLaxKUtW Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Looks good. Patch pushed! --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --xs+9IvWevLaxKUtW Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl8LXVgACgkQQarn3Mo9 g1EZ+w//fpt1l9mn+dJVgG+UYF6cHJF3rIyV2xJV0CQHK4+YSaIEalPCLQOH+Z2P OWsCSYvjMb1wkoN6njFj91KngQkvI9hceqNohCxSXdwmIVIhS00nmefpFhRKcUXj 063obXQ1UopWR6WEorXhblna3YXMcsRy5yGHHgQiShM/Mex80ApchoW0fZqqJUr3 OALhAJ3sYRqmYV9OcKg72ksMCoJF3D0mFK74fuOblPjlxMIk6wJq/ZqX8Eeubwp/ OAmMO9mue/oMQmV/rvwYb2q7b4HAvERlSRJD6EOklPmuIzfosAqErVKdMDhz7G/9 Lk7muVPHzj5gAkrwytIuuzQVFeVcFdAa2Ms3FsKvFPlH5Z9R8KQ0B1hl8ks7+ZSP yEq048XhAIJOFUeKrIEyOYQHoLeZmPbT2ltiGWur3WvnfmGaEUaDrfPnkKNTy5rg G5nCsXGnoGfeHrRJOoFm5ONdHXSb1iHcWOumXxPZSQdDrahQig6Cb/nR/GACgw/y E1Dou1iOkaqpRaMX2QYs7rD/Vaf9srXnAyEOweXNZmOjU3j87DImncFUORB0x6l1 r0VMRcTBnigoSyYXV95XMnjpl0uQFvC1SPCpWsgWigZgQd5KO6G7fPgAV20D2deY unCUHiqAmZMcNyUALD4hkf5v00t5fQE/xAPixNb1GHCSR2fs4ho= =PirS -----END PGP SIGNATURE----- --xs+9IvWevLaxKUtW-- From unknown Sun Jun 15 08:45:49 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 10 Aug 2020 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator