buildroot.busybox.net archive mirror
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/2] package/timescaledb: Bump version to 2.3.0
@ 2021-06-22 12:41 Maxim Kochetkov
  2021-06-22 12:41 ` [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config Maxim Kochetkov
  2021-06-22 12:41 ` [Buildroot] [PATCH 2/2] package/timescaledb: Bump version to 2.3.0 Maxim Kochetkov
  0 siblings, 2 replies; 5+ messages in thread
From: Maxim Kochetkov @ 2021-06-22 12:41 UTC (permalink / raw)
  To: buildroot

Bump timescaledb version to 2.3.0

Maxim Kochetkov (2):
  package/postgresql: add cflags_sl option to pg_config
  package/timescaledb: Bump version to 2.3.0

 package/postgresql/pg_config         | 4 ++++
 package/timescaledb/timescaledb.hash | 2 +-
 package/timescaledb/timescaledb.mk   | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

-- 
2.31.1

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

* [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config
  2021-06-22 12:41 [Buildroot] [PATCH 0/2] package/timescaledb: Bump version to 2.3.0 Maxim Kochetkov
@ 2021-06-22 12:41 ` Maxim Kochetkov
  2021-07-25 13:41   ` Thomas Petazzoni
  2021-08-05 10:50   ` Peter Korsgaard
  2021-06-22 12:41 ` [Buildroot] [PATCH 2/2] package/timescaledb: Bump version to 2.3.0 Maxim Kochetkov
  1 sibling, 2 replies; 5+ messages in thread
From: Maxim Kochetkov @ 2021-06-22 12:41 UTC (permalink / raw)
  To: buildroot

Some external packages call pg_config to determine the installed
PostgreSQL cflags_sl option. Add this output to Buildroots own
pg_config, so these packages correctly compile.

Default value is defined at src/template/linux as:

Extra CFLAGS for code that will go into a shared library
CFLAGS_SL="-fPIC"

Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
---
 package/postgresql/pg_config | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/postgresql/pg_config b/package/postgresql/pg_config
index 3b0cb35f2c..099f1ee390 100644
--- a/package/postgresql/pg_config
+++ b/package/postgresql/pg_config
@@ -31,6 +31,10 @@ case "$1" in
   --cflags)
 	echo "@TARGET_CFLAGS@"
 	;;
+  --cflags_sl)
+	# defined at src/template/linux
+	echo "-fPIC"
+	;;
   --cc)
 	echo "@TARGET_CC@"
 	;;
-- 
2.31.1

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

* [Buildroot] [PATCH 2/2] package/timescaledb: Bump version to 2.3.0
  2021-06-22 12:41 [Buildroot] [PATCH 0/2] package/timescaledb: Bump version to 2.3.0 Maxim Kochetkov
  2021-06-22 12:41 ` [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config Maxim Kochetkov
@ 2021-06-22 12:41 ` Maxim Kochetkov
  1 sibling, 0 replies; 5+ messages in thread
From: Maxim Kochetkov @ 2021-06-22 12:41 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
---
 package/timescaledb/timescaledb.hash | 2 +-
 package/timescaledb/timescaledb.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/timescaledb/timescaledb.hash b/package/timescaledb/timescaledb.hash
index 98f966ee3d..e97045f7d5 100644
--- a/package/timescaledb/timescaledb.hash
+++ b/package/timescaledb/timescaledb.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  e928c939803706d0d5b11d6751d4f0d0514e540ceffc74a46a9732f9a111d313  timescaledb-2.1.1.tar.gz
+sha256  730e61e48f471c1d643494421d21e43766128cbcb62a5c4b138c171379195cf2  timescaledb-2.3.0.tar.gz
 sha256  0378e0948feefd85f579319c74d6e2b671194037f550c7176ef26649d94c895b  LICENSE
diff --git a/package/timescaledb/timescaledb.mk b/package/timescaledb/timescaledb.mk
index d2a48a0f63..27e9142b0c 100644
--- a/package/timescaledb/timescaledb.mk
+++ b/package/timescaledb/timescaledb.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TIMESCALEDB_VERSION = 2.1.1
+TIMESCALEDB_VERSION = 2.3.0
 TIMESCALEDB_SITE = $(call github,timescale,timescaledb,$(TIMESCALEDB_VERSION))
 TIMESCALEDB_LICENSE = Apache-2.0
 TIMESCALEDB_LICENSE_FILES = LICENSE
-- 
2.31.1

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

* Re: [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config
  2021-06-22 12:41 ` [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config Maxim Kochetkov
@ 2021-07-25 13:41   ` Thomas Petazzoni
  2021-08-05 10:50   ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2021-07-25 13:41 UTC (permalink / raw)
  To: Maxim Kochetkov via buildroot; +Cc: Maxim Kochetkov, ps.report, buildroot

On Tue, 22 Jun 2021 15:41:20 +0300
Maxim Kochetkov via buildroot <buildroot@busybox.net> wrote:

> Some external packages call pg_config to determine the installed
> PostgreSQL cflags_sl option. Add this output to Buildroots own
> pg_config, so these packages correctly compile.
> 
> Default value is defined at src/template/linux as:
> 
> Extra CFLAGS for code that will go into a shared library
> CFLAGS_SL="-fPIC"
> 
> Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
> ---
>  package/postgresql/pg_config | 4 ++++
>  1 file changed, 4 insertions(+)

Both applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config
  2021-06-22 12:41 ` [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config Maxim Kochetkov
  2021-07-25 13:41   ` Thomas Petazzoni
@ 2021-08-05 10:50   ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-08-05 10:50 UTC (permalink / raw)
  To: Maxim Kochetkov via buildroot; +Cc: Maxim Kochetkov, ps.report, buildroot

>>>>> "Maxim" == Maxim Kochetkov via buildroot <buildroot@busybox.net> writes:

 > Some external packages call pg_config to determine the installed
 > PostgreSQL cflags_sl option. Add this output to Buildroots own
 > pg_config, so these packages correctly compile.

 > Default value is defined at src/template/linux as:

 > Extra CFLAGS for code that will go into a shared library
 > CFLAGS_SL="-fPIC"

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

Committed to 2021.02.x and 2021.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-08-05 10:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-22 12:41 [Buildroot] [PATCH 0/2] package/timescaledb: Bump version to 2.3.0 Maxim Kochetkov
2021-06-22 12:41 ` [Buildroot] [PATCH 1/2] package/postgresql: add cflags_sl option to pg_config Maxim Kochetkov
2021-07-25 13:41   ` Thomas Petazzoni
2021-08-05 10:50   ` Peter Korsgaard
2021-06-22 12:41 ` [Buildroot] [PATCH 2/2] package/timescaledb: Bump version to 2.3.0 Maxim Kochetkov

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 NNTP newsgroup(s).