From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 15:46:43 2022 Received: (at submit) by debbugs.gnu.org; 3 Aug 2022 19:46:43 +0000 Received: from localhost ([127.0.0.1]:49990 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJKKJ-0003jt-92 for submit@debbugs.gnu.org; Wed, 03 Aug 2022 15:46:43 -0400 Received: from lists.gnu.org ([209.51.188.17]:48660) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJKKF-0003ji-G2 for submit@debbugs.gnu.org; Wed, 03 Aug 2022 15:46:42 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55562) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oJKKF-0004Mv-AF for guix-patches@gnu.org; Wed, 03 Aug 2022 15:46:39 -0400 Received: from knopi.disroot.org ([178.21.23.139]:55196) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oJKKC-0001iS-OO for guix-patches@gnu.org; Wed, 03 Aug 2022 15:46:38 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id BBC8B40DCD; Wed, 3 Aug 2022 21:46:33 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id q_2KlZ43wuQF; Wed, 3 Aug 2022 21:46:32 +0200 (CEST) From: "(" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659555991; bh=o0+KwwpCydGS+Ns8NOLST7GqkmPkKgNw7f0LmoqXFPk=; h=From:To:Cc:Subject:Date; b=HzqRMMACw3DFsqYhL6DP5tcbTEph2OQbX1legJnj+KRfTtGXkyX2DS5Qpz+m7sWSz NfVEn05ON/Yhzi2qSUJlChwjBRTjHCGPHSjCl29oMAiiAETgEzDTOYGXTf8eOEhmMa Dp1tj18a6ra5bxWvdw2faYOZdaHHWA4XUKkZznLs0kxRrGB342aXfYs4jdRJ+eZhPV f2WWPcILmCIx6cPalR19Cwx7wYnS7d8LmaC6kca5DT3M0zfTl/UB2+kqegKeZcceQG JlziqPTBbuhGta9rPcx+lP6ZcMtU+gnRuJXrFpRbdFRlIYb2slozRVjO6Pph9k+aca bfXIpwWqFHsZg== To: guix-patches@gnu.org Subject: [PATCH] gnu: packages: Add glad2. Date: Wed, 3 Aug 2022 20:46:25 +0100 Message-Id: <20220803194625.6770-1-paren@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=paren@disroot.org; helo=knopi.disroot.org 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, SPF_HELO_NONE=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: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: "\(" 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.4 (--) * gnu/packages/gl.scm (glad2): New variable. --- gnu/packages/gl.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index c740c087dd..3539b66a2a 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2021 Ivan Gankevich ;;; Copyright © 2021 John Kehayias ;;; Copyright © 2022 Petr Hodina +;;; Copyright © 2022 ( ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,6 +67,7 @@ (define-module (gnu packages gl) #:use-module (guix build-system meson) #:use-module (guix build-system python) #:use-module (guix build-system waf) + #:use-module (guix gexp) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) @@ -215,6 +217,50 @@ (define-public glad generate a GL/GLES/EGL/GLX/WGL loader tailored for specific requirements.") (license license:expat))) +(define-public glad2 + (let ((commit "b1051403cf81b984f9fc11cc5916adb5afd34766") + (revision "2")) + (package + (name "glad2") + (version (git-version "0.1.36" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Dav1dde/glad") + (commit commit))) + (sha256 + (base32 + "03q3gxg2z9lpx7hqac2fd3ld94avhkg4mdxjfjgrgh97kyx9knpm")))) + (build-system python-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (add-after 'install 'install-cmake-plugin + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (cmake-dir (string-append + out "/share/cmake/glad"))) + (mkdir-p cmake-dir) + (copy-file "cmake/CMakeLists.txt" + (string-append cmake-dir + "/glad.cmake")))))))) + (inputs (list python-jinja2)) + (home-page "https://glad.sh") + (synopsis "Multi-language OpenGL/Vulkan loader generator") + (description + "GLAD 2 is an improved iteration of the GLAD graphics API loader +generator. It generates bindings to Vulkan and GL-related APIs from the +official Khronos specifications. Among the improvements are: +@enumerate +@item Better EGL, GLX, and WGL support +@item Support for generating Vulkan bindings +@item A Rust frontend +@item More generator options (such as an option to make GLAD header-only) +@item Improvements to CMake support +@item Better API +@end enumerate") + (license license:expat)))) + (define-public s2tc (package (name "s2tc") -- 2.37.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 11 10:19:26 2022 Received: (at 56959) by debbugs.gnu.org; 11 Aug 2022 14:19:26 +0000 Received: from localhost ([127.0.0.1]:54727 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oM91x-0007yg-V2 for submit@debbugs.gnu.org; Thu, 11 Aug 2022 10:19:26 -0400 Received: from mail-4323.proton.ch ([185.70.43.23]:19799) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oM91t-0007yP-FB for 56959@debbugs.gnu.org; Thu, 11 Aug 2022 10:19:24 -0400 Date: Thu, 11 Aug 2022 14:19:08 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jeandudey.tech; s=protonmail3; t=1660227554; x=1660486754; bh=Xz890Mb2hS7HILn0c+mBW+vfsfJX7cgQCKRjnDQ0lIk=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=XdlTmztoBfJyaKReH15wpP77dGYwqNVwWOG+mYAxE6KLOrw1REC77pUM0CsC8cTah f873duVcF7kLvAT3vyV7pGkxHFNTtMvWBgYyoyAe1yZcWzHwjlLe2YGqgbBatCADl0 f/1rTYJARhuDC6H5+8VGdtTqex3HcZzCb5K49wSfNGPDf21SjiadqtKffrcPPSElQa eXTJjHwDkLtUgkzkAXk0Khad6PjkTLKQ9JBAK4Ab8fGEW33qpQrUVfkNqtKB3fmI8p bqtiw8Gs+1QEMYorfTbN+XHT3wAqI2qmUCZ/k2XEYdtfSDTKO3DW57gRabDMSnw2M+ 3HCrJE0nlfOBg== To: "56959@debbugs.gnu.org" <56959@debbugs.gnu.org> From: Jean Pierre De Jesus DIAZ Subject: [PATCH] gnu: packages: Add glad2. Message-ID: Feedback-ID: 20187791: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: 56959 Cc: "paren@disroot.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: , Reply-To: Jean Pierre De Jesus DIAZ Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello, Small review: >+ (lambda* (#:key outputs #:allow-other-keys) >+ (let* ((out (assoc-ref outputs "out")) >+ (cmake-dir (string-append >+ out "/share/cmake/glad"))) --8<---------------cut here---------------start------------->8--- (lambda _ (let ((cmake-dir (string-append #$output "/share/cmake/glad"))) --8<---------------cut here---------------start------------->8--- >+generator. It generates bindings to Vulkan and GL-related APIs from the >+official Khronos specifications. Among the improvements are: Missing the additional space after the dots. =E2=80=94 Jean-Pierre De Jesus DIAZ From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 12 02:51:05 2022 Received: (at 56959) by debbugs.gnu.org; 12 Aug 2022 06:51:05 +0000 Received: from localhost ([127.0.0.1]:55506 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oMOVd-0000Og-KP for submit@debbugs.gnu.org; Fri, 12 Aug 2022 02:51:05 -0400 Received: from knopi.disroot.org ([178.21.23.139]:52344) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oMOVZ-0000O6-Ma for 56959@debbugs.gnu.org; Fri, 12 Aug 2022 02:51:04 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 5CAD64015F; Fri, 12 Aug 2022 08:51:00 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vUHhk76pvZnX; Fri, 12 Aug 2022 08:50:59 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1660287059; bh=sxNhL6KkvIyFnCT3wJlA32g1JrQ2+xcFUmKv1Z8zlZw=; h=Date:Subject:From:To:References:In-Reply-To; b=dLjKzECctCoMRFv2Uy8i/a292QhWnsZSIrx/Hl92jXpqJT1of+tsx/BUPF8niVOBH NkCCyLi06bF36v1RCMM2Zq6EGK4JvRvy1K8pugMQHB9LCk4uiYiL0GBu1RWA3J9vJ6 jfRYvbNI9O5frdwR5sXoop0a3Bq8O9d585rzijzJXgvNB4jR+API2TOrTUm4Z5jeXw OwTzDyHr0evtZpN034HQFd5sV7CN1b4s+6R8n85edcyEyOZdqWfZq963C0t92JQPbx GHwWB6G8PwoCEPO1Yy5+S4XtuTWAfxRA2/HGes7LEDmWmgjLhbM5fIIUR0eb0xzB1c Z4cC0D54+WKcw== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Fri, 12 Aug 2022 07:50:58 +0100 Message-Id: Subject: Re: [PATCH] gnu: packages: Add glad2. From: "(" To: "Jean Pierre De Jesus DIAZ" , "56959@debbugs.gnu.org" <56959@debbugs.gnu.org> References: In-Reply-To: X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 56959 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 (-) Thanks for the mini-review! I'll send a second patch with those corrections shortly. -- ( From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 12 03:00:04 2022 Received: (at 56959) by debbugs.gnu.org; 12 Aug 2022 07:00:04 +0000 Received: from localhost ([127.0.0.1]:55518 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oMOeJ-0000dt-U9 for submit@debbugs.gnu.org; Fri, 12 Aug 2022 03:00:04 -0400 Received: from knopi.disroot.org ([178.21.23.139]:47664) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oMOeI-0000dK-1n for 56959@debbugs.gnu.org; Fri, 12 Aug 2022 03:00:02 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 46A914385D; Fri, 12 Aug 2022 09:00:01 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RGYOqmHCDsdp; Fri, 12 Aug 2022 08:59:59 +0200 (CEST) From: "(" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1660287599; bh=ROLLPY0cMtouJ/+wyN2t4mFWbYxYl8msVmScEanLzQY=; h=From:To:Cc:Subject:Date; b=Q8UZk97cNPNWoZlnGHRvpHhiW5hhudVmZViAbOcZsSbmGQIILSTn6O8dPfDBO+bPg igQdg9e4pIYheoCqVj43beDSJqp/nYcbnSXyOwp5+L0V9vTzP54SkDXWwU8qQfnRGV k5fWWBXxd8i5JcbM+nGxkzYWQW3KGaHlszTbf3S8k5oggnShDSaWgFFtKhdhDjcP2Q DMgOycm8wfSWbS9DKdOFEwzqm4FHF5jfSkjGBKxIs9Tz+opKD7NX6TZFq06x4Fv6F4 +Rtk9J0WL9nSSfqCXJvxg5cDiSQzpoZYQMix96OSzJM/zaU1Bzgw9V+JeQPeVzZvAA Fmo0KW9iLkzew== To: 56959@debbugs.gnu.org Subject: [PATCH v2] gnu: packages: Add glad2. Date: Fri, 12 Aug 2022 07:59:58 +0100 Message-Id: <20220812065958.2469-1-paren@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 56959 Cc: "\(" 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 (-) * gnu/packages/gl.scm (glad2): New variable. --- gnu/packages/gl.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index c740c087dd..50c7b91526 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2021 Ivan Gankevich ;;; Copyright © 2021 John Kehayias ;;; Copyright © 2022 Petr Hodina +;;; Copyright © 2022 ( ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,6 +67,7 @@ (define-module (gnu packages gl) #:use-module (guix build-system meson) #:use-module (guix build-system python) #:use-module (guix build-system waf) + #:use-module (guix gexp) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) @@ -215,6 +217,50 @@ (define-public glad generate a GL/GLES/EGL/GLX/WGL loader tailored for specific requirements.") (license license:expat))) +(define-public glad2 + (let ((commit "b1051403cf81b984f9fc11cc5916adb5afd34766") + (revision "2")) + (package + (name "glad2") + (version (git-version "0.1.36" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Dav1dde/glad") + (commit commit))) + (sha256 + (base32 + "03q3gxg2z9lpx7hqac2fd3ld94avhkg4mdxjfjgrgh97kyx9knpm")))) + (build-system python-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (add-after 'install 'install-cmake-plugin + (lambda _ + (let ((cmake-dir (string-append #$output + "/share/cmake/glad"))) + (mkdir-p cmake-dir) + (copy-file "cmake/CMakeLists.txt" + (string-append cmake-dir + "/glad.cmake")))))))) + (inputs (list python-jinja2)) + (home-page "https://glad.sh") + (synopsis "Multi-language OpenGL/Vulkan loader generator") + (description + "GLAD 2 is a graphics library binding generator. It generates code +for calling into Vulkan and GL-related APIs from the official Khronos XML +specifications. Among the improvements are: +@enumerate +@item Better EGL, GLX, and WGL support +@item Support for generating Vulkan bindings +@item A Rust frontend +@item More generator options for enabling features such as the generation +of header-only C bindings +@item Improvements for CMake support +@item Better API +@end enumerate") + (license license:expat)))) + (define-public s2tc (package (name "s2tc") -- 2.37.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Nov 05 11:23:27 2022 Received: (at control) by debbugs.gnu.org; 5 Nov 2022 15:23:27 +0000 Received: from localhost ([127.0.0.1]:57844 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1orL14-0001hq-QN for submit@debbugs.gnu.org; Sat, 05 Nov 2022 11:23:26 -0400 Received: from knopi.disroot.org ([178.21.23.139]:60842) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1orL12-0001hg-CB for control@debbugs.gnu.org; Sat, 05 Nov 2022 11:23:25 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id E2E2441269 for ; Sat, 5 Nov 2022 16:23:22 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id P3a1JNANKEwm for ; Sat, 5 Nov 2022 16:23:22 +0100 (CET) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1667661801; bh=dowDC7vPgONaFL03xgI2Hw96zSexWtd9yN1EzzcdasE=; h=Date:Subject:From:To:From; b=APbdH4EmTNIrTmtcV/ZluF9RBQ3yOkUxc8/YuomO5UbA3cy6qbI4IZKPu8mBqXqxS VBcEAEawP3VVVjqns3Sr6laVzxtv0JHEZw7HNcmACVJIOko1dBraLXsdnJv+Ayg1lU PXjJC2aUoEibYSUMpa2LpKGVhtp0gJ+Uq6sSspJCyY5Pbf9deXq37k6S75EzdqQr5A QNcGnsnNXDd/qNrDKBi76VKXaThphBX1h7eYgndvvck91JVg1sWGn/ChxapLA68C5O 4XADBful4wxWvhU0yNsNB/iwFr3sSSwkiTkFo6pE43GDF5djhmExrmHHKf/aPyXNcQ Q9xFeqyla0kow== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Sat, 05 Nov 2022 15:23:21 +0000 Message-Id: Subject: From: "(" To: X-Spam-Score: 3.3 (+++) 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 56959 thanks I'll send a fresh new patchset, as GLAD2 has now been actually released. -- ( Content analysis details: (3.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 FROM_ONE_CHAR Bogus FROM name -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 BLANK_SUBJECT Subject is present but empty 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: 2.3 (++) 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 56959 thanks I'll send a fresh new patchset, as GLAD2 has now been actually released. -- ( Content analysis details: (2.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 FROM_ONE_CHAR Bogus FROM name -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 BLANK_SUBJECT Subject is present but empty -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager close 56959 thanks I'll send a fresh new patchset, as GLAD2 has now been actually released. -- ( From unknown Wed Jun 18 00:24:40 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 04 Dec 2022 12: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