* [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support
@ 2024-01-02 9:34 Maxim Kochetkov via buildroot
2024-01-02 9:34 ` [Buildroot] [PATCH v2 2/2] package/postgresql: bump version to 16.1 Maxim Kochetkov via buildroot
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Maxim Kochetkov via buildroot @ 2024-01-02 9:34 UTC (permalink / raw)
To: buildroot; +Cc: Maxim Kochetkov
PostgreSQL has optional ICU support. So enable it if library are available.
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
---
package/postgresql/postgresql.mk | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index 3108fe65e1..89ba80557d 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -87,6 +87,13 @@ else
POSTGRESQL_CONF_OPTS += --without-ldap
endif
+ifeq ($(BR2_PACKAGE_ICU),y)
+POSTGRESQL_DEPENDENCIES += icu
+POSTGRESQL_CONF_OPTS += --with-icu
+else
+POSTGRESQL_CONF_OPTS += --without-icu
+endif
+
ifeq ($(BR2_PACKAGE_LIBXML2),y)
POSTGRESQL_DEPENDENCIES += libxml2
POSTGRESQL_CONF_OPTS += --with-libxml
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v2 2/2] package/postgresql: bump version to 16.1
2024-01-02 9:34 [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support Maxim Kochetkov via buildroot
@ 2024-01-02 9:34 ` Maxim Kochetkov via buildroot
2024-01-02 22:10 ` [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support Thomas Petazzoni via buildroot
2024-01-12 17:15 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Maxim Kochetkov via buildroot @ 2024-01-02 9:34 UTC (permalink / raw)
To: buildroot; +Cc: Maxim Kochetkov
Release notes: https://www.postgresql.org/docs/release/16.1/
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
---
package/postgresql/postgresql.hash | 4 ++--
package/postgresql/postgresql.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/postgresql/postgresql.hash b/package/postgresql/postgresql.hash
index 4fc3bfcff0..cf859e3505 100644
--- a/package/postgresql/postgresql.hash
+++ b/package/postgresql/postgresql.hash
@@ -1,4 +1,4 @@
-# From https://ftp.postgresql.org/pub/source/v15.4/postgresql-15.5.tar.bz2.sha256
-sha256 8f53aa95d78eb8e82536ea46b68187793b42bba3b4f65aa342f540b23c9b10a6 postgresql-15.5.tar.bz2
+# From https://ftp.postgresql.org/pub/source/v16.1/postgresql-16.1.tar.bz2.sha256
+sha256 ce3c4d85d19b0121fe0d3f8ef1fa601f71989e86f8a66f7dc3ad546dd5564fec postgresql-16.1.tar.bz2
# License file, Locally calculated
sha256 1a7d13c3ab31961b91ba256f77d6e82e0b54bf992253060fe93bdb5466df416a COPYRIGHT
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index 89ba80557d..ec5b61b932 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -4,7 +4,7 @@
#
################################################################################
-POSTGRESQL_VERSION = 15.5
+POSTGRESQL_VERSION = 16.1
POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
POSTGRESQL_SITE = https://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
POSTGRESQL_LICENSE = PostgreSQL
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support
2024-01-02 9:34 [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support Maxim Kochetkov via buildroot
2024-01-02 9:34 ` [Buildroot] [PATCH v2 2/2] package/postgresql: bump version to 16.1 Maxim Kochetkov via buildroot
@ 2024-01-02 22:10 ` Thomas Petazzoni via buildroot
2024-01-12 17:15 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-01-02 22:10 UTC (permalink / raw)
To: Maxim Kochetkov via buildroot; +Cc: Maxim Kochetkov
On Tue, 2 Jan 2024 12:34:26 +0300
Maxim Kochetkov via buildroot <buildroot@buildroot.org> wrote:
> PostgreSQL has optional ICU support. So enable it if library are available.
>
> Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
> ---
> package/postgresql/postgresql.mk | 7 +++++++
> 1 file changed, 7 insertions(+)
Both applied to master, thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support
2024-01-02 9:34 [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support Maxim Kochetkov via buildroot
2024-01-02 9:34 ` [Buildroot] [PATCH v2 2/2] package/postgresql: bump version to 16.1 Maxim Kochetkov via buildroot
2024-01-02 22:10 ` [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support Thomas Petazzoni via buildroot
@ 2024-01-12 17:15 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2024-01-12 17:15 UTC (permalink / raw)
To: Maxim Kochetkov via buildroot; +Cc: Maxim Kochetkov
>>>>> "Maxim" == Maxim Kochetkov via buildroot <buildroot@buildroot.org> writes:
> PostgreSQL has optional ICU support. So enable it if library are available.
> Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
Committed to 2023.02.x and 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-12 17:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-02 9:34 [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support Maxim Kochetkov via buildroot
2024-01-02 9:34 ` [Buildroot] [PATCH v2 2/2] package/postgresql: bump version to 16.1 Maxim Kochetkov via buildroot
2024-01-02 22:10 ` [Buildroot] [PATCH v2 1/2] package/postgresql: add ICU support Thomas Petazzoni via buildroot
2024-01-12 17:15 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox