From unknown Thu Aug 14 21:54:55 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#59453 <59453@debbugs.gnu.org> To: bug#59453 <59453@debbugs.gnu.org> Subject: Status: [PATCH core-updates] gnu: mesa: Fix library paths in Vulkan layer manifests. Reply-To: bug#59453 <59453@debbugs.gnu.org> Date: Fri, 15 Aug 2025 04:54:55 +0000 retitle 59453 [PATCH core-updates] gnu: mesa: Fix library paths in Vulkan l= ayer manifests. reassign 59453 guix-patches submitter 59453 Kaelyn Takata severity 59453 normal tag 59453 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 21 14:10:12 2022 Received: (at submit) by debbugs.gnu.org; 21 Nov 2022 19:10:12 +0000 Received: from localhost ([127.0.0.1]:48854 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oxCBH-0001Fg-UK for submit@debbugs.gnu.org; Mon, 21 Nov 2022 14:10:12 -0500 Received: from lists.gnu.org ([209.51.188.17]:40536) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oxCBG-0001FV-1q for submit@debbugs.gnu.org; Mon, 21 Nov 2022 14:10:11 -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 1oxCBF-0006za-0p for guix-patches@gnu.org; Mon, 21 Nov 2022 14:10:09 -0500 Received: from mail-40134.protonmail.ch ([185.70.40.134]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxCBC-0006mw-8x for guix-patches@gnu.org; Mon, 21 Nov 2022 14:10:08 -0500 Date: Mon, 21 Nov 2022 19:09:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1669057795; x=1669316995; bh=viG4+WRfnocCbqD2OLc5rHHtbYltWwNN8xgOCZgYQwM=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=PDdb17AIjJI4+CeoZX2dltowAaEUxPYLWkajNq2lrmsJp/ZIOOOgk8IBIlD71uW5B iX9EtHK0vIbIELi1CLZC7Zv/x/7YNM8MjONrsTmCvR48uoKnNKcFM/w7DzeAX4VhzG w9HM6Pyhj7xyA+39Jo6idVvhqQZOBIawixyUEuPEUqlTHO/u5ywfQ+VMw79ndJKhkL J5NJ/mK7tKm5fCsIIVA4BxXIEgY2uSfUEjnt6ymGxu7ZOnYkdGJWnmwgPcaPxyTC6/ 0zMJPTOEY6ozJKDi7/tJHXieH9muq9lC5eYculgBgwpFNXFC9fiHi7/XowNkx8Vm3M BhXES9F7aNhNg== To: guix-patches@gnu.org From: Kaelyn Takata Subject: [PATCH core-updates] gnu: mesa: Fix library paths in Vulkan layer manifests. Message-ID: <4782cd33fae4a0f5e120dab213753d9d51b6d94a.1669057759.git.kaelyn.alexi@protonmail.com> Feedback-ID: 34709329:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.134; envelope-from=kaelyn.alexi@protonmail.com; helo=mail-40134.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, SPF_HELO_PASS=-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: Kaelyn Takata 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/packages/gl.scm (mesa): Fix library paths in Vulkan layer manifests. --- gnu/packages/gl.scm | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index dd62fac13e..c26a51cb32 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -488,7 +488,28 @@ (define-public mesa file) (symlink reference file))) others)))) - (delete-duplicates inodes)))))))) + (delete-duplicates inodes))))) + (add-after 'install 'set-layer-path-in-manifests + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (implicit-path (string-append + out + "/share/vulkan/implicit_layer.d/")) + (explicit-path (string-append + out + "/share/vulkan/explicit_layer.d/")) + (fix-layer-path + (lambda (layer-name) + (let* ((explicit (string-append explicit-path layer= -name ".json")) + (implicit (string-append implicit-path layer= -name ".json")) + (manifest (if (file-exists? explicit) + explicit + implicit))) + (substitute* manifest + (((string-append "\"lib" layer-name ".so\"")) + (string-append "\"" out "/lib/lib" layer-name= ".so\""))))))) + (for-each fix-layer-path '("VkLayer_MESA_device_select" + "VkLayer_MESA_overlay")))))))) (home-page "https://mesa3d.org/") (synopsis "OpenGL and Vulkan implementations") (description "Mesa is a free implementation of the OpenGL and Vulkan base-commit: affaacf4f46639dcc8239a438cad11c2a6ef6c9a -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 21 10:41:58 2023 Received: (at 59453) by debbugs.gnu.org; 21 Jan 2023 15:41:58 +0000 Received: from localhost ([127.0.0.1]:49558 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJG0E-0004VO-HT for submit@debbugs.gnu.org; Sat, 21 Jan 2023 10:41:58 -0500 Received: from mail-4322.protonmail.ch ([185.70.43.22]:28475) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJG0C-0004V9-Cv for 59453@debbugs.gnu.org; Sat, 21 Jan 2023 10:41:57 -0500 Date: Sat, 21 Jan 2023 15:41:42 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1674315710; x=1674574910; bh=PNH+trKS28VEBEnpj+OfZZ2uYmAYz5D6VkFuZ+lJpzY=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=mfqxvmvlrywzHCZRSMD60jAK+7zaJg1EHREZ8ycyLMncnqswnea793hX7HMHCxA9U HyfKTldBbUqu/7ENAwmoff3fam3OublArGZm7+fsBVjNs1GUAQ5RfqD2jA3wb4TRa3 hHMBuW8kCQcc9Z+QVCAehIuPez2ofGSgP8dneVH7h3YQUgApj+QYJ46wKkqdc4VQ5J TuF7faJE4KWBCrWSdbpigZZXdJixzzhaTyuzd0kJ5jyJsTcBmyjOYDAoGAG3czwMA5 xlBxkSj7eAEA5E0muoU9/7DNukjME+kQVbiBlrfvz4teShP6f+UmLF0T/3VZT8iAPc wqRGe560yonrw== To: guix-devel From: Kaelyn Subject: [bug#59453] [PATCH core-updates] gnu: mesa: Fix library paths in Vulkan layer manifests. Message-ID: <4dVVGwu7NrOi7vgSSPfIRkP6EzAItjcM6cvsIsi6Cv1QnhDjpXdvFOlTOKq8nShmNEVvogtz3vmRdl-dd-sD2yfv7qLPlrvvxa4LBb20_88=@protonmail.com> Feedback-ID: 34709329:user:proton 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: 59453 Cc: "59453@debbugs.gnu.org" <59453@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 (-) Hi Guix devs, Now that it's been a couple of months, I wanted to bump my core-updates pat= ch to Mesa which fixes the library paths in Mesa's Vulkan layer manifest fi= les (https://issues.guix.gnu.org/59453). The patch also resolves https://is= sues.guix.gnu.org/58251. Cheers, Kaelyn From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 21 11:16:38 2023 Received: (at 59453) by debbugs.gnu.org; 21 Jan 2023 16:16:38 +0000 Received: from localhost ([127.0.0.1]:49626 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJGXm-0005MM-2q for submit@debbugs.gnu.org; Sat, 21 Jan 2023 11:16:38 -0500 Received: from smtpmciv4.myservices.hosting ([185.26.107.240]:49140) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJGXk-0005ME-My for 59453@debbugs.gnu.org; Sat, 21 Jan 2023 11:16:37 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpmciv4.myservices.hosting (Postfix) with ESMTP id 2B6BB207F8; Sat, 21 Jan 2023 17:16:31 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id BFBA980093; Sat, 21 Jan 2023 17:16:31 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 0HYKq6b8EExB; Sat, 21 Jan 2023 17:16:30 +0100 (CET) Received: from [192.168.1.239] (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 14DA880099; Sat, 21 Jan 2023 17:16:29 +0100 (CET) Message-ID: <193fa946-8ac2-823d-78fd-6210199cf804@makinata.eu> Date: Sat, 21 Jan 2023 16:16:28 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [bug#59453] [PATCH core-updates] gnu: mesa: Fix library paths in Vulkan layer manifests. Content-Language: en-US To: Kaelyn Takata References: <4782cd33fae4a0f5e120dab213753d9d51b6d94a.1669057759.git.kaelyn.alexi@protonmail.com> From: Bruno Victal In-Reply-To: <4782cd33fae4a0f5e120dab213753d9d51b6d94a.1669057759.git.kaelyn.alexi@protonmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.1 (-) X-Debbugs-Envelope-To: 59453 Cc: 59453@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: -2.1 (--) On 2022-11-21 19:09, Kaelyn Takata via Guix-patches via wrote: > * gnu/packages/gl.scm (mesa): Fix library paths in Vulkan layer manifests. > --- > gnu/packages/gl.scm | 23 ++++++++++++++++++++++- > 1 file changed, 22 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm > index dd62fac13e..c26a51cb32 100644 > --- a/gnu/packages/gl.scm > +++ b/gnu/packages/gl.scm > @@ -488,7 +488,28 @@ (define-public mesa > file) > (symlink reference file))) > others)))) > - (delete-duplicates inodes)))))))) > + (delete-duplicates inodes))))) > + (add-after 'install 'set-layer-path-in-manifests > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) Using G-Expressions would be better here, since you're modifying this package, you could take the opportunity to modernize/rewrite this package definition using G-Expressions. (Keep the rewrite and this fix in separate commits) > + (implicit-path (string-append > + out > + "/share/vulkan/implicit_layer.d/")) > + (explicit-path (string-append > + out > + "/share/vulkan/explicit_layer.d/")) > + (fix-layer-path > + (lambda (layer-name) > + (let* ((explicit (string-append explicit-path layer-name ".json")) > + (implicit (string-append implicit-path layer-name ".json")) > + (manifest (if (file-exists? explicit) > + explicit > + implicit))) > + (substitute* manifest > + (((string-append "\"lib" layer-name ".so\"")) > + (string-append "\"" out "/lib/lib" layer-name ".so\""))))))) > + (for-each fix-layer-path '("VkLayer_MESA_device_select" > + "VkLayer_MESA_overlay")))))))) > (home-page "https://mesa3d.org/") > (synopsis "OpenGL and Vulkan implementations") > (description "Mesa is a free implementation of the OpenGL and Vulkan > > base-commit: affaacf4f46639dcc8239a438cad11c2a6ef6c9a > -- > 2.38.1 > > > > > From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 13:21:08 2023 Received: (at 59453) by debbugs.gnu.org; 12 Feb 2023 18:21:08 +0000 Received: from localhost ([127.0.0.1]:46706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRGyJ-000453-KF for submit@debbugs.gnu.org; Sun, 12 Feb 2023 13:21:08 -0500 Received: from mail-40131.protonmail.ch ([185.70.40.131]:49635) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRGyE-00043t-AQ for 59453@debbugs.gnu.org; Sun, 12 Feb 2023 13:21:06 -0500 Date: Sun, 12 Feb 2023 18:20:49 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1676226056; x=1676485256; bh=YxBYurU5TPA78HeQNhJzVLFsvwPcecODQrIrQWb27+c=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=rJYtr76QEWtfsdPw7fsUsrMDcRp1mOvIx1Kmu+mgmYehgvssfGQReKIbGjisgutD2 8jgQyo2uD7aSPmb+3lyn46dbWAJvJULVqrWMK+/XT/DzmhlRUGI5qcsTP0Q6YUYFfQ By1BJH4lW3ermX8vl/Fc6xNnmvEq8+9oBfn3MCrJ/tD/TlSZFVrqRmA56w1QLzt8uD YnQArL0dl3R516XjOiPeJbBBk/cxT4IK7tmMMXDRGIvLh2GR2c4NX5/GimrC5mKRhw X23STpYp38/tFKGArUnEhg5FbxY2uw753RxzRVCWup0WdgpCRRbnw/uPT3k2XzIbkg Z1//rHFy/3AuQ== To: Bruno Victal From: Kaelyn Subject: Re: [bug#59453] [PATCH core-updates] gnu: mesa: Fix library paths in Vulkan layer manifests. Message-ID: In-Reply-To: <193fa946-8ac2-823d-78fd-6210199cf804@makinata.eu> References: <4782cd33fae4a0f5e120dab213753d9d51b6d94a.1669057759.git.kaelyn.alexi@protonmail.com> <193fa946-8ac2-823d-78fd-6210199cf804@makinata.eu> Feedback-ID: 34709329:user:proton 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: 59453 Cc: 59453@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 (-) ------- Original Message ------- On Saturday, January 21st, 2023 at 4:16 PM, Bruno Victal wrote: > > On 2022-11-21 19:09, Kaelyn Takata via Guix-patches via wrote: > > > * gnu/packages/gl.scm (mesa): Fix library paths in Vulkan layer manifes= ts. > > --- > > gnu/packages/gl.scm | 23 ++++++++++++++++++++++- > > 1 file changed, 22 insertions(+), 1 deletion(-) > > > > diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm > > index dd62fac13e..c26a51cb32 100644 > > --- a/gnu/packages/gl.scm > > +++ b/gnu/packages/gl.scm > > @@ -488,7 +488,28 @@ (define-public mesa > > file) > > (symlink reference file))) > > others)))) > > - (delete-duplicates inodes)))))))) > > + (delete-duplicates inodes))))) > > + (add-after 'install 'set-layer-path-in-manifests > > + (lambda* (#:key outputs #:allow-other-keys) > > + (let* ((out (assoc-ref outputs "out")) > > > Using G-Expressions would be better here, since you're modifying this pac= kage, > you could take the opportunity to modernize/rewrite this package definiti= on using G-Expressions. > (Keep the rewrite and this fix in separate commits) Given the complexity of the mesa package definition including the numerous = matches on %current-system, I'm not confident or comfortable in my ability = to rewrite mesa's package-arguments to use gexps. I certainly don't want to= delay fixing the Vulkan layer library paths on core-updates packages even = longer than it already has been trying to rewrite a complex core package. Cheers, Kaelyn > > > + (implicit-path (string-append > > + out > > + "/share/vulkan/implicit_layer.d/")) > > + (explicit-path (string-append > > + out > > + "/share/vulkan/explicit_layer.d/")) > > + (fix-layer-path > > + (lambda (layer-name) > > + (let* ((explicit (string-append explicit-path layer-name ".json")) > > + (implicit (string-append implicit-path layer-name ".json")) > > + (manifest (if (file-exists? explicit) > > + explicit > > + implicit))) > > + (substitute* manifest > > + (((string-append "\"lib" layer-name ".so\"")) > > + (string-append "\"" out "/lib/lib" layer-name ".so\""))))))) > > + (for-each fix-layer-path '("VkLayer_MESA_device_select" > > + "VkLayer_MESA_overlay")))))))) > > (home-page "https://mesa3d.org/") > > (synopsis "OpenGL and Vulkan implementations") > > (description "Mesa is a free implementation of the OpenGL and Vulkan > > > > base-commit: affaacf4f46639dcc8239a438cad11c2a6ef6c9a > > -- > > 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 19 10:42:15 2023 Received: (at 59453) by debbugs.gnu.org; 19 Apr 2023 14:42:15 +0000 Received: from localhost ([127.0.0.1]:35532 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pp90g-0006Ii-My for submit@debbugs.gnu.org; Wed, 19 Apr 2023 10:42:15 -0400 Received: from mail-4322.protonmail.ch ([185.70.43.22]:52257) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pp90c-0006IT-33 for 59453@debbugs.gnu.org; Wed, 19 Apr 2023 10:42:13 -0400 Date: Wed, 19 Apr 2023 14:41:57 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1681915324; x=1682174524; bh=TXMgR9oklyiQZZqqAiBCJ4aPqED9iU/36WiGcTx90V4=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=SzgBeCP7hcfNGhlafZBnuUOycNAOfkRLveoyQKWlD/7mop4Z7BplCInlb58UVcS7w ypjadqimOwFZg1YMi35cMBLXyQ+sODKLyYGgT8dtK3RVNeCqlkyPfpuOzWt72KvyQE ICqnz4yuXxtmuBqm4K1FmKeaiFCo7rSMybWfaneo5ahPhFUf392uq87LuFdqrx1nWh cEgp6Sgk3RrkbXqUt8/nYbqNUQUc8Jw9983of1UJyKQI5nst7eagSW+ar88hiQA8ZZ HXsoo0jgCYaBtou7h7ktoYKLpp0Jzw5Akt4aIni5axuJpgFa6LTz1lri6rKOF/PSdL EXApTlsSbW7FQ== To: guix-devel , Andreas Enge From: Kaelyn Subject: Mesa vulkan layer path fix for core-updates Message-ID: Feedback-ID: 34709329:user:proton 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: 59453 Cc: "59453@debbugs.gnu.org" <59453@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 (-) Hi, Some time back I mailed in https://issues.guix.gnu.org/59453 to fix an issu= e with the manifests for the vulkan layers that ship with mesa. Basically t= he error is that the manifests don't include the store path to the referenc= ed libraries, only the file name. An example the error can be seen by runni= ng "vulkaninfo &| less", where this message is printed a few times: ERROR: [Loader Message] Code 0 : libVkLayer_MESA_device_select.so: cannot o= pen shared object file: No such file or directory While I know it is late in the process of preparing core-updates for mergin= g into master, I wanted to ask if it would be possible to have the patch ad= dressed prior to the merge? I just encountered the error message again afte= r having a need to check vulkaninfo and it reminded me of the patch. (The v= ulkan-validationlayers package that was recently merged to master from stag= ing includes a similar phase for fixing the layer object path in its layer = manifest.) Thanks, Kaelyn From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 19 11:26:56 2023 Received: (at 59453) by debbugs.gnu.org; 19 Apr 2023 15:26:56 +0000 Received: from localhost ([127.0.0.1]:35562 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pp9hw-0007bR-2F for submit@debbugs.gnu.org; Wed, 19 Apr 2023 11:26:56 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:37978) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pp9hr-0007b9-WE for 59453@debbugs.gnu.org; Wed, 19 Apr 2023 11:26:54 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 3992E26E; Wed, 19 Apr 2023 17:26:46 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id O7R2Vw9mFd5b; Wed, 19 Apr 2023 17:26:45 +0200 (CEST) Received: from jurong (unknown [IPv6:2001:861:c4:f2f0::c64]) by hera.aquilenet.fr (Postfix) with ESMTPSA id AFB09F6; Wed, 19 Apr 2023 17:26:45 +0200 (CEST) Date: Wed, 19 Apr 2023 17:26:44 +0200 From: Andreas Enge To: Kaelyn Subject: Re: Mesa vulkan layer path fix for core-updates Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 59453 Cc: guix-devel , "59453@debbugs.gnu.org" <59453@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 (-) Hello, thanks for bringing this back to our attention! Am Wed, Apr 19, 2023 at 02:41:57PM +0000 schrieb Kaelyn: > While I know it is late in the process of preparing core-updates for merging into master, I wanted to ask if it would be possible to have the patch addressed prior to the merge? Given how many packages depend on mesa and their importance, I think it would be safer to postpone the fix until after the merge; be it in a dedicated mesa feature branch that could quickly be merged afterwards, or better yet regroup other changes in this area. (Searching for open mesa packages on issues.guix.gnu.org returns quite a few matches, this could be a good occasion to sort them out.) Andreas From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 18 12:15:38 2023 Received: (at control) by debbugs.gnu.org; 18 Jun 2023 16:15:38 +0000 Received: from localhost ([127.0.0.1]:54883 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qAv3y-0005xL-Fb for submit@debbugs.gnu.org; Sun, 18 Jun 2023 12:15:38 -0400 Received: from mail-40133.protonmail.ch ([185.70.40.133]:34215) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qAv3w-0005x4-LI for control@debbugs.gnu.org; Sun, 18 Jun 2023 12:15:37 -0400 Date: Sun, 18 Jun 2023 16:15:16 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1687104929; x=1687364129; bh=uSItCbHW4JyrvSy5Wt4rtJNtjnUuTs9lvz3SPE3piOg=; h=Date:To:From:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=J4MiaG4cQuwoYUIwydZghFhAQpaZJzK8LCLkwJuxZAaV7iXjNiPKvJQ4kfUunt9V6 JxDUbNJfAllufQVck8TNMPah6BBLv+oyw0nXEil6t6+eJuwx31gia8s8hr9Iaof+OH G7XNydEYqPcQL8GpNVo/SGMDkETpsVVMG1oskRHgwwO4iipvgdn5xfIbdQK3jh5WmU rfC/TfKlSkajxAEDS/eWaC4bAfXSAkk8gxdTLeDMAAjruR2bCjHt/wnEssw7NBPpc8 CoAQD3GH4BCH98ycx5aT0HHdIvct3dXuGxeaaOEm5G9o/UOfSzCh+PuY943HDVLnBF kViMfFzw+/zbg== To: control@debbugs.gnu.org From: Kaelyn Subject: (No Subject) Message-ID: In-Reply-To: References: Feedback-ID: 34709329:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close 59453 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 SLIGHTLY_BAD_SUBJECT Subject contains something slightly spammy 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (kaelyn.alexi[at]protonmail.com) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 RCVD_IN_MSPIKE_H5 RBL: Excellent reputation (+5) [185.70.40.133 listed in wl.mailspike.net] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 TVD_SPACE_RATIO No description available. 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: control 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 (+) close 59453 From unknown Thu Aug 14 21:54:55 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, 17 Jul 2023 11:24:09 +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