From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43046) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hg84n-0000Lq-EQ for guix-patches@gnu.org; Wed, 26 Jun 2019 09:35:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hg84m-0005tm-7C for guix-patches@gnu.org; Wed, 26 Jun 2019 09:35:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49215) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hg84k-0005ry-JX for guix-patches@gnu.org; Wed, 26 Jun 2019 09:35:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hg84k-0006za-G5 for guix-patches@gnu.org; Wed, 26 Jun 2019 09:35:02 -0400 Subject: bug#36211: [PATCH 2/3] gnu: Add osm-gps-map Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190614172751.22468-1-glv@posteo.net> <20190614172751.22468-3-glv@posteo.net> Date: Wed, 26 Jun 2019 15:34:06 +0200 In-Reply-To: <20190614172751.22468-3-glv@posteo.net> (Guillaume LE VAILLANT's message of "Fri, 14 Jun 2019 19:27:50 +0200") Message-ID: <87mui4ii7l.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Guillaume LE VAILLANT Cc: 36211-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Guillaume LE VAILLANT skribis: > * gnu/packages/geo.scm (osm-gps-map): New variable. Applied with the changes below. Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 07831c85ca..4cccd97643 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -879,10 +879,7 @@ OpenStreetMap data files.") (method url-fetch) (uri (string-append "https://github.com/nzjrs/osm-gps-map/releases/download/" - version - "/osm-gps-map-" - version - ".tar.gz")) + version "/osm-gps-map-" version ".tar.gz")) (sha256 (base32 "11imsf4cz1dpxdjh178k2s29axmq86rkfg1pqmn7incyxmjzhbwg")))) @@ -898,10 +895,10 @@ OpenStreetMap data files.") ("gtk+" ,gtk+) ("libsoup" ,libsoup))) (home-page "https://nzjrs.github.io/osm-gps-map/") - (synopsis "Gtk+ widget for displaying OpenStreetMap tiles") + (synopsis "GTK+ widget for displaying OpenStreetMap tiles") (description - "A Gtk+ widget (and Python bindings) that when given GPS coordinates, -draws a GPS track, and points of interest on a moving map display. -Downloads map data from a number of websites, including + "This package provides a GTK+ widget (and Python bindings) that when +given GPS coordinates,draws a GPS track, and points of interest on a moving +map display. Downloads map data from a number of websites, including @url{https://www.openstreetmap.org}.") (license license:gpl2+))) --=-=-=--