From unknown Sun Aug 10 09:46:35 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#61565 <61565@debbugs.gnu.org> To: bug#61565 <61565@debbugs.gnu.org> Subject: Status: [PATCH 5/5] gnu: Add rust-mockall. Reply-To: bug#61565 <61565@debbugs.gnu.org> Date: Sun, 10 Aug 2025 16:46:35 +0000 retitle 61565 [PATCH 5/5] gnu: Add rust-mockall. reassign 61565 guix-patches submitter 61565 Steve George severity 61565 normal tag 61565 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 16 17:58:57 2023 Received: (at submit) by debbugs.gnu.org; 16 Feb 2023 22:58:57 +0000 Received: from localhost ([127.0.0.1]:37925 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSnDN-0002vO-20 for submit@debbugs.gnu.org; Thu, 16 Feb 2023 17:58:57 -0500 Received: from lists.gnu.org ([209.51.188.17]:44434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSnDM-0002vH-1b for submit@debbugs.gnu.org; Thu, 16 Feb 2023 17:58:56 -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 1pSnDL-0000LO-No for guix-patches@gnu.org; Thu, 16 Feb 2023 17:58:55 -0500 Received: from mailtransmit05.runbox.com ([2a0c:5a00:149::26]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pSnDK-0002iZ-1P for guix-patches@gnu.org; Thu, 16 Feb 2023 17:58:55 -0500 Received: from mailtransmit03.runbox ([10.9.9.163] helo=aibo.runbox.com) by mailtransmit05.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1pSnDI-002GSx-N3; Thu, 16 Feb 2023 23:58:52 +0100 Received: from [10.9.9.72] (helo=submission01.runbox) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1pSnDI-0006lk-G8; Thu, 16 Feb 2023 23:58:52 +0100 Received: by submission01.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1pSnD9-0002x3-V4; Thu, 16 Feb 2023 23:58:44 +0100 From: Steve George To: Guix patches list Subject: [PATCH 5/5] gnu: Add rust-mockall. Date: Thu, 16 Feb 2023 22:57:42 +0000 Message-Id: <20230216225742.106916-5-steve@futurile.net> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230216225742.106916-1-steve@futurile.net> References: <20230216225742.106916-1-steve@futurile.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: permerror client-ip=2a0c:5a00:149::26; envelope-from=steve@futurile.net; helo=mailtransmit05.runbox.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner , Steve George 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/crates-io.scm (rust-mockall-0.11): New variable. --- gnu/packages/crates-io.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 9ce18ea1f0..cb19edaf83 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -33760,6 +33760,42 @@ (define-public rust-mockall-double-0.3 select the mock struct at compile time. Used with the Mockall crate.") (license (list license:expat license:asl2.0)))) +(define-public rust-mockall-0.11 + (package + (name "rust-mockall") + (version "0.11.1") + (source (origin + (method url-fetch) + (uri (crate-uri "mockall" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0k3g3xxf195vsnzmwza047dv89zlg6h5yj5774wjlndgpdvf8han")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-cfg-if" ,rust-cfg-if-1) + ("rust-downcast" ,rust-downcast-0.11) + ("rust-fragile" ,rust-fragile-1) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-mockall-derive" ,rust-mockall-derive-0.11) + ("rust-predicates" ,rust-predicates-2) + ("rust-predicates-tree" ,rust-predicates-tree-1)) + #:cargo-development-inputs + (("rust-async-trait" ,rust-async-trait-0.1) + ("rust-futures" ,rust-futures-0.3) + ("rust-mockall-double" ,rust-mockall-double-0.3) + ("rust-serde" ,rust-serde-1) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-tracing" ,rust-tracing-0.1)))) + (home-page "https://github.com/asomers/mockall") + (synopsis "Powerful mock object library for Rust") + (description "Mockall is a rich mocking library with a terse and ergonomic +interface. It is written in 100% safe and stable Rust.") + (license (list license:expat license:asl2.0)))) + (define-public rust-mockall-derive-0.11 (package (name "rust-mockall-derive") -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 16 18:18:41 2023 Received: (at 61565-done) by debbugs.gnu.org; 16 Feb 2023 23:18:41 +0000 Received: from localhost ([127.0.0.1]:37979 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSnWT-0003Tv-Br for submit@debbugs.gnu.org; Thu, 16 Feb 2023 18:18:41 -0500 Received: from mailtransmit04.runbox.com ([185.226.149.37]:34610) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSnWR-0003Tf-1l for 61565-done@debbugs.gnu.org; Thu, 16 Feb 2023 18:18:39 -0500 Received: from mailtransmit02.runbox ([10.9.9.162] helo=aibo.runbox.com) by mailtransmit04.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1pSnWK-002Fp0-Hl for 61565-done@debbugs.gnu.org; Fri, 17 Feb 2023 00:18:32 +0100 Received: from [10.9.9.72] (helo=submission01.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1pSnWK-0005RI-4H for 61565-done@debbugs.gnu.org; Fri, 17 Feb 2023 00:18:32 +0100 Received: by submission01.runbox with esmtpsa [Authenticated ID (641962)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1pSnW7-0004vo-3A for 61565-done@debbugs.gnu.org; Fri, 17 Feb 2023 00:18:19 +0100 Message-ID: Date: Thu, 16 Feb 2023 23:18:17 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.2 Content-Language: en-US From: Steve George To: 61565-done@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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: Correct series in #61561. Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [185.226.149.37 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: 61565-done 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 (+) Correct series in #61561. From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 17 02:16:27 2023 Received: (at control) by debbugs.gnu.org; 17 Feb 2023 07:16:27 +0000 Received: from localhost ([127.0.0.1]:38327 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSuyp-0002XL-Bw for submit@debbugs.gnu.org; Fri, 17 Feb 2023 02:16:27 -0500 Received: from mailrelay.tugraz.at ([129.27.2.202]:38028) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSuym-0002XA-VB for control@debbugs.gnu.org; Fri, 17 Feb 2023 02:16:26 -0500 Received: from lprikler-laptop.ist.intra (gw.ist.tugraz.at [129.27.202.101]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4PJ35K6ypTz1LM0R for ; Fri, 17 Feb 2023 08:16:21 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4PJ35K6ypTz1LM0R DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1676618182; bh=VzpuLEYpTcmu/2Cb4/BoPBoa0FjKl0p4Le8wxIkgdo4=; h=Subject:From:To:Date:From; b=l0m1z0XpFaF5Qt+SrtiEjldJHgK5jVqEBNMqCLKd6QBp0rVvb+1HfogjCIqht/6Xe hY+g0ifY4WGQCRyLTnlQXC017KxgjlnN3HdxoIEjLLvh3XD6KRxEuq+zatl/gitf1K 5UE3EMG9M0WD0Khq+E4Rim1Jhg1xrVH48PkUgJ9I= Message-ID: Subject: From: Liliana Marie Prikler To: control@debbugs.gnu.org Date: Fri, 17 Feb 2023 08:16:20 +0100 Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.46.0 MIME-Version: 1.0 X-TUG-Backscatter-control: waObeELIUl4ypBWmcn/8wQ X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -0.3 (/) 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.3 (-) merge 61561 61562 61563 61564 forcemerge 61561 61565 thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 20 07:02:38 2023 Received: (at 61565-done) by debbugs.gnu.org; 20 Feb 2023 12:02:38 +0000 Received: from localhost ([127.0.0.1]:50759 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pU4sQ-0006T0-1y for submit@debbugs.gnu.org; Mon, 20 Feb 2023 07:02:38 -0500 Received: from mail-ed1-f51.google.com ([209.85.208.51]:34534) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pU4sH-0006S4-Mr; Mon, 20 Feb 2023 07:02:30 -0500 Received: by mail-ed1-f51.google.com with SMTP id cq23so3441249edb.1; Mon, 20 Feb 2023 04:02:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender:from:to :cc:subject:date:message-id:reply-to; bh=M+kESfZa3prtGJXlSm4kGNFYzFsd+1t9RpO2Eq3iaic=; b=TLDpEYdfT+j00vgA6Z79hS5T2ILlxsKCb6ByQ732P7/PsV/rv5j0tTP1zQrAXEI+tV 9GGCOeok0sJdrema19gA/M1jD5uqtJTrsjLdR1HBKiaPfKtZ6KTHUOWaaMlqMDdmkY3f kxMhlFQPcgNUgAlcPChKXzLCdgLKHy9FSYyZi641f+zWvq3lzwzCREpM5Q3XOg5luijm C0PLPVanm8Juopet6Iyfryocv9gOOQLGCC03VYMKKvaXJHuco8a1Vdl9MXATsi9GMROm tZJfrmWmgh0b3LRw1DT4XA/xVUYwdFitc1EStnz01BlbFs5xPttDqc7og/CFh8srT55H TuAQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=M+kESfZa3prtGJXlSm4kGNFYzFsd+1t9RpO2Eq3iaic=; b=IoplitWeRvQWrd4K1jHeKdrZTi7ChmcDPs3880XV5A9w0s6WbOF/eABynkliZWf3jZ h9bOVxqusW7KU6foV0jaxhtzYw8zD63tAe0KIQnGEHMHKiOEHzYY/CCC8mdC3i0D4Xnt RpFwJG55tntm28fkGJwPbi62XnAe/sGH+g0+RrZ51XMUL5GQGG8NZ8tQ1AgSt+/I9P7o tLuITrWelP4e+MWX3h9VhHUCAzRfGemE+kvDB+7F8LHOsLOBthUd3LF4q8IQGXkN9HgO AGYbIo2GLbmacKY5Iz1AuCkRtz1DFH3Y5aaY2LFl+rfxhhdMlEOAwl1IQdkM7RRk+L5v SunA== X-Gm-Message-State: AO0yUKUjnnv9GVRWwqlcI8pMUKx8WAnqs84qo5ndxjqxMUmebbUyjEkp /ujESv/2aFCdFDGc5Y/Kfcg= X-Google-Smtp-Source: AK7set8qL7qj39WANh4j5Ki5CEo3+tDV91FrEZzSYq5xi99K+Pk2c5KyC7fZEXNQzW+mQS+mKKWR8A== X-Received: by 2002:aa7:c789:0:b0:4ac:cdcb:ab68 with SMTP id n9-20020aa7c789000000b004accdcbab68mr1218525eds.16.1676894543379; Mon, 20 Feb 2023 04:02:23 -0800 (PST) Received: from localhost ([141.226.15.115]) by smtp.gmail.com with ESMTPSA id o2-20020a05600c4fc200b003e2059c7978sm15249188wmq.36.2023.02.20.04.02.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 20 Feb 2023 04:02:22 -0800 (PST) Date: Mon, 20 Feb 2023 14:02:21 +0200 From: Efraim Flashner To: Steve George Subject: Re: [PATCH 1/5] gnu: Add rust-pretty-assertions-0.5. Message-ID: Mail-Followup-To: Efraim Flashner , Steve George , 61561-done@debbugs.gnu.org, 61562-done@debbugs.gnu.org, 61563-done@debbugs.gnu.org, 61564-done@debbugs.gnu.org, 61565-done@debbugs.gnu.org References: <20230216225742.106916-1-steve@futurile.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="oIvoz2k7V9pab4uT" Content-Disposition: inline In-Reply-To: <20230216225742.106916-1-steve@futurile.net> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: 2.7 (++) 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: Thanks for the patches. I dropped the rust-pretty-assertions-0.5 one since the others didn't seem to depend on it and I enabled building on them where possible. -- Efraim Flashner אפרים פלשנר GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (efraim.flashner[at]gmail.com) 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.208.51 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.208.51 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 2.5 SUSPICIOUS_RECIPS Similar addresses in recipient list 0.2 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different 0.0 FREEMAIL_FORGED_FROMDOMAIN 2nd level domains in From and EnvelopeFrom freemail headers are different X-Debbugs-Envelope-To: 61565-done Cc: 61561-done@debbugs.gnu.org, 61563-done@debbugs.gnu.org, 61565-done@debbugs.gnu.org, 61562-done@debbugs.gnu.org, 61564-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: 1.7 (+) 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: Thanks for the patches. I dropped the rust-pretty-assertions-0.5 one since the others didn't seem to depend on it and I enabled building on them where possible. -- Efraim Flashner אפרים פלשנר GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted Content analysis details: (1.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.208.51 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.208.51 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (efraim.flashner[at]gmail.com) 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.5 SUSPICIOUS_RECIPS Similar addresses in recipient list 0.2 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different 0.0 FREEMAIL_FORGED_FROMDOMAIN 2nd level domains in From and EnvelopeFrom freemail headers are different -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --oIvoz2k7V9pab4uT Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks for the patches. I dropped the rust-pretty-assertions-0.5 one since the others didn't seem to depend on it and I enabled building on them where possible. --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --oIvoz2k7V9pab4uT Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmPzYUoACgkQQarn3Mo9 g1GifBAAlUQhcqOegYC5eNrFjjpS3osTwAyPkyUytEAqAlW7f1LzP8sPy081HzIo zemMr6YMfYnLbB2gyJVQP2ZUbvYm0BoM8AmNyzgy7Yp9Ay9u6x2p16XPL7ddrqQ5 zjLEL+mBKHpTQVYE7TiMp0QChZ0mdrmG1+Kipu/3ZBX20eklhwyfyWqqzLywj4yT d9CTnwzbu1B06WpjH1bU2zBriEstAtX++xzDjTzi5VHuZ/C7RIyKKuThYCb7Mg/C bzWCGDvizN+ESDjEkYnd+wuLM5BjF42ZC2FfBinQCDiUdyDlQnsbu+Do8eeJeSFE QIMUa317eZTA0p24O97dsxtdJlJLhY7tWV0Yso2yxc4vDyNVnqFJaBVYfcd3sdZ4 Y/3Rc2odl6ePby2LbgXTrPEUBOv9RwsUGVDHawva0GFW1dV6hYUkyPNnssxI6K4g m9fZvHa2fj+Rq9vw2PaD8rXsLsfPNxTpYue1+nWBOQhddC0KiyenN6Zh6Iu9cgp8 C1TJOWhtRwbTg8clu3UKurlCofpRwEV0SpNZRhO1hcGJYfnRC2M0h0UKgXjZl879 /nk5JhK5dAG4Hi9Gr7zKW2gdvrVtS8OkuGHQvtn/alkngdfLrYV6aXJ+tiEUpLkw WUFNp4Oa3QbLJo+vDXyoXiVtWHldrjLZYiDoHGfvUli6+pnUDgg= =4Cfv -----END PGP SIGNATURE----- --oIvoz2k7V9pab4uT-- From unknown Sun Aug 10 09:46:35 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 21 Mar 2023 11: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