From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 29 17:06:30 2019 Received: (at submit) by debbugs.gnu.org; 29 Dec 2019 22:06:30 +0000 Received: from localhost ([127.0.0.1]:60308 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ilghh-0005V7-IG for submit@debbugs.gnu.org; Sun, 29 Dec 2019 17:06:30 -0500 Received: from lists.gnu.org ([209.51.188.17]:54350) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ilcYk-0003k6-VF for submit@debbugs.gnu.org; Sun, 29 Dec 2019 12:40:59 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:40458) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ilcYj-0007KG-EI for guix-patches@gnu.org; Sun, 29 Dec 2019 12:40:58 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05, RCVD_IN_DNSWL_NONE, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ilcYh-0006m7-Va for guix-patches@gnu.org; Sun, 29 Dec 2019 12:40:57 -0500 Received: from pat.zlotemysli.pl ([37.59.186.212]:32896) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ilcYh-0006Sq-LO for guix-patches@gnu.org; Sun, 29 Dec 2019 12:40:55 -0500 Received: (qmail 7805 invoked by uid 1009); 29 Dec 2019 18:34:07 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25677. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.024622 secs); 29 Dec 2019 17:34:07 -0000 Received: from unknown (HELO zdrowyportier.kadziolka.net) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 29 Dec 2019 18:34:07 +0100 Date: Sun, 29 Dec 2019 18:34:05 +0100 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: guix-patches@gnu.org Subject: [PATCH] gnu: vim: Update to 8.2.0055. Message-ID: <20191229173405.gkwdnohqg3gim7m3@zdrowyportier.kadziolka.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 37.59.186.212 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 29 Dec 2019 17:06:28 -0500 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 (---) * gnu/packages/vim.scm (vim): Update to 8.2.0055. [arguments]: Work around new build-container-related test failures. [native-inputs]: Add tzdata to make a test pass. --- gnu/packages/vim.scm | 61 +++++++++++++++++++++++++++++++------------- 1 file changed, 43 insertions(+), 18 deletions(-) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index b33fe42ceb..c8d6f6d5f1 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -67,16 +67,16 @@ (define-public vim (package (name "vim") - (version "8.1.0644") + (version "8.2.0055") (source (origin - (method git-fetch) - (uri (git-reference + (method git-fetch) + (uri (git-reference (url "https://github.com/vim/vim") (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1xksb2v8rw1zgrd5fwqvrh44lf277k85sad2y4ia1z17y7i8j2fl")))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0lcf3q7sv4fz4nn54i805wz3zz4p64jb87bhqhv0ndx7rmhkba24")))) (build-system gnu-build-system) (arguments `(#:test-target "test" @@ -92,26 +92,51 @@ "src/testdir/test_terminal.vim") (("/bin/sh") (which "sh"))) #t)) + (add-before 'check 'set-tzdir + (lambda* (#:key inputs #:allow-other-keys) + ;; One of the tests tests timezone-dependent functions. + (setenv "TZDIR" + (string-append (assoc-ref inputs "tzdata") + "/share/zoneinfo")) + #t)) (add-before 'check 'patch-failing-tests (lambda _ - ;; XXX A single test fails with “Can't create file /dev/stdout” (at - ;; Test_writefile_sync_dev_stdout line 5) while /dev/stdout exists. - (substitute* "src/testdir/test_writefile.vim" - (("/dev/stdout") "a-regular-file")) + ;; This test fails when run in the build container: + ;; When handling swap files, Vim needs to check whether a process + ;; with a specific PID exists. This is done with kill(pid, 0), + ;; which gives similar enough results when the process exists, but + ;; Vim does not have permission to send signals to it. + ;; + ;; This is used in the test by modifying a swap file to say + ;; it came from PID 1. This works in a normal environment, since + ;; PID 1 usually runs as root, and the test suite does not. + ;; The test even contains a check for running as root, since + ;; that's one of the situation where the test fails. + ;; + ;; However, in the build container, PID 1 isn't root, but the same + ;; user as the test suite itself. As such, we skip this test. + ;; An alternative approach would be to patch the PID used to a + ;; random 32-bit value and hope it never shows up in the test + ;; environment. + (substitute* "src/testdir/test_swap.vim" + (("if !IsRoot\\(\\)") "if 0")) - ;; XXX: This test fails when run in the build container: - ;; . - (substitute* "src/testdir/test_search.vim" - ((".*'Test_incsearch_substitute_03'.*" all) - (string-append "\"" all "\n"))) + ;; This test checks how the terminal looks after executing some + ;; actions. The path of the bash binary is shown, which results in + ;; a difference being detected. Patching the expected result is + ;; non-trivial due to the special format used, so skip the test. + (substitute* "src/testdir/test_terminal.vim" + ((".*Test_terminal_postponed_scrollback.*" line) + (string-append line "return\n"))) #t))))) (inputs `(("gawk" ,gawk) ("ncurses" ,ncurses) ("perl" ,perl) - ("tcsh" ,tcsh))) ; For runtime/tools/vim32 + ("tcsh" ,tcsh))) ; For runtime/tools/vim32 (native-inputs - `(("libtool" ,libtool))) + `(("libtool" ,libtool) + ("tzdata" ,tzdata-for-tests))) ; For Test_strftime in test_functions.vim (home-page "https://www.vim.org/") (synopsis "Text editor based on vi") (description -- 2.24.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 29 19:33:10 2019 Received: (at 38799) by debbugs.gnu.org; 30 Dec 2019 00:33:10 +0000 Received: from localhost ([127.0.0.1]:60344 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ilizd-0000c5-Ud for submit@debbugs.gnu.org; Sun, 29 Dec 2019 19:33:10 -0500 Received: from tobias.gr ([80.241.217.52]:40886) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ilizc-0000bv-2f for 38799@debbugs.gnu.org; Sun, 29 Dec 2019 19:33:08 -0500 Received: by tobias.gr (OpenSMTPD) with ESMTP id 2e40b687 for <38799@debbugs.gnu.org>; Mon, 30 Dec 2019 00:33:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=n9LElIqUQnGWOtVl6rfgn2 74TwfobdU8AlalEFolw0Y=; b=ZRs4m2AGkU6h6bf9IkPtSlXTFwz9FXQQQ/DVlw nsoaTc09j6pCv4vpOsf5Pl1GD8IOEBMxjobQrSUpf2pew+GzBAxIGGkvNi/sBvCr 7WBt8NHcbmwMmEZxu6uxSbVDlmS8Fa6JN2iwA1aC959j0+KPVCTWgRI6/q/YpxLy wGygb11ySFBCkhN79OmytmfgkpsjnIkGNGPtNeKzUEuIfnE84Z3k/1eGR74YJmtI rEIYMrc82LuGIvwcitch5vShJ46dicM+tK/SNYpbkymyYyobBhsiVPJB5YrSqovh oSStvFlEtMPO8cqwosVHmEharcZWJ0fy/GmOLvigC5fkdUSg== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id d705e8d3 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for <38799@debbugs.gnu.org>; Mon, 30 Dec 2019 00:33:05 +0000 (UTC) From: Tobias Geerinckx-Rice To: 38799@debbugs.gnu.org Subject: Re: [bug#38799] [PATCH] gnu: vim: Update to 8.2.0055. References: <20191229173405.gkwdnohqg3gim7m3@zdrowyportier.kadziolka.net> In-reply-to: <20191229173405.gkwdnohqg3gim7m3@zdrowyportier.kadziolka.net> Date: Mon, 30 Dec 2019 01:33:05 +0100 Message-ID: <87zhfaveim.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 38799 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 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Jakub, Thank you for working so hard on this! Jakub K=C4=85dzio=C5=82ka =E5=86=99=E9=81=93=EF=BC=9A > * gnu/packages/vim.scm (vim): Update to 8.2.0055. > [arguments]: Work around new build-container-related test=20 > failures. > [native-inputs]: Add tzdata to make a test pass. This all looks good to me. I'll push it tomorrow after another look with less tired eyes, and=20 with a tiny change to the commit message to also mention the=20 removal of old work-arounds. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfo+u0AlEeO9y5k0W2Imw8BjFSTwFAl4JRcEACgkQ2Imw8BjF STzA3w/+Ig+fhOpAiNv0ZxSkhPiw0fpRUhxu4KLehS397NyTFLM4a5q76GRmGMwn 8wViMOKARKLvIOSRMTx6EyAwRT9NV2ybmdOyRTSATCv+27cabWmiaeKsQdVwtKlq vcCHYtuURHrog94ISDHQcfXiDUE30O07d5m63SgSUkR2KjJze1fZj0jsTODyta7q 2eUbiiJZEA+dp4q6g3Rd/yI6m+rYgVnDqjt8MQXUI8zkU8l92YTHYDm15aow8V1r PKBULXsawMYuNqZlTz38Xr+KnRJ/0qPm6KihJJ5SDddEHL+TJGNKbWZftMu/nikb uvDc+lSSKL+NXR39YuM2wHSpab/JYXcvGuQEovGjTeEIy4elVSbgGLOe5y7p04XF Noj2fI1vhZtpHnrB6HvEbNOpl2nv1rB0pog+6ef9l4CBjpn9in5Fa7xBYZdSI0FV sHKOhl66DkG9WSdyOv4UhDiE+CQrhYkLhcENECvEU9fpwCKRQxy+AJ6I3ZuNtHJE ayps3uKSLn1WLiNkXcp0KOQdGg0Bn3rIzFYNVHkdDAGmCUNx09otYRGD7CzhcMtt EmDEDxfZCNRX0HAIOhx+6+C0Z3rzjWprcRdXfB/Famkw4CUO2iJ64x6A6IUerOYw NAf20AlodqcMZhtgSYHxRnn2ZFR4agJFJEll+sCCMczSGZytJcM= =HjL9 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 31 15:21:40 2019 Received: (at 38799) by debbugs.gnu.org; 31 Dec 2019 20:21:40 +0000 Received: from localhost ([127.0.0.1]:35232 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1imO1M-00005D-EG for submit@debbugs.gnu.org; Tue, 31 Dec 2019 15:21:40 -0500 Received: from pat.zlotemysli.pl ([37.59.186.212]:60428) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1imO1J-00004v-S6 for 38799@debbugs.gnu.org; Tue, 31 Dec 2019 15:21:38 -0500 Received: (qmail 1229 invoked by uid 1009); 31 Dec 2019 21:21:35 +0100 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25679. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.026215 secs); 31 Dec 2019 20:21:35 -0000 Received: from unknown (HELO zdrowyportier.kadziolka.net) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with SMTP; 31 Dec 2019 21:21:35 +0100 Date: Tue, 31 Dec 2019 21:21:34 +0100 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: 38799@debbugs.gnu.org Subject: [PATCH v2] gnu: vim: Update to 8.2.0066. Message-ID: <20191231202134.o7npk5xcw3w46fw5@zdrowyportier.kadziolka.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 38799 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 (-) Vim pushed some new commits that look desirable -- 8.2.0063 seems to have fixed a crash -- so here's a new patch with a bumped version & hash. --- CUT HERE --- * gnu/packages/vim.scm (vim): Update to 8.2.0066. [arguments]: Work around new build-container-related test failures. [native-inputs]: Add tzdata to make a test pass. --- gnu/packages/vim.scm | 61 +++++++++++++++++++++++++++++++------------- 1 file changed, 43 insertions(+), 18 deletions(-) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index b33fe42ceb..efbe625998 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -67,16 +67,16 @@ (define-public vim (package (name "vim") - (version "8.1.0644") + (version "8.2.0066") (source (origin - (method git-fetch) - (uri (git-reference + (method git-fetch) + (uri (git-reference (url "https://github.com/vim/vim") (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1xksb2v8rw1zgrd5fwqvrh44lf277k85sad2y4ia1z17y7i8j2fl")))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1yrmbqfwyj2ri61ahgzrglznpy1p6f1ldqkazhyxpwl4azk4n7zx")))) (build-system gnu-build-system) (arguments `(#:test-target "test" @@ -92,26 +92,51 @@ "src/testdir/test_terminal.vim") (("/bin/sh") (which "sh"))) #t)) + (add-before 'check 'set-tzdir + (lambda* (#:key inputs #:allow-other-keys) + ;; One of the tests tests timezone-dependent functions. + (setenv "TZDIR" + (string-append (assoc-ref inputs "tzdata") + "/share/zoneinfo")) + #t)) (add-before 'check 'patch-failing-tests (lambda _ - ;; XXX A single test fails with “Can't create file /dev/stdout” (at - ;; Test_writefile_sync_dev_stdout line 5) while /dev/stdout exists. - (substitute* "src/testdir/test_writefile.vim" - (("/dev/stdout") "a-regular-file")) + ;; This test fails when run in the build container: + ;; When handling swap files, Vim needs to check whether a process + ;; with a specific PID exists. This is done with kill(pid, 0), + ;; which gives similar enough results when the process exists, but + ;; Vim does not have permission to send signals to it. + ;; + ;; This is used in the test by modifying a swap file to say + ;; it came from PID 1. This works in a normal environment, since + ;; PID 1 usually runs as root, and the test suite does not. + ;; The test even contains a check for running as root, since + ;; that's one of the situation where the test fails. + ;; + ;; However, in the build container, PID 1 isn't root, but the same + ;; user as the test suite itself. As such, we skip this test. + ;; An alternative approach would be to patch the PID used to a + ;; random 32-bit value and hope it never shows up in the test + ;; environment. + (substitute* "src/testdir/test_swap.vim" + (("if !IsRoot\\(\\)") "if 0")) - ;; XXX: This test fails when run in the build container: - ;; . - (substitute* "src/testdir/test_search.vim" - ((".*'Test_incsearch_substitute_03'.*" all) - (string-append "\"" all "\n"))) + ;; This test checks how the terminal looks after executing some + ;; actions. The path of the bash binary is shown, which results in + ;; a difference being detected. Patching the expected result is + ;; non-trivial due to the special format used, so skip the test. + (substitute* "src/testdir/test_terminal.vim" + ((".*Test_terminal_postponed_scrollback.*" line) + (string-append line "return\n"))) #t))))) (inputs `(("gawk" ,gawk) ("ncurses" ,ncurses) ("perl" ,perl) - ("tcsh" ,tcsh))) ; For runtime/tools/vim32 + ("tcsh" ,tcsh))) ; For runtime/tools/vim32 (native-inputs - `(("libtool" ,libtool))) + `(("libtool" ,libtool) + ("tzdata" ,tzdata-for-tests))) ; For Test_strftime in test_functions.vim (home-page "https://www.vim.org/") (synopsis "Text editor based on vi") (description -- 2.24.1 From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 31 17:49:29 2019 Received: (at 38799-done) by debbugs.gnu.org; 31 Dec 2019 22:49:29 +0000 Received: from localhost ([127.0.0.1]:35307 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1imQKP-0005fZ-KI for submit@debbugs.gnu.org; Tue, 31 Dec 2019 17:49:29 -0500 Received: from tobias.gr ([80.241.217.52]:35450) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1imQKN-0005fP-Ae for 38799-done@debbugs.gnu.org; Tue, 31 Dec 2019 17:49:28 -0500 Received: by tobias.gr (OpenSMTPD) with ESMTP id 18455724; Tue, 31 Dec 2019 22:49:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=preKsrRqRB6GR9pXIKsCpS yhO8fsfMbqu5oAsg+7gcQ=; b=fedZMm+sb8I9EH4UT6m5ZOHtC27XB2WiaxV1QM IMn8MQKYaAiRcNJH8CS1i9mBv4EYsRXZLNSIPS+qdADoJ6NTHeHsHka32JwALoHz sWEXBA+XWbiXr0JjWwucy0GIcf3H51bTZc1oFxBM6s1VSjG8ug+uCS4qkDKwK8rn /YW/4bFlO3Kyrs2xck+6R4qfOceUyS5+0/mDqBFW1fYNSp8RGAdWMB2DFwu5LufE 9Vh0uGZ0hfcLz0W8EN2pMCRMbbjdmC4fbCDN5SjHpLyWZ7il1WDEhGpjbPZnv5MG LFgFCExhhK20VXKJDDlgi0DAKMJ4t+7k+KXuSg7nsRgMQfgA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id e203c0ac (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Tue, 31 Dec 2019 22:49:25 +0000 (UTC) From: Tobias Geerinckx-Rice To: 38799-done@debbugs.gnu.org, Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= Subject: Re: [bug#38799] [PATCH v2] gnu: vim: Update to 8.2.0066. References: <20191229173405.gkwdnohqg3gim7m3@zdrowyportier.kadziolka.net> <20191231202134.o7npk5xcw3w46fw5@zdrowyportier.kadziolka.net> In-reply-to: <20191231202134.o7npk5xcw3w46fw5@zdrowyportier.kadziolka.net> Date: Tue, 31 Dec 2019 23:49:23 +0100 Message-ID: <87woacun4c.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 38799-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: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Jakub, Jakub K=C4=85dzio=C5=82ka =E5=86=99=E9=81=93=EF=BC=9A > Vim pushed some new commits that look desirable -- 8.2.0063=20 > seems to > have fixed a crash -- so here's a new patch with a bumped=20 > version & > hash. Thank you! I've made only tiny cosmetic changes: =2D Added a copyright line for you as discussed on IRC. =2D I agree with your source indentation fixes, but they make this=20 patch less clear. Let's keep them for when we ever switch to=20 URL-FETCH, for example. =2D Shortened the MegaComment =E2=80=94 it was very clear (thank you!) but= =20 longer than is customary. =2D The awkward indentation of the tzdata-for-tests comment bothered=20 me. I replaced it with a less detailed but, again, customary=20 variant. It's not like something will be silently missing if=20 anyone tries removing it: the test suite will fail, loudly. Linted and pushed as 9efcc4948143a845355f7869fe05dbcca0f74a34.=20 Happy 2020! Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfo+u0AlEeO9y5k0W2Imw8BjFSTwFAl4L0HQACgkQ2Imw8BjF STx5vw//WmlPP8ItJkRm8RCva/HENsfRXUOvyG/BwG5spiJAp/ura7l0+4lhHahg lTY/i7SLpPh/h6XpKMuJ7LG3DB5EGDTSXwEdYBxeC0AQ3ouPg3ICsgW47T/jODkk j1e6Vn9Q9a984OhJ7uQDthBpot4RK2z3yCTnzT2mHG+nLeAsOJ8kR1UPfJTXCBvP AH59tTXqWzPUikScj628nY74AFwUupUbxlsJH6IxaQNqEgOtUZX07n/8l5GOG/0L y8yrXHLspVEKRhLDDXKExwXiCw+Ri/vUhLscQaQkc6v4Kjz9mHbBp8yVbzfJv9Ew F+ktOeNCpjhCVTF41UuOEl2MFah1H1MwXR9Fpql+hRB0U9fJIhorXLvNrSSNl3LE BCdjLhw724Xa1EuYqcwLUHeu5ZaAK/f3b928jCzOdVpaqrwzkEo7KU8lyLJaHhwB qPe9QlyYF4ovsDGBrxOSec5IIca/1NuIm7JpeEYOXK+FUP4YNvXTGUisuemx7G1o 5qO5KuYjnKYkyEBPI/th21nl5z8st8dCD70HhSVKDou/nt+CvFOAlpQLwNvDqAXW 6CB3/0G/9RgIWmPXMhC+BFV2Ndfz0nkKHQ3rKCZza8Mq4Od9eUXRl1YOQinF9AYZ Cq+kRpZMVaRzEz4dR7/gJhUa91n800iRML632mnEisbG+CqS87g= =XXw+ -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Sep 05 20:36:54 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 29 Jan 2020 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