Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/timescaledb: bump version to 2.20.0
@ 2025-05-19  6:05 Scott Fan
  2025-05-19  6:50 ` Maxim Kochetkov via buildroot
  2025-05-30 19:54 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Scott Fan @ 2025-05-19  6:05 UTC (permalink / raw)
  To: buildroot; +Cc: Scott Fan, Maxim Kochetkov

Release notes: https://github.com/timescale/timescaledb/blob/2.20.0/CHANGELOG.md

Add the PG_PATH variable to ensure that CMake can find the "pg_config" program.
Otherwise, the following error will be reported.
CMake Error at CMakeLists.txt:85 (message):
  Unable to find 'pg_config'

Signed-off-by: Scott Fan <fancp2007@gmail.com>
---
 package/timescaledb/timescaledb.hash | 2 +-
 package/timescaledb/timescaledb.mk   | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/timescaledb/timescaledb.hash b/package/timescaledb/timescaledb.hash
index 3318d4614f..4ca325b2d7 100644
--- a/package/timescaledb/timescaledb.hash
+++ b/package/timescaledb/timescaledb.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  ef2c9019f3e292f77e274a95386e550cb8c358ec0e053f6b7097565f61381e01  timescaledb-2.19.3.tar.gz
+sha256  b6ac4c29ef29e93249fcc25bf193dab2637422797360b12e00fd73067138a953  timescaledb-2.20.0.tar.gz
 sha256  0378e0948feefd85f579319c74d6e2b671194037f550c7176ef26649d94c895b  LICENSE
diff --git a/package/timescaledb/timescaledb.mk b/package/timescaledb/timescaledb.mk
index 024a72d4f4..00e2eb81ea 100644
--- a/package/timescaledb/timescaledb.mk
+++ b/package/timescaledb/timescaledb.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TIMESCALEDB_VERSION = 2.19.3
+TIMESCALEDB_VERSION = 2.20.0
 TIMESCALEDB_SITE = $(call github,timescale,timescaledb,$(TIMESCALEDB_VERSION))
 TIMESCALEDB_LICENSE = Apache-2.0
 TIMESCALEDB_LICENSE_FILES = LICENSE
@@ -23,6 +23,7 @@ TIMESCALEDB_CONF_OPTS = \
 	-DPG_PKGLIBDIR=lib/postgresql \
 	-DPG_SHAREDIR=share/postgresql \
 	-DPG_BINDIR=bin \
+	-DPG_PATH="$(STAGING_DIR)/usr" \
 	-DPG_CPPFLAGS="$(TARGET_CPPFLAGS) " \
 	-DPG_CFLAGS="$(TARGET_CFLAGS) " \
 	-DPG_LDFLAGS="$(TARGET_LDFLAGS) " \
-- 
2.43.0

_______________________________________________
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] package/timescaledb: bump version to 2.20.0
  2025-05-19  6:05 [Buildroot] [PATCH] package/timescaledb: bump version to 2.20.0 Scott Fan
@ 2025-05-19  6:50 ` Maxim Kochetkov via buildroot
  2025-05-30 19:54 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Maxim Kochetkov via buildroot @ 2025-05-19  6:50 UTC (permalink / raw)
  To: Scott Fan, buildroot

19.05.2025 09:05, Scott Fan wrote:
> Release notes: https://github.com/timescale/timescaledb/blob/2.20.0/CHANGELOG.md
> 
> Add the PG_PATH variable to ensure that CMake can find the "pg_config" program.
> Otherwise, the following error will be reported.
> CMake Error at CMakeLists.txt:85 (message):
>    Unable to find 'pg_config'
> 
> Signed-off-by: Scott Fan <fancp2007@gmail.com>

Reviewed-by: Maxim Kochetkov <fido_max@inbox.ru>

_______________________________________________
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] package/timescaledb: bump version to 2.20.0
  2025-05-19  6:05 [Buildroot] [PATCH] package/timescaledb: bump version to 2.20.0 Scott Fan
  2025-05-19  6:50 ` Maxim Kochetkov via buildroot
@ 2025-05-30 19:54 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-05-30 19:54 UTC (permalink / raw)
  To: Scott Fan; +Cc: buildroot, Maxim Kochetkov

On Mon, 19 May 2025 14:05:29 +0800
Scott Fan <fancp2007@gmail.com> wrote:

> Release notes: https://github.com/timescale/timescaledb/blob/2.20.0/CHANGELOG.md
> 
> Add the PG_PATH variable to ensure that CMake can find the "pg_config" program.
> Otherwise, the following error will be reported.
> CMake Error at CMakeLists.txt:85 (message):
>   Unable to find 'pg_config'
> 
> Signed-off-by: Scott Fan <fancp2007@gmail.com>
> ---
>  package/timescaledb/timescaledb.hash | 2 +-
>  package/timescaledb/timescaledb.mk   | 3 ++-
>  2 files changed, 3 insertions(+), 2 deletions(-)

Applied to next, 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] 3+ messages in thread

end of thread, other threads:[~2025-05-30 19:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-19  6:05 [Buildroot] [PATCH] package/timescaledb: bump version to 2.20.0 Scott Fan
2025-05-19  6:50 ` Maxim Kochetkov via buildroot
2025-05-30 19:54 ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox