* [Buildroot] [PATCH 1/1] package/postgis: bump version to 3.3.1
@ 2022-09-19 6:20 Maxim Kochetkov
2022-09-21 20:15 ` Thomas Petazzoni
0 siblings, 1 reply; 3+ messages in thread
From: Maxim Kochetkov @ 2022-09-19 6:20 UTC (permalink / raw)
To: buildroot; +Cc: Maxim Kochetkov
Release-notes: https://git.osgeo.org/gitea/postgis/postgis/src/tag/3.3.1/NEWS
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
---
...kefile.in-do-not-force-static-linkin.patch | 23 ++++++++++---------
package/postgis/postgis.hash | 2 +-
package/postgis/postgis.mk | 2 +-
3 files changed, 14 insertions(+), 13 deletions(-)
diff --git a/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch b/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
index 756a7c10dd..20a359fadd 100644
--- a/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
+++ b/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
@@ -1,6 +1,6 @@
-From 29c33c483e22a4445d870739187d128df0f11f60 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Date: Wed, 27 Jul 2022 15:12:40 +0200
+From 50af3f4fc2353ba35fd054060e27e034d29b1c78 Mon Sep 17 00:00:00 2001
+From: Maxim Kochetkov <mkochetkov@airspan.com>
+Date: Mon, 19 Sep 2022 09:09:44 +0300
Subject: [PATCH] raster/loader/Makefile.in: do not force static linking
This is similar to commit
@@ -13,23 +13,24 @@ object XYZ".
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Upstream: https://github.com/postgis/postgis/pull/702
+Signed-off-by: Maxim Kochetkov <mkochetkov@airspan.com>
---
raster/loader/Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/raster/loader/Makefile.in b/raster/loader/Makefile.in
-index 3df47a96f..d0a408333 100644
+index b5d2e6709..5fc6b6038 100644
--- a/raster/loader/Makefile.in
+++ b/raster/loader/Makefile.in
-@@ -36,7 +36,7 @@ PGSQL_BINDIR=@PGSQL_BINDIR@
+@@ -38,7 +38,7 @@ RASTER2PGSQL=raster2pgsql@EXESUFFIX@
+ # PostgreSQL executable directory
+ PGSQL_BINDIR=@PGSQL_BINDIR@
- RT_CORE=../rt_core
-
--LIBLWGEOM_LDFLAGS= -static ../../liblwgeom/liblwgeom.la
-+LIBLWGEOM_LDFLAGS= ../../liblwgeom/liblwgeom.la
- LIBLWGEOM_CFLAGS=-I../../liblwgeom
+-LIBLWGEOM_LDFLAGS = -static $(top_builddir)/liblwgeom/liblwgeom.la
++LIBLWGEOM_LDFLAGS = $(top_builddir)/liblwgeom/liblwgeom.la
+ LIBLWGEOM_CFLAGS = -I$(top_builddir)/liblwgeom -I$(top_srcdir)/liblwgeom
LIBGDAL_CFLAGS=@LIBGDAL_CFLAGS@
LIBGDAL_LDFLAGS=@LIBGDAL_LDFLAGS@
--
-2.37.1
+2.34.1
diff --git a/package/postgis/postgis.hash b/package/postgis/postgis.hash
index 9569ca71dd..e25ed152c5 100644
--- a/package/postgis/postgis.hash
+++ b/package/postgis/postgis.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 18cf3d013f45b1aa8ed59d78bc707e9e125e250d8f0615396ae9bfe3dd7c3d7c postgis-3.2.2.tar.gz
+sha256 91be800a72d748c5a3a4a00d82ac1de42023e29da61ece6ebf9c77fe228fcb1a postgis-3.3.1.tar.gz
sha256 55b69f22e1752830dd565852dc7ff242daf289dbd3a6bfede5db43f90d2e28c9 LICENSE.TXT
diff --git a/package/postgis/postgis.mk b/package/postgis/postgis.mk
index e6ea52bf7a..a853c09bd8 100644
--- a/package/postgis/postgis.mk
+++ b/package/postgis/postgis.mk
@@ -4,7 +4,7 @@
#
################################################################################
-POSTGIS_VERSION = 3.2.2
+POSTGIS_VERSION = 3.3.1
POSTGIS_SITE = https://download.osgeo.org/postgis/source
# parallel build issues
POSTGIS_MAKE = $(MAKE1)
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgis: bump version to 3.3.1
2022-09-19 6:20 [Buildroot] [PATCH 1/1] package/postgis: bump version to 3.3.1 Maxim Kochetkov
@ 2022-09-21 20:15 ` Thomas Petazzoni
2022-09-22 6:54 ` Maxim Kochetkov via buildroot
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2022-09-21 20:15 UTC (permalink / raw)
To: Maxim Kochetkov; +Cc: buildroot
On Mon, 19 Sep 2022 09:20:23 +0300
Maxim Kochetkov <fido_max@inbox.ru> wrote:
> Release-notes: https://git.osgeo.org/gitea/postgis/postgis/src/tag/3.3.1/NEWS
>
> Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
> ---
> ...kefile.in-do-not-force-static-linkin.patch | 23 ++++++++++---------
> package/postgis/postgis.hash | 2 +-
> package/postgis/postgis.mk | 2 +-
> 3 files changed, 14 insertions(+), 13 deletions(-)
>
> diff --git a/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch b/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
> index 756a7c10dd..20a359fadd 100644
> --- a/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
> +++ b/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
> @@ -1,6 +1,6 @@
> -From 29c33c483e22a4445d870739187d128df0f11f60 Mon Sep 17 00:00:00 2001
> -From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> -Date: Wed, 27 Jul 2022 15:12:40 +0200
> +From 50af3f4fc2353ba35fd054060e27e034d29b1c78 Mon Sep 17 00:00:00 2001
> +From: Maxim Kochetkov <mkochetkov@airspan.com>
> +Date: Mon, 19 Sep 2022 09:09:44 +0300
Since you are not doing substantial changes on this patch, it would be
nicer to preserve the authorship as it is.
> Subject: [PATCH] raster/loader/Makefile.in: do not force static linking
>
> This is similar to commit
> @@ -13,23 +13,24 @@ object XYZ".
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Upstream: https://github.com/postgis/postgis/pull/702
Do you think you could follow-up with upstream on this? I did an
initial fix, but that wasn't accepted as-is. However, my interest in
postgis is limited, so I don't think I will have the chance to look
into this in the near future.
Thanks!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgis: bump version to 3.3.1
2022-09-21 20:15 ` Thomas Petazzoni
@ 2022-09-22 6:54 ` Maxim Kochetkov via buildroot
0 siblings, 0 replies; 3+ messages in thread
From: Maxim Kochetkov via buildroot @ 2022-09-22 6:54 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: buildroot
On 21.09.2022 23:15, Thomas Petazzoni wrote:
> On Mon, 19 Sep 2022 09:20:23 +0300
> Maxim Kochetkov <fido_max@inbox.ru> wrote:
>
>> Release-notes: https://git.osgeo.org/gitea/postgis/postgis/src/tag/3.3.1/NEWS
>>
>> Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
>> ---
>> ...kefile.in-do-not-force-static-linkin.patch | 23 ++++++++++---------
>> package/postgis/postgis.hash | 2 +-
>> package/postgis/postgis.mk | 2 +-
>> 3 files changed, 14 insertions(+), 13 deletions(-)
>>
>> diff --git a/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch b/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
>> index 756a7c10dd..20a359fadd 100644
>> --- a/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
>> +++ b/package/postgis/0002-raster-loader-Makefile.in-do-not-force-static-linkin.patch
>> @@ -1,6 +1,6 @@
>> -From 29c33c483e22a4445d870739187d128df0f11f60 Mon Sep 17 00:00:00 2001
>> -From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
>> -Date: Wed, 27 Jul 2022 15:12:40 +0200
>> +From 50af3f4fc2353ba35fd054060e27e034d29b1c78 Mon Sep 17 00:00:00 2001
>> +From: Maxim Kochetkov <mkochetkov@airspan.com>
>> +Date: Mon, 19 Sep 2022 09:09:44 +0300
>
> Since you are not doing substantial changes on this patch, it would be
> nicer to preserve the authorship as it is.
Let's wait for the response from upstream.
>
>> Subject: [PATCH] raster/loader/Makefile.in: do not force static linking
>>
>> This is similar to commit
>> @@ -13,23 +13,24 @@ object XYZ".
>>
>> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
>> Upstream: https://github.com/postgis/postgis/pull/702
>
> Do you think you could follow-up with upstream on this? I did an
> initial fix, but that wasn't accepted as-is. However, my interest in
> postgis is limited, so I don't think I will have the chance to look
> into this in the near future.
Sure. I've just posted some comments on
https://github.com/postgis/postgis/pull/702
https://github.com/postgis/postgis/pull/598
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-09-22 6:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-19 6:20 [Buildroot] [PATCH 1/1] package/postgis: bump version to 3.3.1 Maxim Kochetkov
2022-09-21 20:15 ` Thomas Petazzoni
2022-09-22 6:54 ` Maxim Kochetkov via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox