unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51634] [PATCH 0/3] Update osm2pgsql to 1.5.1.
@ 2021-11-06 13:51 Felix Gruber
  2021-11-06 13:53 ` [bug#51634] [PATCH 1/3] gnu: libosmium: Update to 2.17.1 Felix Gruber
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Felix Gruber @ 2021-11-06 13:51 UTC (permalink / raw)
  To: 51634; +Cc: Felix Gruber

Felix Gruber (3):
  gnu: libosmium: Update to 2.17.1.
  gnu: protozero: Update to 1.7.0.
  gnu: osm2pgsql: Update to 1.5.1.

 gnu/packages/geo.scm      | 8 ++++----
 gnu/packages/protobuf.scm | 5 +++--
 2 files changed, 7 insertions(+), 6 deletions(-)

-- 
2.30.2





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#51634] [PATCH 1/3] gnu: libosmium: Update to 2.17.1.
  2021-11-06 13:51 [bug#51634] [PATCH 0/3] Update osm2pgsql to 1.5.1 Felix Gruber
@ 2021-11-06 13:53 ` Felix Gruber
  2021-11-06 13:54 ` [bug#51634] [PATCH 2/3] gnu: protozero: Update to 1.7.0 Felix Gruber
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Felix Gruber @ 2021-11-06 13:53 UTC (permalink / raw)
  To: 51634; +Cc: Felix Gruber

* gnu/packages/geo.scm (libosmium): Update to 2.17.1.
---
 gnu/packages/geo.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index f460e08828..18e8a455c6 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1192,7 +1192,7 @@ to create databases that are optimized for rendering/tile/map-services.")
 (define-public libosmium
   (package
     (name "libosmium")
-    (version "2.15.6")
+    (version "2.17.1")
     (source
      (origin
        (method git-fetch)
@@ -1201,7 +1201,7 @@ to create databases that are optimized for rendering/tile/map-services.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0rqy18bbakp41f44y5id9ixh0ar2dby46z17p4115z8k1vv9znq2"))))
+        (base32 "0xw71lrw4q4sdm51rl0zg87ywxfkxbw9h52zqim0z0xl5qh5q8xf"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("boost" ,boost)
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#51634] [PATCH 2/3] gnu: protozero: Update to 1.7.0.
  2021-11-06 13:51 [bug#51634] [PATCH 0/3] Update osm2pgsql to 1.5.1 Felix Gruber
  2021-11-06 13:53 ` [bug#51634] [PATCH 1/3] gnu: libosmium: Update to 2.17.1 Felix Gruber
@ 2021-11-06 13:54 ` Felix Gruber
  2021-11-06 13:54 ` [bug#51634] [PATCH 3/3] gnu: osm2pgsql: Update to 1.5.1 Felix Gruber
  2021-11-07  9:05 ` bug#51634: [PATCH 0/3] Update osm2pgsql " Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Felix Gruber @ 2021-11-06 13:54 UTC (permalink / raw)
  To: 51634; +Cc: Felix Gruber

* gnu/packages/protobuf.scm (protozero): Update to 1.7.0.
---
 gnu/packages/protobuf.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 322ce61b13..27f4f83f83 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
+;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -209,7 +210,7 @@ code.")
 (define-public protozero
   (package
     (name "protozero")
-    (version "1.6.8")
+    (version "1.7.0")
     (source
      (origin
        (method git-fetch)
@@ -218,7 +219,7 @@ code.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1hfijpfylf1c71wa3mk70gjc88b6k1q7cxb87cwqdflw5q2x8ma6"))))
+        (base32 "0fdihfl5j68wayjjxvpvhvnjq1anzcfnfl09f68wpzbkg3zmhblz"))))
     (build-system cmake-build-system)
     (home-page "https://github.com/mapbox/protozero")
     (synopsis "Minimalistic protocol buffer decoder and encoder in C++")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#51634] [PATCH 3/3] gnu: osm2pgsql: Update to 1.5.1.
  2021-11-06 13:51 [bug#51634] [PATCH 0/3] Update osm2pgsql to 1.5.1 Felix Gruber
  2021-11-06 13:53 ` [bug#51634] [PATCH 1/3] gnu: libosmium: Update to 2.17.1 Felix Gruber
  2021-11-06 13:54 ` [bug#51634] [PATCH 2/3] gnu: protozero: Update to 1.7.0 Felix Gruber
@ 2021-11-06 13:54 ` Felix Gruber
  2021-11-07  9:05 ` bug#51634: [PATCH 0/3] Update osm2pgsql " Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Felix Gruber @ 2021-11-06 13:54 UTC (permalink / raw)
  To: 51634; +Cc: Felix Gruber

* gnu/packages/geo.scm (osm2pgsql): Update to 1.5.1.
---
 gnu/packages/geo.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 18e8a455c6..adfec13b4f 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1225,7 +1225,7 @@ OpenStreetMap data.")
 (define-public osm2pgsql
   (package
     (name "osm2pgsql")
-    (version "1.2.2")
+    (version "1.5.1")
     (source
      (origin
        (method git-fetch)
@@ -1234,7 +1234,7 @@ OpenStreetMap data.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1j35aa8qinhavliqi5pdm0viyi7lm5xyk402rliaxxs1r2hbsafn"))
+        (base32 "0i18mskcs087dn3f3h9n7j0wafn8502m0h13mrjwin38xsz0crfj"))
        (modules '((guix build utils)))
        (snippet
         '(begin
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#51634: [PATCH 0/3] Update osm2pgsql to 1.5.1.
  2021-11-06 13:51 [bug#51634] [PATCH 0/3] Update osm2pgsql to 1.5.1 Felix Gruber
                   ` (2 preceding siblings ...)
  2021-11-06 13:54 ` [bug#51634] [PATCH 3/3] gnu: osm2pgsql: Update to 1.5.1 Felix Gruber
@ 2021-11-07  9:05 ` Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Guillaume Le Vaillant @ 2021-11-07  9:05 UTC (permalink / raw)
  To: Felix Gruber; +Cc: 51634-done

Patches pushed as b217208dd03fbaae5805015f45d916ded1858689 and
following.
Thanks.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-11-07  9:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-06 13:51 [bug#51634] [PATCH 0/3] Update osm2pgsql to 1.5.1 Felix Gruber
2021-11-06 13:53 ` [bug#51634] [PATCH 1/3] gnu: libosmium: Update to 2.17.1 Felix Gruber
2021-11-06 13:54 ` [bug#51634] [PATCH 2/3] gnu: protozero: Update to 1.7.0 Felix Gruber
2021-11-06 13:54 ` [bug#51634] [PATCH 3/3] gnu: osm2pgsql: Update to 1.5.1 Felix Gruber
2021-11-07  9:05 ` bug#51634: [PATCH 0/3] Update osm2pgsql " Guillaume Le Vaillant

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).