From unknown Tue Jun 17 20:21:47 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#62489 <62489@debbugs.gnu.org> To: bug#62489 <62489@debbugs.gnu.org> Subject: Status: [PATCH] system: Remove obsolete GUIX_LOCPATH workaround. Reply-To: bug#62489 <62489@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:21:47 +0000 retitle 62489 [PATCH] system: Remove obsolete GUIX_LOCPATH workaround. reassign 62489 guix-patches submitter 62489 Bruno Victal severity 62489 normal tag 62489 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 27 12:56:56 2023 Received: (at submit) by debbugs.gnu.org; 27 Mar 2023 16:56:56 +0000 Received: from localhost ([127.0.0.1]:48334 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pgq9Q-0004ue-FA for submit@debbugs.gnu.org; Mon, 27 Mar 2023 12:56:56 -0400 Received: from lists.gnu.org ([209.51.188.17]:44910) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pgq9O-0004uW-IF for submit@debbugs.gnu.org; Mon, 27 Mar 2023 12:56:54 -0400 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 1pgq9O-0006us-1f for guix-patches@gnu.org; Mon, 27 Mar 2023 12:56:54 -0400 Received: from smtpm2.myservices.hosting ([185.26.105.233]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pgq9M-0001R8-8y for guix-patches@gnu.org; Mon, 27 Mar 2023 12:56:53 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm2.myservices.hosting (Postfix) with ESMTP id 01A7F20DE7 for ; Mon, 27 Mar 2023 18:56:40 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id A1EE98009A; Mon, 27 Mar 2023 18:56:40 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id sYFpIVMrIabx; Mon, 27 Mar 2023 18:56:40 +0200 (CEST) Received: from guix-nuc.home.arpa (bl9-119-177.dsl.telepac.pt [85.242.119.177]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 3399680079; Mon, 27 Mar 2023 18:56:40 +0200 (CEST) From: Bruno Victal To: guix-patches@gnu.org Subject: [PATCH] system: Remove obsolete GUIX_LOCPATH workaround. Date: Mon, 27 Mar 2023 17:56:14 +0100 Message-Id: <2ced3f32bcdcffee3983494d35a5a262f98b95ab.1679934713.git.mirai@makinata.eu> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 X-Debbugs-CC: ludo@gnu.org Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.105.233; envelope-from=mirai@makinata.eu; helo=smtpm2.myservices.hosting X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, 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: Bruno Victal 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 (--) * gnu/system.scm (operating-system-environment-variables): Do not set GUIX_LOCPATH. --- Tested with: make check-system TESTS="basic mcron mpd mympd" gnu/system.scm | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gnu/system.scm b/gnu/system.scm index 48cc68f449..c17c6e4e98 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -1201,15 +1201,7 @@ (define (operating-system-environment-variables os) ;; By default, applications that use D-Bus, such as Emacs, abort at startup ;; when /etc/machine-id is missing. Make sure these warnings are non-fatal. - ("DBUS_FATAL_WARNINGS" . "0") - - ;; XXX: Normally we wouldn't need to do this, but our glibc@2.23 package - ;; used to look things up in 'PREFIX/lib/locale' instead of - ;; '/run/current-system/locale' as was intended. Keep this hack around so - ;; that people who still have glibc@2.23-using packages in their profiles - ;; can use them correctly. - ;; TODO: Remove when glibc@2.23 is long gone. - ("GUIX_LOCPATH" . "/run/current-system/locale"))) + ("DBUS_FATAL_WARNINGS" . "0"))) ;; Ensure LST is a list of records and warn otherwise. (define-with-syntax-properties (ensure-setuid-program-list (lst properties)) -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 30 16:44:27 2023 Received: (at 62489-done) by debbugs.gnu.org; 30 Mar 2023 20:44:27 +0000 Received: from localhost ([127.0.0.1]:59544 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1phz8F-0004s4-8N for submit@debbugs.gnu.org; Thu, 30 Mar 2023 16:44:27 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49636) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1phz8C-0004rq-Vp for 62489-done@debbugs.gnu.org; Thu, 30 Mar 2023 16:44:25 -0400 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 1phz87-0001hP-3V; Thu, 30 Mar 2023 16:44:19 -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=Yw/fRLDVdhUf0VTfdDm4ra9g9EsoObxIrmmNtDCusGI=; b=cNcVBbn9tjvILje5S/TR uRNjSXKY22yONaCe90Po51EJX+1vsvtriPMnmvdLftUQj39SJDgdmAxpil8ANVYAbhkNTg7fTbtF5 mnMkLDD25PvPNXdqol6/lvMBxS7Tfqf8vI8OWdaNGRkMpPyCjLRUy1zpUbldCMCn46JsdGq2/ODUA ZdBRyDbvJtM9mFAaFXpqrS2UrDo/18q0d0QjcI3Q8BLmLDe8hx4vOfVaar1sRlhg+6t37YhaxqKeg tOUx78TKTQ9zdKUQUcsSttQLxJ5e/bzZJmDD1IAGj7amMgj7wN4Xoawk9Kqnd1xo907Q+Jao4HgVV 0ratDzmQXzTM1g==; 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 1phz86-0006NT-Id; Thu, 30 Mar 2023 16:44:18 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Bruno Victal Subject: Re: [bug#62489] [PATCH] system: Remove obsolete GUIX_LOCPATH workaround. References: <2ced3f32bcdcffee3983494d35a5a262f98b95ab.1679934713.git.mirai@makinata.eu> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: =?utf-8?Q?D=C3=A9cadi?= 10 Germinal an 231 de la =?utf-8?Q?R=C3=A9volution=2C?= jour du Couvoir X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Thu, 30 Mar 2023 22:44:17 +0200 In-Reply-To: <2ced3f32bcdcffee3983494d35a5a262f98b95ab.1679934713.git.mirai@makinata.eu> (Bruno Victal's message of "Mon, 27 Mar 2023 17:56:14 +0100") Message-ID: <87v8iihsv2.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-Debbugs-Envelope-To: 62489-done Cc: 62489-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 Bruno, Bruno Victal skribis: > * gnu/system.scm (operating-system-environment-variables): Do not set GUI= X_LOCPATH. Applied, thanks! Ludo=E2=80=99. From unknown Tue Jun 17 20:21:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 28 Apr 2023 11:24:18 +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