From unknown Fri Jun 20 05:37:12 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#34344 <34344@debbugs.gnu.org> To: bug#34344 <34344@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add guile-squee. Reply-To: bug#34344 <34344@debbugs.gnu.org> Date: Fri, 20 Jun 2025 12:37:12 +0000 retitle 34344 [PATCH] gnu: Add guile-squee. reassign 34344 guix-patches submitter 34344 Christopher Baines severity 34344 normal tag 34344 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 06 06:13:18 2019 Received: (at submit) by debbugs.gnu.org; 6 Feb 2019 11:13:18 +0000 Received: from localhost ([127.0.0.1]:34056 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grL8m-0005tu-8E for submit@debbugs.gnu.org; Wed, 06 Feb 2019 06:13:18 -0500 Received: from eggs.gnu.org ([209.51.188.92]:37768) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grL8k-0005tf-9C for submit@debbugs.gnu.org; Wed, 06 Feb 2019 06:13:15 -0500 Received: from lists.gnu.org ([209.51.188.17]:37532) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1grL8e-0000MK-4n for submit@debbugs.gnu.org; Wed, 06 Feb 2019 06:13:08 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52145) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1grL8d-0008F3-5y for guix-patches@gnu.org; Wed, 06 Feb 2019 06:13:07 -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.8 required=5.0 tests=BAYES_50,UNPARSEABLE_RELAY autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1grL8c-0000LY-AE for guix-patches@gnu.org; Wed, 06 Feb 2019 06:13:07 -0500 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:47240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1grL8c-0000Km-4h for guix-patches@gnu.org; Wed, 06 Feb 2019 06:13:06 -0500 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 725E416BB0 for ; Wed, 6 Feb 2019 11:13:03 +0000 (GMT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 50b84562 for ; Wed, 6 Feb 2019 11:13:03 +0000 (UTC) From: Christopher Baines To: guix-patches@gnu.org Subject: [PATCH] gnu: Add guile-squee. Date: Wed, 6 Feb 2019 11:13:03 +0000 Message-Id: <20190206111303.3476-1-mail@cbaines.net> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2a01:7e00::f03c:91ff:fe69:8da9 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit 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: -0.0 (/) * gnu/packages/guile-xyz.scm (guile-squee): New variable. --- gnu/packages/guile-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 117d309c92..f249761ebc 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -560,6 +560,45 @@ HTML (via SXML) or any other format for rendering.") It has a nice, simple s-expression based syntax.") (license license:lgpl3+))) =20 +(define-public guile-squee + (let ((commit "a85902a92bf6f58a1d35fd974a01ade163deda8d") + (revision "0")) + (package + (name "guile-squee") + (version (string-append "0-" revision "." (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://notabug.org/cwebber/guile-squee.git"= ) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0p1lpsp4kx57j3ai1dkxilm4ziavzzx8wbbc42m3hpziq0a7qz5z"= )))) + (build-system guile-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "squee.scm" + (("dynamic-link \"libpq\"") + (string-append + "dynamic-link \"" + (assoc-ref inputs "postgresql") "/lib/libpq.so" + "\""))) + #t))))) + (inputs + `(("postgresql" ,postgresql))) + (native-inputs + `(("guile" ,guile-2.2))) + (home-page "https://notabug.org/cwebber/guile-squee") + (synopsis "Connect to PostgreSQL using Guile") + (description + "@code{squee} is a Guile library for connecting to PostgreSQL dat= abases +using Guile's foreign function interface.") + (license license:gpl3+)))) + (define-public guile-colorized (package (name "guile-colorized") --=20 2.20.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 06 08:00:46 2019 Received: (at 34344) by debbugs.gnu.org; 6 Feb 2019 13:00:47 +0000 Received: from localhost ([127.0.0.1]:34119 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grMoo-0002Jr-NU for submit@debbugs.gnu.org; Wed, 06 Feb 2019 08:00:46 -0500 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21065) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grMon-0002Jk-EU for 34344@debbugs.gnu.org; Wed, 06 Feb 2019 08:00:46 -0500 ARC-Seal: i=1; a=rsa-sha256; t=1549458033; cv=none; d=zoho.com; s=zohoarc; b=mWCcQnb9I4st9sfSmFTKyKVo04ie2aGPdGkJ7Da3aAb5D3T0J4TnSF8oB93rvnA3UdrKJRLS3W9CjWHRlfmgKVb++fY/KUKqt0Z+yKSfQvpeYLTE9s6fX6CrmwFXGCozXMZM6aCL1MiUnQ4Tetad2Dook3E1Hz7GN6fPw8fK/u4= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1549458033; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To:ARC-Authentication-Results; bh=x9AYnpzMURuxAvL0c9NAHXakKWEOhyDILbtQq7hxAmM=; b=SzqkLrXs2zhrJ4u7Egk83CoZeRN7xkqO3GARHB6rHsqM/JGK4NhR+YHmeTTASlu7u3rgSJvNwBmVSVxd+smNNKUMDvZKY3hD7EljXZzIgjoLAzDQSGG1gYKpzEwVSURPU/7bkwHGm6Bbi41AJQdIf4iRSHlOkubP+FQUmCfUtxU= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1549458033; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type; l=136; bh=x9AYnpzMURuxAvL0c9NAHXakKWEOhyDILbtQq7hxAmM=; b=La+FvmG/bgNg4TfajbP23xnCBu5RpLsSo6ggxUGdmgOXCPoExhT0axY5TyWAofND it8f59sl7YBsyi+UNxxxlan4ys9PJ4lL4tim/BMWLGW+NsBQJvuJfD6r67Qu5eEAdYh 7p05FzMB7RavuNsxkrxMWVa9hOJvasjsgyEHchb4= Received: from localhost (141.80.247.165 [141.80.247.165]) by mx.zohomail.com with SMTPS id 154945803145333.998040196105876; Wed, 6 Feb 2019 05:00:31 -0800 (PST) References: <20190206111303.3476-1-mail@cbaines.net> User-agent: mu4e 1.0; emacs 26.1 From: Ricardo Wurmus To: Christopher Baines Subject: Re: [bug#34344] [PATCH] gnu: Add guile-squee. In-reply-to: <20190206111303.3476-1-mail@cbaines.net> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Wed, 06 Feb 2019 14:00:28 +0100 Message-ID: <877eedgjgz.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 34344 Cc: 34344@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 (-) Christopher Baines writes: > * gnu/packages/guile-xyz.scm (guile-squee): New variable. LGTM! -- Ricardo From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 06 08:03:53 2019 Received: (at 34344) by debbugs.gnu.org; 6 Feb 2019 13:03:53 +0000 Received: from localhost ([127.0.0.1]:34123 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grMrp-0002OS-5L for submit@debbugs.gnu.org; Wed, 06 Feb 2019 08:03:53 -0500 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21138) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grMrn-0002OK-L5 for 34344@debbugs.gnu.org; Wed, 06 Feb 2019 08:03:52 -0500 ARC-Seal: i=1; a=rsa-sha256; t=1549458229; cv=none; d=zoho.com; s=zohoarc; b=VEa5PIrpYgIjO521gMZpBlEf4eGNzhxmtsvGww9uQgwRVxVGszokOltfcbfhCF8ALLa4fTeTapjVQ2zt8QfixDmU+Wg9GXk7NMEeeSNzS5xeE+kAxhS+l2uVk8EnqpIOirnHJwvrqzwnyaNbrYAJz2WlwVWQOYxQ32ZE2Kr3Bkw= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1549458229; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To:ARC-Authentication-Results; bh=1SthnvpS8mOVdmGinm92bkg0iRK0zfBqszjIS95oVBQ=; b=GoJbrkS7NGv+Q0rijDuQkvLDRsOH+WZhjdqY+lpE+rFRqaWLPOyb1Cis5TbSUDPD0DluiRu+Z/tEM4Upz9GCzTXQlSfN+5rEojaDoONdBY+J2JIN81kFZDFGuDbGN7Cvnz+W4Mfp1I7udw5q9GlUtC2qzY3VuR7lI7DfBk9ElO8= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1549458229; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type; l=263; bh=1SthnvpS8mOVdmGinm92bkg0iRK0zfBqszjIS95oVBQ=; b=iuopGU+rHMjVagh0dMbQFsijbqCdGv/HHyc6RWaiJlsjM8CW3NCXw1ZbuMAFHY/f 4a5FUj3aMTFRw32ReOLnZI/Gf1vFVQJWtaAN53SW51qw9nMSxQV9ggN0u1xOZSoIG2h UeyJsGDv2zDK8hfrmzK8m4PeuN+VYF569YjgEqAg= Received: from localhost (141.80.247.165 [141.80.247.165]) by mx.zohomail.com with SMTPS id 1549458226991453.2663446270793; Wed, 6 Feb 2019 05:03:46 -0800 (PST) References: <20190206111303.3476-1-mail@cbaines.net> <877eedgjgz.fsf@elephly.net> User-agent: mu4e 1.0; emacs 26.1 From: Ricardo Wurmus To: Christopher Baines Subject: Re: [bug#34344] [PATCH] gnu: Add guile-squee. In-reply-to: <877eedgjgz.fsf@elephly.net> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Wed, 06 Feb 2019 14:03:43 +0100 Message-ID: <875ztxgjbk.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 34344 Cc: 34344@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 (-) Ricardo Wurmus writes: > Christopher Baines writes: > >> * gnu/packages/guile-xyz.scm (guile-squee): New variable. > > LGTM! Actually, no! The license is wrong. It should be LGPLv3+, not GPLv3+. -- Ricardo From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 06 08:12:17 2019 Received: (at 34344-done) by debbugs.gnu.org; 6 Feb 2019 13:12:17 +0000 Received: from localhost ([127.0.0.1]:34128 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grMzw-0002ah-WD for submit@debbugs.gnu.org; Wed, 06 Feb 2019 08:12:17 -0500 Received: from li622-129.members.linode.com ([212.71.249.129]:37278 helo=mira.cbaines.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1grMzv-0002aZ-7e for 34344-done@debbugs.gnu.org; Wed, 06 Feb 2019 08:12:16 -0500 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 74AE416BB7; Wed, 6 Feb 2019 13:12:13 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id e17f586d; Wed, 6 Feb 2019 13:12:13 +0000 (UTC) References: <20190206111303.3476-1-mail@cbaines.net> <877eedgjgz.fsf@elephly.net> User-agent: mu4e 1.0; emacs 26.1 From: Christopher Baines To: Ricardo Wurmus Subject: Re: [bug#34344] [PATCH] gnu: Add guile-squee. In-reply-to: <877eedgjgz.fsf@elephly.net> Date: Wed, 06 Feb 2019 13:12:12 +0000 Message-ID: <87pns55adv.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 34344-done Cc: 34344-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.0 (-) --=-=-= Content-Type: text/plain Ricardo Wurmus writes: > Christopher Baines writes: > >> * gnu/packages/guile-xyz.scm (guile-squee): New variable. > > LGTM! Great, I've pushed this to master now. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAlxa3SxfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE 9Xc+3w//VgqGhqYFHlT4tqqKDJxutvcftUCL4nhO3v0cD8nNXQ7GcQRCfto/wjcn N4CVGOzuctb8ZgxWyG32yNpl0V3lAthDBrQ5+JlpQicQm3O7tUA4IEIqaEYmDy8m JqUQCfH+uztb3xEwymZbLvjVeMBQfQoB3Z28zvgAkiYH3JfoC4mJ+vepPKdZoicd zZNnlTWWpRtkFfT8fyG4pzrpadgdfaF9OjQXK6/mjIzARR+AswD4h/DBAPvzSEYg q9obDGj5h7HIQ/zgzr/wjQ5wFy/GatpEte/FBkNgpdXDP1aLE8ftYnHoYguKLVap cXRjJ5BAppFSjjbklUkkgPcr3a8dnju+D7awXnsaRhsRcJ9eUpRPq6uIWboGylRZ wR/YxGJGgZQ1GJ9nB2wk44XrbwQJio82vFL+k2i96XbZqBPtz070tcqD7uebK1g6 +yOBp5aKSNnyRDhnrKoHh0bxi13GH7UFCAV5wdNiZ1lP9aYNg65+IzM0eMBJfymX IVP3/EJVRHbdyc0MmV6atMi+THJrPzqGKysYrkrs6kau2dNJvWaA1sH23085VP6C HSs7KqYCZHmdMb9JsmDVDIJ0sRBaeYQY5DtqvaPwdvbqqbJoDvfQkfnaVlYMnP6/ F9HG8fzWZAnbj9wRcc4nn/PAaToHCCmvcIom11TjIKKNcI8SFpQ= =FKT2 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 08 05:28:31 2019 Received: (at 34344) by debbugs.gnu.org; 8 Feb 2019 10:28:31 +0000 Received: from localhost ([127.0.0.1]:38934 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gs3OY-0007WK-QU for submit@debbugs.gnu.org; Fri, 08 Feb 2019 05:28:30 -0500 Received: from li622-129.members.linode.com ([212.71.249.129]:38786 helo=mira.cbaines.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gs3OX-0007WC-A3 for 34344@debbugs.gnu.org; Fri, 08 Feb 2019 05:28:29 -0500 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 4DBF816B51; Fri, 8 Feb 2019 10:28:25 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id dcd0cfbd; Fri, 8 Feb 2019 10:28:25 +0000 (UTC) References: <20190206111303.3476-1-mail@cbaines.net> <877eedgjgz.fsf@elephly.net> <875ztxgjbk.fsf@elephly.net> User-agent: mu4e 1.0; emacs 26.1 From: Christopher Baines To: Ricardo Wurmus Subject: Re: [bug#34344] [PATCH] gnu: Add guile-squee. In-reply-to: <875ztxgjbk.fsf@elephly.net> Date: Fri, 08 Feb 2019 10:28:24 +0000 Message-ID: <87mun660c7.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 34344 Cc: 34344@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 (-) --=-=-= Content-Type: text/plain Ricardo Wurmus writes: > Ricardo Wurmus writes: > >> Christopher Baines writes: >> >>> * gnu/packages/guile-xyz.scm (guile-squee): New variable. >> >> LGTM! > > Actually, no! The license is wrong. It should be LGPLv3+, not GPLv3+. Ah yes, I should have paid more attention. I've pushed a correction as [1]. 1: 6fd72f7094885dc3dbb10431996c445251094915 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAlxdWchfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE 9XflCxAAsOWCFD40BIryAWiuFHvEytsCF5q/SjVvCfPKC5aYs1XTvROAKJSUNF+Q fAsiqA49yOcNuL/ZsBNPuwkJnz6W1Asi2jcCLh0zzAeYpn6FRtTvyU9SRIvKCDfD qGqiOYxMTQy5Jzce0X6mRNxNSGWDJIb+vCaUpGq+RNnEH82YwXkCd6QhJjJqhmmg gujIC+QySToCeMnaUU7eAlFJQzAaglVslPpP1ywSw9uv0w0XXgNugb/OVzi1nzhM 4mep/k9MOjbHB1zwKhF6BIYweDpUZrFhhS7I/NjOGP4Ks5mZb4CP4zwUgaa5m/ij aArrRsAEThP4W4hvPlekGeGMi/08XCrINRdSyLbJdSoFyKj4ZiOeJ/4KSeV3VYQq aBseMQVUqu0FqJLZQrJ3w4XtmbPFbOJ7JRG48LFmcfb/NYuQe9f13CnlRfIFnpVC NA7Ww2fsPtivJEbi7LROTX25BsixwF5zRv2ajPiEIheWCauS3+zkWTtiN8qMtKgs iuQuhEtcDKKYSrwKhB1kvwN3zlOd1TWGjH4u8kqLhSyigtKsKJ8zLlmr1lqjMDiC /IM8S6TUufJUwORU69qO49e/1XArFi/01byozMM18xZOUWKh7BsPpQbUGOu/vcR7 Nubztzsc/mqP0jxZMOKr7S3qCaPMLgcR1JaIOptDnOWFI7WRgq0= =G/Mv -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 20 05:37:12 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, 08 Mar 2019 12:24:04 +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