From unknown Sun Jun 22 08:04:42 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55000] [PATCH] gnu: Fix incorrect path in home-fish-service Resent-From: Maya Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 17 Apr 2022 21:37:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 55000 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55000@debbugs.gnu.org X-Debbugs-Original-To: "guix-patches@gnu.org" Reply-To: Maya Received: via spool by submit@debbugs.gnu.org id=B.165023141211039 (code B ref -1); Sun, 17 Apr 2022 21:37:02 +0000 Received: (at submit) by debbugs.gnu.org; 17 Apr 2022 21:36:52 +0000 Received: from localhost ([127.0.0.1]:37489 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ngCZg-0002ru-4U for submit@debbugs.gnu.org; Sun, 17 Apr 2022 17:36:52 -0400 Received: from lists.gnu.org ([209.51.188.17]:50766) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ngADp-0005Fv-8I for submit@debbugs.gnu.org; Sun, 17 Apr 2022 15:06:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37196) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ngADn-0005aI-Vf for guix-patches@gnu.org; Sun, 17 Apr 2022 15:06:08 -0400 Received: from mail-4318.protonmail.ch ([185.70.43.18]:36899) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ngADj-0007YJ-F4 for guix-patches@gnu.org; Sun, 17 Apr 2022 15:06:07 -0400 Date: Sun, 17 Apr 2022 19:05:48 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1650222353; bh=anmOWKo4JGQXVwM4PhUkiT5pv8zcwrPtYkEeHNUkMRE=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc:Date:Subject: Reply-To:Feedback-ID:Message-ID; b=XVZycPLC/eJ6cohcNUnBmPRhhBOdNAR6Rr64GiWpLLSx9ZR7Jn12Qh2hiCo5e1mr+ kCde9k1h3T+WTBU+tU6w+531q2SZ52hVsl1FgJltt7XawbMyaGo1qeaqhwsTql3yK6 So+eL8ZnBFGerlgYGn9lHh+eJ0X6dMttpHrkZvTVjeWO2nRZb1KgzY1ZEZUEgTkYf8 mXNpRn6J6we6wk25YHnYaf9aO8zx7xowaB8kYOLNCff9L2TuX+/zMwNfFgRMLqKPMH 6AvN9qgaHbRDtxVUC5NV1sn1ULtVhlpx3b8+XkO7KMkTb6iWzujzrk3GU9SymIhSD0 G7XyJRvdvNjMg== From: Maya Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.18; envelope-from=maya.omase@protonmail.com; helo=mail-4318.protonmail.ch 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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.2 (/) X-Mailman-Approved-At: Sun, 17 Apr 2022 17:36:49 -0400 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 (--) I haven't found any info on this and I wasn't sure if I should open a bug r= eport. I believe this is a bug in the home-fish-service, as guix home copie= s the configuration file to "~/config/fish/config.fish" but the path where = fish looks for is "~/.config/fish/config.fish" Other than that it functions correctly, it must've been a mistake as one ra= rely changes this file and once in the right place, it works perfectly. Wit= hout it though, the guix home is non-functional. Regards, Maya --- gnu/home/services/shells.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/home/services/shells.scm b/gnu/home/services/shells.scm index d96c951cd8..fd0a8397f6 100644 --- a/gnu/home/services/shells.scm +++ b/gnu/home/services/shells.scm @@ -586,7 +586,7 @@ (define-configuration home-fish-configuration serialize-fish-abbreviations)) (define (fish-files-service config) - `(("config/fish/config.fish" + `((".config/fish/config.fish" ,(mixed-text-file "fish-config.fish" #~(string-append "\ -- 2.35.1 From unknown Sun Jun 22 08:04:42 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: Maya Subject: bug#55000: closed (Re: bug#55000: [PATCH] gnu: Fix incorrect path in home-fish-service) Message-ID: References: <874k2cc1j7.fsf@gnu.org> X-Gnu-PR-Message: they-closed 55000 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 55000@debbugs.gnu.org Date: Thu, 28 Apr 2022 22:00:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1651183203-941-1" This is a multi-part message in MIME format... ------------=_1651183203-941-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #55000: [PATCH] gnu: Fix incorrect path in home-fish-service 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 55000@debbugs.gnu.org. --=20 55000: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D55000 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1651183203-941-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 55000-done) by debbugs.gnu.org; 28 Apr 2022 21:59:34 +0000 Received: from localhost ([127.0.0.1]:50217 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nkCAg-0000ED-KK for submit@debbugs.gnu.org; Thu, 28 Apr 2022 17:59:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58956) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nkCAe-0000Dz-Be for 55000-done@debbugs.gnu.org; Thu, 28 Apr 2022 17:59:32 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:32830) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nkCAY-0004Ev-VH; Thu, 28 Apr 2022 17:59:26 -0400 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=TofojNexz/wpr0WPUNkdx8KlqxfcGylASln9U3x3vYY=; b=Wc4syvBlqu3ZTdzMtCGs 0TNkI8mt2jc7noaTbsw7xe6+h+jahyjAY8hvnzusLGhdA8OGM/3FvM26IxOJnXKzBTql+6KgBRMzU DuyAJl9eZal1HvCc/dbyPnn/lQHdP+jw0+KrS+FNbe5EC8eROGsYrB5nOEz873F0uGNkUpeZYy7qv cKzgjL+GPh0VVY7HDb3y6jDIVNLuBrAahvMgVbPOceG6eg0aDxSYPurX7TG84vKTq2J6++sNzXbED gtPG+B8QuZWckYpgREP0xWM4nBmpq7PYWujdrDrlKLwH0K0T3oScLU7iNbc8hiUM+duy73xozq/2J xJVo87BBjNe6Kg==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:56720 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nkCAY-0006cX-HH; Thu, 28 Apr 2022 17:59:26 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Maya Subject: Re: bug#55000: [PATCH] gnu: Fix incorrect path in home-fish-service References: Date: Thu, 28 Apr 2022 23:59:24 +0200 In-Reply-To: (Maya's message of "Sun, 17 Apr 2022 19:05:48 +0000") Message-ID: <874k2cc1j7.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.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-Debbugs-Envelope-To: 55000-done Cc: 55000-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: -3.3 (---) Hi, Maya skribis: > I haven't found any info on this and I wasn't sure if I should open a bug= report. I believe this is a bug in the home-fish-service, as guix home cop= ies the configuration file to "~/config/fish/config.fish" but the path wher= e fish looks for is "~/.config/fish/config.fish" > > Other than that it functions correctly, it must've been a mistake as one = rarely changes this file and once in the right place, it works perfectly. W= ithout it though, the guix home is non-functional. Indeed. This is because =E2=80=98home-files-service-type=E2=80=99 no longe= r prepends =E2=80=9C.=E2=80=9D to file names. Applied now, thanks! Ludo=E2=80=99. PS: And congrats on getting bug #55000. :-) ------------=_1651183203-941-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 17 Apr 2022 21:36:52 +0000 Received: from localhost ([127.0.0.1]:37489 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ngCZg-0002ru-4U for submit@debbugs.gnu.org; Sun, 17 Apr 2022 17:36:52 -0400 Received: from lists.gnu.org ([209.51.188.17]:50766) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ngADp-0005Fv-8I for submit@debbugs.gnu.org; Sun, 17 Apr 2022 15:06:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37196) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ngADn-0005aI-Vf for guix-patches@gnu.org; Sun, 17 Apr 2022 15:06:08 -0400 Received: from mail-4318.protonmail.ch ([185.70.43.18]:36899) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ngADj-0007YJ-F4 for guix-patches@gnu.org; Sun, 17 Apr 2022 15:06:07 -0400 Date: Sun, 17 Apr 2022 19:05:48 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1650222353; bh=anmOWKo4JGQXVwM4PhUkiT5pv8zcwrPtYkEeHNUkMRE=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc:Date:Subject: Reply-To:Feedback-ID:Message-ID; b=XVZycPLC/eJ6cohcNUnBmPRhhBOdNAR6Rr64GiWpLLSx9ZR7Jn12Qh2hiCo5e1mr+ kCde9k1h3T+WTBU+tU6w+531q2SZ52hVsl1FgJltt7XawbMyaGo1qeaqhwsTql3yK6 So+eL8ZnBFGerlgYGn9lHh+eJ0X6dMttpHrkZvTVjeWO2nRZb1KgzY1ZEZUEgTkYf8 mXNpRn6J6we6wk25YHnYaf9aO8zx7xowaB8kYOLNCff9L2TuX+/zMwNfFgRMLqKPMH 6AvN9qgaHbRDtxVUC5NV1sn1ULtVhlpx3b8+XkO7KMkTb6iWzujzrk3GU9SymIhSD0 G7XyJRvdvNjMg== To: "guix-patches@gnu.org" From: Maya Subject: [PATCH] gnu: Fix incorrect path in home-fish-service Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.18; envelope-from=maya.omase@protonmail.com; helo=mail-4318.protonmail.ch 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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 17 Apr 2022 17:36:49 -0400 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: , Reply-To: Maya Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) I haven't found any info on this and I wasn't sure if I should open a bug r= eport. I believe this is a bug in the home-fish-service, as guix home copie= s the configuration file to "~/config/fish/config.fish" but the path where = fish looks for is "~/.config/fish/config.fish" Other than that it functions correctly, it must've been a mistake as one ra= rely changes this file and once in the right place, it works perfectly. Wit= hout it though, the guix home is non-functional. Regards, Maya --- gnu/home/services/shells.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/home/services/shells.scm b/gnu/home/services/shells.scm index d96c951cd8..fd0a8397f6 100644 --- a/gnu/home/services/shells.scm +++ b/gnu/home/services/shells.scm @@ -586,7 +586,7 @@ (define-configuration home-fish-configuration serialize-fish-abbreviations)) (define (fish-files-service config) - `(("config/fish/config.fish" + `((".config/fish/config.fish" ,(mixed-text-file "fish-config.fish" #~(string-append "\ -- 2.35.1 ------------=_1651183203-941-1--