* [Buildroot] [PATCH 1/1] package/libpqxx: bump to version 7.9.2
@ 2024-08-03 23:54 James Knight
2024-08-04 20:37 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: James Knight @ 2024-08-03 23:54 UTC (permalink / raw)
To: buildroot; +Cc: James Knight
Requires GCC 8.3 due to the introduction of the charconv header.
However, as there is no BR2_TOOLCHAIN_GCC_AT_LEAST_8_3, we round up to
BR2_TOOLCHAIN_GCC_AT_LEAST_9.
Note the `COPYING` file has changed due to copyright year bumps.
See also: https://github.com/jtv/libpqxx/blob/master/NEWS
Signed-off-by: James Knight <james.d.knight@live.com>
---
package/libpqxx/Config.in | 6 +++---
package/libpqxx/libpqxx.hash | 4 ++--
package/libpqxx/libpqxx.mk | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/package/libpqxx/Config.in b/package/libpqxx/Config.in
index f5fe2b38079fb3c619710e387c4676d7744a2416..845692eae68ea577985ca1f2d30bb759312db15e 100644
--- a/package/libpqxx/Config.in
+++ b/package/libpqxx/Config.in
@@ -2,7 +2,7 @@ config BR2_PACKAGE_LIBPQXX
bool "libpqxx"
depends on BR2_PACKAGE_POSTGRESQL
depends on BR2_TOOLCHAIN_HAS_THREADS
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_9 # C++17/charconv
depends on BR2_INSTALL_LIBSTDCPP
help
libpqxx is the official C++ client API for PostgreSQL, the
@@ -10,8 +10,8 @@ config BR2_PACKAGE_LIBPQXX
http://pqxx.org/development/libpqxx/
-comment "libpqxx needs toolchain w/ C++, gcc >= 7, threads"
+comment "libpqxx needs toolchain w/ C++, gcc >= 9, threads"
depends on BR2_PACKAGE_POSTGRESQL
depends on !BR2_INSTALL_LIBSTDCPP || \
- !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_9 || \
!BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/libpqxx/libpqxx.hash b/package/libpqxx/libpqxx.hash
index 1c0e4c185dedb910abd911059e6ada60b436802f..7e13e7415b5a3d4d71020d88655f5b73c2d13109 100644
--- a/package/libpqxx/libpqxx.hash
+++ b/package/libpqxx/libpqxx.hash
@@ -1,3 +1,3 @@
# Locally computed:
-sha256 c7dc3e8fa2eee656f2b6a8179d72f15db10e97a80dc4f173f806e615ea990973 libpqxx-7.7.5.tar.gz
-sha256 91718581edafc9f722915133d75f74c82d7c2e41a1831c1e042206423e5a63b0 COPYING
+sha256 e37d5774c39f6c802e32d7f418e88b8e530404fb54758516e884fc0ebdee6da4 libpqxx-7.9.2.tar.gz
+sha256 3dd057a614dd24688aafc38d4c41111140e17147cfd94f314a80af30879641b2 COPYING
diff --git a/package/libpqxx/libpqxx.mk b/package/libpqxx/libpqxx.mk
index 434cefd06950e1a467fa31d23f9155764e8e12e8..c69b77260dbd12c93b64a7a990f932987b96a529 100644
--- a/package/libpqxx/libpqxx.mk
+++ b/package/libpqxx/libpqxx.mk
@@ -4,7 +4,7 @@
#
################################################################################
-LIBPQXX_VERSION = 7.7.5
+LIBPQXX_VERSION = 7.9.2
LIBPQXX_SITE = $(call github,jtv,libpqxx,$(LIBPQXX_VERSION))
LIBPQXX_INSTALL_STAGING = YES
LIBPQXX_DEPENDENCIES = postgresql
--
2.43.0.windows.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/libpqxx: bump to version 7.9.2
2024-08-03 23:54 [Buildroot] [PATCH 1/1] package/libpqxx: bump to version 7.9.2 James Knight
@ 2024-08-04 20:37 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-08-04 20:37 UTC (permalink / raw)
To: James Knight; +Cc: buildroot
On Sat, 3 Aug 2024 19:54:01 -0400
James Knight <james.d.knight@live.com> wrote:
> Requires GCC 8.3 due to the introduction of the charconv header.
> However, as there is no BR2_TOOLCHAIN_GCC_AT_LEAST_8_3, we round up to
> BR2_TOOLCHAIN_GCC_AT_LEAST_9.
>
> Note the `COPYING` file has changed due to copyright year bumps.
>
> See also: https://github.com/jtv/libpqxx/blob/master/NEWS
>
> Signed-off-by: James Knight <james.d.knight@live.com>
> ---
> package/libpqxx/Config.in | 6 +++---
> package/libpqxx/libpqxx.hash | 4 ++--
> package/libpqxx/libpqxx.mk | 2 +-
> 3 files changed, 6 insertions(+), 6 deletions(-)
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] 2+ messages in thread
end of thread, other threads:[~2024-08-04 20:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-03 23:54 [Buildroot] [PATCH 1/1] package/libpqxx: bump to version 7.9.2 James Knight
2024-08-04 20:37 ` Thomas Petazzoni via buildroot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.