From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 31 03:14:59 2024 Received: (at submit) by debbugs.gnu.org; 31 Jul 2024 07:14:59 +0000 Received: from localhost ([127.0.0.1]:48906 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZ3Y3-0007Nf-Bv for submit@debbugs.gnu.org; Wed, 31 Jul 2024 03:14:59 -0400 Received: from lists.gnu.org ([209.51.188.17]:40966) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZ3Y0-0007NX-Mq for submit@debbugs.gnu.org; Wed, 31 Jul 2024 03:14:58 -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 1sZ3Xl-0005gW-89 for guix-patches@gnu.org; Wed, 31 Jul 2024 03:14:41 -0400 Received: from anamika.lostca.se ([2a01:4f9:3b:505c::2]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1sZ3Xj-0004RA-C3 for guix-patches@gnu.org; Wed, 31 Jul 2024 03:14:40 -0400 Received: from localhost.localdomain (unknown [77.241.232.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: abbe) by anamika.lostca.se (Postfix) with ESMTPSA id D48C01E5C8; Wed, 31 Jul 2024 07:14:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1722410067; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=veFF4+frJkhI6GBsVPwz6yagy5yfxnZ4UiU/eOf4fNQ=; b=ixVYH6/6drNsR+6mlG/sgiCkbysZxYlR8AH6GYOnJKJwBuYXltJPcIy+Z+HilY/ancDo4F SD5zK18X0xJI3nkpVIkgBx/MNeXs4RNILzvm/CnEgVbjgt1fTiyKGnY5ZRBRhQseVs/I9L xB/oW/UvDMLHLgt1na1T5z0MOB5vAIA= From: Ashish SHUKLA To: guix-patches@gnu.org Subject: [PATCH] gnu: tuxedo-keyboard: Update to 4.6.1 Date: Wed, 31 Jul 2024 09:11:50 +0200 Message-ID: X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 X-Debbugs-Cc: Leo Famulari , Wilko Meyer Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a01:4f9:3b:505c::2; envelope-from=ashish.is@lostca.se; helo=anamika.lostca.se 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 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Ashish SHUKLA 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/linux (tuxedo-keyboard): Update to 4.6.1. [source] Update repository URL to point to new upstream. [home-page] Update home-page. Change-Id: Ia10680c9ebd3381c26f2af5c174bcb497aac6c25 --- Hi, I tested building this with Linux kernel 6.9.x. For kernel > 6.10.x, we will need following patch (not included): https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/issues/182#note_2007072529 Thanks! gnu/packages/linux.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 613d4b260c..eb8068849c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1611,20 +1611,20 @@ (define-public librem-ec-acpi-linux-module (define-public tuxedo-keyboard (package (name "tuxedo-keyboard") - (version "3.2.10") + (version "4.6.1") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tuxedocomputers/tuxedo-keyboard.git") + (url "https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1kbspr1vs6jpfsb3c4hbw2d8y06v2a3m4c27rhggkfksf4x82gip")))) + (base32 "0hbqk28qi3yxw0g3j8yarsplyigpd8kgliri7c48d3yhliiiz7l5")))) (build-system linux-module-build-system) (arguments (list #:tests? #f)) ; no test suite - (home-page "https://github.com/tuxedocomputers/tuxedo-keyboard") + (home-page "https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers") (synopsis "Linux kernel modules to control keyboard on most Tuxedo computers") (description "This package provides the @code{tuxedo_keyboard}, @code{tuxedo_io}, base-commit: 01d4363168ed10ea223047f7a7b83201f161ec0b -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 01 06:35:25 2024 Received: (at submit) by debbugs.gnu.org; 1 Aug 2024 10:35:25 +0000 Received: from localhost ([127.0.0.1]:50940 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZT9Z-00084Q-GN for submit@debbugs.gnu.org; Thu, 01 Aug 2024 06:35:25 -0400 Received: from lists.gnu.org ([209.51.188.17]:32810) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZT9Y-00084J-HC for submit@debbugs.gnu.org; Thu, 01 Aug 2024 06:35:25 -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 1sZT9H-0001Q4-Ft for guix-patches@gnu.org; Thu, 01 Aug 2024 06:35:07 -0400 Received: from mira.cbaines.net ([2a01:7e00:e000:2f8:fd4d:b5c7:13fb:3d27]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1sZT9E-0000qm-7V for guix-patches@gnu.org; Thu, 01 Aug 2024 06:35:07 -0400 Received: from localhost (unknown [212.132.255.81]) by mira.cbaines.net (Postfix) with ESMTPSA id ABD5A27BBE2; Thu, 1 Aug 2024 11:35:00 +0100 (BST) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 488f9d6a; Thu, 1 Aug 2024 10:35:00 +0000 (UTC) From: Christopher Baines To: Ashish SHUKLA via Guix-patches via Subject: Re: [bug#72390] [PATCH] gnu: tuxedo-keyboard: Update to 4.6.1 In-Reply-To: (Ashish SHUKLA via Guix-patches via's message of "Wed, 31 Jul 2024 09:11:50 +0200") References: User-Agent: mu4e 1.12.4; emacs 29.3 Date: Thu, 01 Aug 2024 11:35:00 +0100 Message-ID: <87cyms350r.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=2a01:7e00:e000:2f8:fd4d:b5c7:13fb:3d27; envelope-from=mail@cbaines.net; helo=mira.cbaines.net 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_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Ashish SHUKLA , 72390-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: -2.4 (--) --=-=-= Content-Type: text/plain Ashish SHUKLA via Guix-patches via writes: > * gnu/packages/linux (tuxedo-keyboard): Update to 4.6.1. > [source] Update repository URL to point to new upstream. > [home-page] Update home-page. > > Change-Id: Ia10680c9ebd3381c26f2af5c174bcb497aac6c25 > --- > Hi, > > I tested building this with Linux kernel 6.9.x. > > For kernel > 6.10.x, we will need following patch (not included): > > https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/issues/182#note_2007072529 > > Thanks! > > gnu/packages/linux.scm | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) Thanks for the patch, I've pushed this to master as baae1bb9416ca692f207a5414d90b3f6cf407148. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmarZNRfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XelJhAAsnMIjiyG2GYL66gxhZ2RuX2LL66in229 bZprUG03JkiUNeD9j2g8quIn+ys9ddmYNaXoiFXkJSU8CkS9wPclCPIQ+TmuIC+v MSHc3O9HwOqAzrY6nbT+UcsQCgeVhghjqW3cqBoZpHGr//qoQwy6ksDjYcCpbYYi kF6Ga5ynZyA+STaVZSBglIhKwpcqVmLEAV03JABJ+RC5LBW8ab+c8juGkdyNK+/G PvXg+gptN0yvm3ldqKTVE8dtUmdM7HnLTPUIMpCKceBZzPgDmhLueJOEiR3yh+YQ dTMtDWC5PKSZ2RZXF3IMrNph5ROKviaM3LrCgjpCMPYPoDu8dDsMH4ZBqQDx/Uz4 WF9s+JZLAnJy/FebmliZssiPiEoEmppfD2Ztkph7iUDYl9ie7gqAFIwinhWZQCLG bWLbJvr0xM6GgiUTazdm4bU8UVmKbWL5rVo1Hcwb2KyUNQN+IffKnwu15gWHE5Xv 1Dc33P6fy5otbR4XjrfGpvAs6UQq/jclxnIsYlM1xt5gcouhehdWkLLeVG8OOZbj L8EJxeib4YpPsQcNfmauF/I1Nmv5AOc8cG6TRPeo9XbUJ7yPN5+0T0vEsImwMCSa 8GLOkrVbU8v3aQcxyG6tQ7AgexXpi/OurjR8xTTD254MZuf2K0YAafS3aQft4kyF GrF8wBnzS7k= =Gbw8 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 01 17:11:20 2024 Received: (at 72390) by debbugs.gnu.org; 1 Aug 2024 21:11:20 +0000 Received: from localhost ([127.0.0.1]:52002 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZd4y-00008N-GG for submit@debbugs.gnu.org; Thu, 01 Aug 2024 17:11:20 -0400 Received: from fhigh1-smtp.messagingengine.com ([103.168.172.152]:42299) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZd4u-000086-FE for 72390@debbugs.gnu.org; Thu, 01 Aug 2024 17:11:19 -0400 Received: from compute2.internal (compute2.nyi.internal [10.202.2.46]) by mailfhigh.nyi.internal (Postfix) with ESMTP id 9FBF5114F9C5; Thu, 1 Aug 2024 17:10:53 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute2.internal (MEProxy); Thu, 01 Aug 2024 17:10:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:cc:content-type:content-type:date:date:from:from :in-reply-to:in-reply-to:message-id:mime-version:references :reply-to:subject:subject:to:to; s=mesmtp; t=1722546653; x= 1722633053; bh=JcfVPZjppNa8NWIplAM3F/SQcdlN0JWWIMhvCILpJM0=; b=B YwCcjkS0AmVUpZM3pliiB47SMX1vlk1v3ZM9SMCKjkcg7Bn4odX3I/ZolBbc3QH7 XwYqOJpjA57XpIRRClLXBXtoJ5BtTDx88imh5HWPIsRq/JCksEa94AMb67FU6TKi GHALYXjOpFYz3LaB0+h4IaNRmh8nSU5tf2c8/zAPog= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-type:content-type:date:date :feedback-id:feedback-id:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:subject:subject:to :to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; t=1722546653; x=1722633053; bh=JcfVPZjppNa8NWIplAM3F/SQcdlN 0JWWIMhvCILpJM0=; b=QSyOrrVaxbjqNUnZZ/+3WWMKvcGjhrfKbPz46aPSdUFv +mhSVs/6AljxybrhI5aVkMPYcLI7tDzwziMuUVv2WAeMSAj3N/Inh/JbCYXKa9pd /taPa+qlAOi5zTuJURShIPxDeaHb8L7zPG6XyPjBT43WEIALINrh4OdnJWSbthLA KiQUij2N/slbVhJBeqZakqgZV8oonjECUEp8C4vSEyVnlCL6kGsVfny2pheIjzHM hTbwiXab43TVBM2fkDtGkD1iIlf1JjYLScq7dCSK5yT5z3xmUlLAoggeFzv96XR6 Lucc2REeM52Iw86ICcqZSXQe7fLQXaw/gepxw/UkCw== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeeftddrjeekgdduheelucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpeffhffvvefukfhfgggtuggjsehttd ertddttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhl rghrihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpefgueeikeffhfduheegudegvdffff fhfeeivdekgfelgeelueekudfhveeihfevleenucffohhmrghinhepghhithhlrggsrdgt ohhmnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomheplh gvohesfhgrmhhulhgrrhhirdhnrghmvgdpnhgspghrtghpthhtoheptd X-ME-Proxy: Feedback-ID: i819c4023:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Thu, 1 Aug 2024 17:10:52 -0400 (EDT) Date: Thu, 1 Aug 2024 17:10:40 -0400 From: Leo Famulari To: Ashish SHUKLA Subject: Re: [bug#72390] [PATCH] gnu: tuxedo-keyboard: Update to 4.6.1 Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 72390 Cc: Wilko Meyer , 72390@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.7 (-) On Wed, Jul 31, 2024 at 09:11:50AM +0200, Ashish SHUKLA wrote: > I tested building this with Linux kernel 6.9.x. > > For kernel > 6.10.x, we will need following patch (not included): > > https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/-/issues/182#note_2007072529 Is that a patch for tuxedo-keyboard, or for the kernel? From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 01 17:54:32 2024 Received: (at 72390) by debbugs.gnu.org; 1 Aug 2024 21:54:33 +0000 Received: from localhost ([127.0.0.1]:52048 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZdkm-0001Ia-Ih for submit@debbugs.gnu.org; Thu, 01 Aug 2024 17:54:32 -0400 Received: from anamika.lostca.se ([65.21.75.227]:42942) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sZdkk-0001IL-Jt for 72390@debbugs.gnu.org; Thu, 01 Aug 2024 17:54:31 -0400 Received: from sofia (186.red-81-34-66.dynamicip.rima-tde.net [81.34.66.186]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: abbe) by anamika.lostca.se (Postfix) with ESMTPSA id E09AF1EDC6; Thu, 1 Aug 2024 21:53:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1722549217; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=78PDuVCImu5aKHgvdCx4jmidg7lmrw39011jcl2nL14=; b=XsyImspvoGaH7nOjjSXTH+oa+CDRNwj3E/CPZS9C54COSRkfSSi+LauB3nZtjtBd63pFqi tmBm+BgduYpbXd8MQ1TPw+GItxoSU3xjp2Nv3NIS/dFtUOHgblTMNxa0c0I95EQFLrP5Qp Islby4eoL6p9+Te46z5Q2nqEkIo/e2I= Date: Thu, 1 Aug 2024 21:53:25 +0000 From: Ashish To: Leo Famulari Subject: Re: [bug#72390] [PATCH] gnu: tuxedo-keyboard: Update to 4.6.1 Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="vqpeswsya7bwxdaj" Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20230517 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 72390 Cc: Wilko Meyer , 72390@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 (-) --vqpeswsya7bwxdaj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 01, 2024 at 05:10:40PM -0400, Leo Famulari wrote: > On Wed, Jul 31, 2024 at 09:11:50AM +0200, Ashish SHUKLA wrote: > > I tested building this with Linux kernel 6.9.x. > >=20 > > For kernel > 6.10.x, we will need following patch (not included): > >=20 > > https://gitlab.com/tuxedocomputers/development/packages/tuxedo-drivers/= -/issues/182#note_2007072529 >=20 > Is that a patch for tuxedo-keyboard, or for the kernel? Yes, for the tuxedo-keyboard (kernel module) sources. --=20 Ashish SHUKLA | GPG: F682 CDCC 39DC 0FEA E116 20B6 C746 CFA9 E74F A4B0 "If I destroy you, what business is it of yours ?" (Dark Forest, Liu Cixin) --vqpeswsya7bwxdaj Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEE9oLNzDncD+rhFiC2x0bPqedPpLAFAmasA9VfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEY2 ODJDRENDMzlEQzBGRUFFMTE2MjBCNkM3NDZDRkE5RTc0RkE0QjAACgkQx0bPqedP pLCRCxAArRLJa9HUTu1XFhO/q0DsJwZF7ainUcHAdaoz/dKWuRf+yTmyhvXZ8DfU CO54vJ5u8QHnYlbfjFBGVloj+QKlfvhWadvO5PMDuABDOAcx1GL7ZK1BxsPCQY/f OX5DP42eSUMFSCHYSaejw61LPFU8HngNB74kqSnM37hztyCSaJenfyc4s/ImHxKd 45dvkUEV62bgnjz5V72UaaDGob8bbkmvZanFLI9OBtcOt96jDCqQtkY2362rQ4UN lqZJQKHnLiX7CqELryMzJmcG/E0Au+9IHEE8c/S0HwidaFN1jmC2kgTbWGFeJILl nb/KCS19ugq4tNClHt7cMUmeYC9N3zOMDsp/cIifZ93ZH2J2NuPcJcQyJ/CLDAdm C2d0lhNWJuD/3VptK9GMHgGZ+x96FoZfzoY1Xh/jINE4qW1Psysxz1UTxEuMen41 1iRBhw34/3m+b5lhJ79YVrhgtptcm0A28TJShBuLrYPHMgDoFV3cmQucQDjMY8kC ieR8bUR1A+QlnMO6+/2GzkvBf3VbgSqVyCTUMaYZescPKK6u7QKAnpCKB4VY00Wh YI8Yp19h9iva2xTLJtjCtzunKxx1NJyIhs/svxzlXDC1QL4iDbqLKXPJUEdEupyR e3eUhejbQWKYyYHS/5Lnc+MG7QDxKeEVUV1xktf7sV8jB5IL8bk= =wuKU -----END PGP SIGNATURE----- --vqpeswsya7bwxdaj-- From unknown Fri Jun 20 07:27:30 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, 30 Aug 2024 11:24:10 +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