From unknown Sun Jun 15 08:42:54 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#59218 <59218@debbugs.gnu.org> To: bug#59218 <59218@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add navit Reply-To: bug#59218 <59218@debbugs.gnu.org> Date: Sun, 15 Jun 2025 15:42:54 +0000 retitle 59218 [PATCH] gnu: Add navit reassign 59218 guix-patches submitter 59218 Denis 'GNUtoo' Carikli severity 59218 normal tag 59218 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Nov 12 10:25:06 2022 Received: (at submit) by debbugs.gnu.org; 12 Nov 2022 15:25:06 +0000 Received: from localhost ([127.0.0.1]:48793 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otsNV-00053P-G9 for submit@debbugs.gnu.org; Sat, 12 Nov 2022 10:25:05 -0500 Received: from lists.gnu.org ([209.51.188.17]:40162) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otsNU-00053I-H9 for submit@debbugs.gnu.org; Sat, 12 Nov 2022 10:25:05 -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 1otsNU-0007Vd-Bu for guix-patches@gnu.org; Sat, 12 Nov 2022 10:25:04 -0500 Received: from cyberdimension.org ([2001:910:1314:ffff::1] helo=gnutoo.cyberdimension.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1otsNR-0005Ol-ST for guix-patches@gnu.org; Sat, 12 Nov 2022 10:25:03 -0500 Received: from gnutoo.cyberdimension.org (localhost [127.0.0.1]) by cyberdimension.org (OpenSMTPD) with ESMTP id ef9bf645; Sat, 12 Nov 2022 15:18:40 +0000 (UTC) Received: from localhost.localdomain (localhost [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id af02e3de; Sat, 12 Nov 2022 15:18:40 +0000 (UTC) From: Denis 'GNUtoo' Carikli To: guix-patches@gnu.org Subject: [PATCH] gnu: Add navit Date: Sat, 12 Nov 2022 16:24:55 +0100 Message-Id: <20221112152455.7436-1-GNUtoo@cyberdimension.org> X-Mailer: git-send-email 2.38.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:910:1314:ffff::1; envelope-from=GNUtoo@cyberdimension.org; helo=gnutoo.cyberdimension.org 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: Denis 'GNUtoo' Carikli 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/geo.scm (navit): New variable. Signed-off-by: Denis 'GNUtoo' Carikli --- gnu/packages/geo.scm | 106 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 9895756864..9622e76d67 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2021, 2022 Nikolay Korotkiy ;;; Copyright © 2022 Roman Scherer ;;; Copyright © 2022 Maxim Cournoyer +;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; ;;; This file is part of GNU Guix. ;;; @@ -114,6 +115,8 @@ (define-module (gnu packages geo) #:use-module (gnu packages python-xyz) #:use-module (gnu packages qt) #:use-module (gnu packages readline) + #:use-module (gnu packages sdl) + #:use-module (gnu packages speech) #:use-module (gnu packages swig) #:use-module (gnu packages sqlite) #:use-module (gnu packages textutils) @@ -2769,3 +2772,106 @@ (define-public gplates reconstructions of geological and paleogeographic features through geological time. Interactively visualize vector, raster and volume data.") (license license:gpl2+))) + +(define-public navit + (package + (name "navit") + (version "0.5.6") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/navit-gps/navit") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1jhlif0sc5m8wqb5j985g1xba2ki7b7mm14pkvzdghjd0q0gf15s")) + (file-name (git-file-name name version)))) + (build-system cmake-build-system) + (arguments + (list + ;; There is no tests + #:tests? #f + ;; With -DSAMPLE_MAP=TRUE (the default), it tries to download a + ;; map during the build process. + #:configure-flags #~(list "-DSAMPLE_MAP=FALSE") + #:phases + #~(modify-phases + %standard-phases + (add-after + 'unpack 'patch-navit-config + (lambda _ + ;; For now this package only supports SDL, so if we keep + ;; the configuration as-is, Navit doesn't start. + (substitute* + "navit/navit_shipped.xml" + (("") + "")) + ;; Users are expected to be able to add XML files inside + ;; $NAVIT_SHAREDIR, however that directory is in the store. + (substitute* + "navit/navit_shipped.xml" + (("") + "")) + ;; Navit also works without GPS but in that case there is + ;; no automatic zooming, so we need zoom buttons to be able + ;; to manually zoom in or out. + (substitute* + "navit/navit_shipped.xml" + (((string-append + ""))))) + (add-before + 'build 'set-cache + ;; During the build, svg icons are converted in different + ;; formats, and this needs XDG_CACHE_HOME to work. + (lambda _ + (setenv "XDG_CACHE_HOME" "/tmp/xdg-cache")))))) + (inputs (list dbus-glib + espeak + freeglut + freeimage + freetype + glib + gettext-minimal + gpsd + gdk-pixbuf + imlib2 + python + sdl + sdl-image)) + (native-inputs (list fontconfig + (librsvg-for-system) pkg-config)) + (home-page "https://www.navit-project.org") + (synopsis "Car navigation system with routing engine that uses vector maps data") + (description "Navit is a car navigation system with a routing engine. + +It is meant to work with touchscreen devices, but it also works +without a touchscreen. It also supports text to speech. + +It can be configured extensively through its own configuration file +format. For instance we can configure the graphical interface, and +which map data is to be displayed at which zoom level. + +It supports different routing profiles: bike, car, car_avoid_toll, +car_pedantic, car_shortest, horse, pedestrian, truck. + +It can use gpsd or NMEA GPS directly to get position data. It also +works without GPS: in this case users can also enter position data +directly. + +It can also be used to log GPS data to files using the GPX or NMEA +formats, or to replay NMEA data. + +For maps, it can uses its own \"binfile\" map format, or Garmin map +file format, and data from OpenStreetMap, Garmin maps, Marco Polo +Grosser Reiseplaner, Routeplaner Europa 2007, Map + Route.") + (license license:gpl2))) -- 2.38.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Nov 16 11:43:20 2022 Received: (at 59218) by debbugs.gnu.org; 16 Nov 2022 16:43:20 +0000 Received: from localhost ([127.0.0.1]:57979 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ovLVP-0007eb-Sy for submit@debbugs.gnu.org; Wed, 16 Nov 2022 11:43:20 -0500 Received: from cyberdimension.org ([80.67.179.20]:55210 helo=gnutoo.cyberdimension.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ovLVO-0007eQ-JJ for 59218@debbugs.gnu.org; Wed, 16 Nov 2022 11:43:19 -0500 Received: from gnutoo.cyberdimension.org (localhost [127.0.0.1]) by cyberdimension.org (OpenSMTPD) with ESMTP id 8cc2ed80 for <59218@debbugs.gnu.org>; Wed, 16 Nov 2022 16:42:27 +0000 (UTC) Received: from primary_laptop (localhost [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id dc51b0a2 for <59218@debbugs.gnu.org>; Wed, 16 Nov 2022 16:42:27 +0000 (UTC) Date: Wed, 16 Nov 2022 17:42:55 +0100 From: Denis 'GNUtoo' Carikli To: 59218@debbugs.gnu.org Subject: Re: gnu: Add navit Message-ID: <20221116174255.393651dc@primary_laptop> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.30; i686-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/IhV2pExngiv8/M/_GIyUQGD"; protocol="application/pgp-signature"; micalg=pgp-sha256 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 59218 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 (-) --Sig_/IhV2pExngiv8/M/_GIyUQGD Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi, I don't know what happened but there is a small issue to fix: > gnu/packages/geo.scm:2855:16: navit@0.5.6: sentences in description > should be followed by two spaces; possible infractions at 142, 252, > 548 checking navit@0.5.6 [derivation]... Denis. --Sig_/IhV2pExngiv8/M/_GIyUQGD Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEeC+d2+Nrp/PU3kkGX138wUF34mMFAmN1Ew8ACgkQX138wUF3 4mMc8w//Unv4FBg7oyAe2+pDfh4L0Hg28MaZeGrFsRaryHpZFdHwiwhf9Va2cD+t +Jw5TXB8P2y7CWheBKCa1bu8Lqp4WWseMAdMSLBE+/5akzjZI1PVwou+2Uni1v8/ GVPaM5WRYn0OF5zPDXPAskUiPZTZ930yi1lR22EP+fY48kKj5bP7qnFzAOPSWrbX tISFb91v00RQEeSVOi+r9ykLULedcmWp+2dWdTN7kH0GjgExdmwYKydT9PYEpB5a gzGD9xvmd2ANKMd0Kc9rHdbTb+3glVly6Et5eGLQX/igGpRDtK8RQP3J7o1c5qHx Y0zNU8apLhDyIeGCHNf1cqZKEJf347MsTqnvGOtNo9UA44+KYL+wjckdYrnKbs3G EFqyb/UdcCAyF7nmTd/EeRJrf3MxuBOpzTcdxQITo0P64IsRwvMXKzhWtxKDYTB5 ULMyNwOo5MU+8ldUdPVCcEewvLyOOc5dFQW87YFFbtEQ4BOAlnRSkkk3yzIFjNGE B8RA3PdDX00J0nlcAv5AZdb/U/BqnbIjx4TgtulkAw/WtRGd21QRJeXoy+L9OLPI GJ2aCg+lhEUVPz1UYmc7HLbJ6TRhqmMdAvkj3K2nTszoaKPr7+nQo/iorEC6OzVc T2tPSuqwQABT0P5FKc0Z6F8RVCVnhTpWqZj/BxGhdV1PlsYbGuc= =Z/Rd -----END PGP SIGNATURE----- --Sig_/IhV2pExngiv8/M/_GIyUQGD-- From debbugs-submit-bounces@debbugs.gnu.org Wed Nov 16 13:11:38 2022 Received: (at 59218) by debbugs.gnu.org; 16 Nov 2022 18:11:38 +0000 Received: from localhost ([127.0.0.1]:58101 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ovMss-0001TV-Ap for submit@debbugs.gnu.org; Wed, 16 Nov 2022 13:11:38 -0500 Received: from cyberdimension.org ([80.67.179.20]:48890 helo=gnutoo.cyberdimension.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ovMsq-0001TN-Uf for 59218@debbugs.gnu.org; Wed, 16 Nov 2022 13:11:37 -0500 Received: from gnutoo.cyberdimension.org (localhost [127.0.0.1]) by cyberdimension.org (OpenSMTPD) with ESMTP id b58d64d4; Wed, 16 Nov 2022 18:10:46 +0000 (UTC) Received: from localhost.localdomain (localhost [::1]) by gnutoo.cyberdimension.org (OpenSMTPD) with ESMTP id 043ce1df; Wed, 16 Nov 2022 18:10:46 +0000 (UTC) From: Denis 'GNUtoo' Carikli To: 59218@debbugs.gnu.org Subject: [PATCH v2] gnu: Add navit Date: Wed, 16 Nov 2022 19:11:29 +0100 Message-Id: <20221116181129.5505-1-GNUtoo@cyberdimension.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 59218 Cc: Denis 'GNUtoo' Carikli 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/geo.scm (navit): New variable. Signed-off-by: Denis 'GNUtoo' Carikli --- gnu/packages/geo.scm | 106 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 9895756864..48cd964583 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2021, 2022 Nikolay Korotkiy ;;; Copyright © 2022 Roman Scherer ;;; Copyright © 2022 Maxim Cournoyer +;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; ;;; This file is part of GNU Guix. ;;; @@ -114,6 +115,8 @@ (define-module (gnu packages geo) #:use-module (gnu packages python-xyz) #:use-module (gnu packages qt) #:use-module (gnu packages readline) + #:use-module (gnu packages sdl) + #:use-module (gnu packages speech) #:use-module (gnu packages swig) #:use-module (gnu packages sqlite) #:use-module (gnu packages textutils) @@ -2769,3 +2772,106 @@ (define-public gplates reconstructions of geological and paleogeographic features through geological time. Interactively visualize vector, raster and volume data.") (license license:gpl2+))) + +(define-public navit + (package + (name "navit") + (version "0.5.6") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/navit-gps/navit") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1jhlif0sc5m8wqb5j985g1xba2ki7b7mm14pkvzdghjd0q0gf15s")) + (file-name (git-file-name name version)))) + (build-system cmake-build-system) + (arguments + (list + ;; There is no tests + #:tests? #f + ;; With -DSAMPLE_MAP=TRUE (the default), it tries to download a + ;; map during the build process. + #:configure-flags #~(list "-DSAMPLE_MAP=FALSE") + #:phases + #~(modify-phases + %standard-phases + (add-after + 'unpack 'patch-navit-config + (lambda _ + ;; For now this package only supports SDL, so if we keep + ;; the configuration as-is, Navit doesn't start. + (substitute* + "navit/navit_shipped.xml" + (("") + "")) + ;; Users are expected to be able to add XML files inside + ;; $NAVIT_SHAREDIR, however that directory is in the store. + (substitute* + "navit/navit_shipped.xml" + (("") + "")) + ;; Navit also works without GPS but in that case there is + ;; no automatic zooming, so we need zoom buttons to be able + ;; to manually zoom in or out. + (substitute* + "navit/navit_shipped.xml" + (((string-append + ""))))) + (add-before + 'build 'set-cache + ;; During the build, svg icons are converted in different + ;; formats, and this needs XDG_CACHE_HOME to work. + (lambda _ + (setenv "XDG_CACHE_HOME" "/tmp/xdg-cache")))))) + (inputs (list dbus-glib + espeak + freeglut + freeimage + freetype + glib + gettext-minimal + gpsd + gdk-pixbuf + imlib2 + python + sdl + sdl-image)) + (native-inputs (list fontconfig + (librsvg-for-system) pkg-config)) + (home-page "https://www.navit-project.org") + (synopsis "Car navigation system with routing engine that uses vector maps data") + (description "Navit is a car navigation system with a routing engine. + +It is meant to work with touchscreen devices, but it also works +without a touchscreen. It also supports text to speech. + +It can be configured extensively through its own configuration file +format. For instance we can configure the graphical interface, and +which map data is to be displayed at which zoom level. + +It supports different routing profiles: bike, car, car_avoid_toll, +car_pedantic, car_shortest, horse, pedestrian, truck. + +It can use gpsd or NMEA GPS directly to get position data. It also +works without GPS: in this case users can also enter position data +directly. + +It can also be used to log GPS data to files using the GPX or NMEA +formats, or to replay NMEA data. + +For maps, it can uses its own \"binfile\" map format, or Garmin map +file format, and data from OpenStreetMap, Garmin maps, Marco Polo +Grosser Reiseplaner, Routeplaner Europa 2007, Map + Route.") + (license license:gpl2))) base-commit: 2757de2e2b271d87f6f72ba4161c2225fbdc9e78 -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 17 07:07:58 2022 Received: (at submit) by debbugs.gnu.org; 17 Nov 2022 12:07:58 +0000 Received: from localhost ([127.0.0.1]:59405 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ovdgT-0002Ya-NQ for submit@debbugs.gnu.org; Thu, 17 Nov 2022 07:07:57 -0500 Received: from lists.gnu.org ([209.51.188.17]:57658) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ovdgR-0002YS-F6 for submit@debbugs.gnu.org; Thu, 17 Nov 2022 07:07:55 -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 1ovdgM-0000Gq-BK for guix-patches@gnu.org; Thu, 17 Nov 2022 07:07:55 -0500 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 1ovdgJ-00078i-9J for guix-patches@gnu.org; Thu, 17 Nov 2022 07:07:48 -0500 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:54d1:d5d4:280e:f699]) by mira.cbaines.net (Postfix) with ESMTPSA id 69BEE27BBE9; Thu, 17 Nov 2022 12:07:44 +0000 (GMT) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 7d0c6c08; Thu, 17 Nov 2022 12:07:44 +0000 (UTC) References: <20221112152455.7436-1-GNUtoo@cyberdimension.org> <20221116181129.5505-1-GNUtoo@cyberdimension.org> User-agent: mu4e 1.8.11; emacs 28.2 From: Christopher Baines To: Denis 'GNUtoo' Carikli Subject: Re: [bug#59218] [PATCH v2] gnu: Add navit Date: Thu, 17 Nov 2022 12:05:56 +0000 In-reply-to: <20221116181129.5505-1-GNUtoo@cyberdimension.org> Message-ID: <87iljdeqcz.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: 59218-done@debbugs.gnu.org, guix-patches@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 Denis 'GNUtoo' Carikli writes: > * gnu/packages/geo.scm (navit): New variable. > > Signed-off-by: Denis 'GNUtoo' Carikli > --- > gnu/packages/geo.scm | 106 +++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 106 Looks good to me. I added a fullstop to the first line of the commit message, tweaked a comment and also tweaked the indentation and pushed to master as b64a80258b8bef89f560f47bf84b71061c6127a6. Thanks, Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmN2JAxfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XcKew//TWYMzKP69icqWnZd9Ceu3sYTg8EuAqEd DuI/yiyXE3hvQbrRv5mFdHAIUo+W8iQI04NYQ3veKMNWrEjeyez2gUeUSVoptgHd WtpGBvxgCEaw5JsnL3wi+MxtSuTFeWf99+Gnd9sK6H5j9M5u6GFhDFSRQxQj3vdP Vh3FNOLnXBsfgktumpN/EiE26zOHPmN8d/N2Quwobcz8s5NWAaif3c+2ZwkiuuIN r0SKXmH7cIOle0SZrEHZPgKr2SvKDHFedrpkQpmfGqjA7+AvemxjcBZl+2zHNFv2 venrrOhiXOY7355zrx/xr5t0PICxKh02rwXnRP0nFBragxt/NLpNY1Ii0yNn2H7d qxcCYJ7afQGWOB6bmIo4LFlj10Yec5bDRIDDiZsCG1ITPlh71kzB5wjgW452TR9y AprFaV07ZsljxG0cU7N1SIkSCHIjqZAzJrxvnKKhqXzNoHwc+IbiFabzA6zzh2Eq B7MOBR8dR8Pxy0ecI9VQxFKTho/NOBIM751R7A/0XwtFJuQZdBE46aLe+oXsAuK+ jjJPyJh+qPVeXDQVKZYHAiab+QtJ7f6gYdK5I6YU+4mOTyk+XDAb5uY+o80ffd5J Oy8Cf6MAwvQ3MQmLYR/PRyiaNfNIatS7SvdBaJXZUU5o+IJ9ZxHjYyUa6j7nUq2i BTlMuat8Vx8= =qvay -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jun 15 08:42: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: Thu, 15 Dec 2022 12:24:06 +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