* [Buildroot] [PATCH 1/1] package/poco: bump version to 1.12.4
@ 2023-07-24 20:48 Julien Olivain
2023-07-28 20:11 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Julien Olivain @ 2023-07-24 20:48 UTC (permalink / raw)
To: buildroot; +Cc: Julien Olivain
For change log, see:
https://github.com/pocoproject/poco/blob/poco-1.12.4-release/CHANGELOG
This commit also drop the package patch, which was included upstream in
version 1.12.3:
https://github.com/pocoproject/poco/commit/3884c734c261231c34f59e56cde7ae02945b4dae
The file .checkpackageignore is also updated to reflect this patch
removal.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
Tested on master branch at commit f359791 with commands:
utils/docker-run make check-package
...
0 warnings generated
utils/test-pkg -p poco
...
6 builds, 3 skipped, 0 build failed, 0 legal-info failed, 0 show-info failed
---
.checkpackageignore | 1 -
...optional-JSON-support-for-MySQL-3753.patch | 45 -------------------
package/poco/poco.hash | 2 +-
package/poco/poco.mk | 2 +-
4 files changed, 2 insertions(+), 48 deletions(-)
delete mode 100644 package/poco/0001-Fix-optional-JSON-support-for-MySQL-3753.patch
diff --git a/.checkpackageignore b/.checkpackageignore
index b9265ae2e4..e95465f58f 100644
--- a/.checkpackageignore
+++ b/.checkpackageignore
@@ -1178,7 +1178,6 @@ package/pkcs11-helper/0001-openssl-libressl-3-5-0-does-not-have-DSA_meth_set1_na
package/pkgconf/0001-Only-prefix-with-the-sysroot-a-subset-of-variables.patch Upstream
package/pkgconf/0002-Revert-main-assume-modversion-insted-of-version-if-o.patch Upstream
package/pkgconf/pkg-config.in Shellcheck
-package/poco/0001-Fix-optional-JSON-support-for-MySQL-3753.patch Sob Upstream
package/poke/0001-configure.ac-HELP2MAN-replace-by-true-when-cross-com.patch Upstream
package/poke/0002-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch Upstream
package/policycoreutils/0001-Add-DESTDIR-to-all-paths-that-use-an-absolute-path.patch Upstream
diff --git a/package/poco/0001-Fix-optional-JSON-support-for-MySQL-3753.patch b/package/poco/0001-Fix-optional-JSON-support-for-MySQL-3753.patch
deleted file mode 100644
index ba2f073a59..0000000000
--- a/package/poco/0001-Fix-optional-JSON-support-for-MySQL-3753.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 3884c734c261231c34f59e56cde7ae02945b4dae Mon Sep 17 00:00:00 2001
-From: Hernan Martinez <hernan.c.martinez@gmail.com>
-Date: Tue, 16 Aug 2022 23:07:25 -0500
-Subject: [PATCH] Fix optional JSON support for MySQL (#3753)
-
-* Fix optional JSON support for MySQL
-
-* Fix optional JSON support for MySQLTest
----
- Data/MySQL/src/ResultMetadata.cpp | 2 ++
- Data/MySQL/testsuite/src/MySQLTest.cpp | 2 ++
- 2 files changed, 4 insertions(+)
-
-diff --git a/Data/MySQL/src/ResultMetadata.cpp b/Data/MySQL/src/ResultMetadata.cpp
-index 61b49dd54..adb5dae84 100644
---- a/Data/MySQL/src/ResultMetadata.cpp
-+++ b/Data/MySQL/src/ResultMetadata.cpp
-@@ -133,8 +133,10 @@ namespace
- case MYSQL_TYPE_LONG_BLOB:
- case MYSQL_TYPE_BLOB:
- return Poco::Data::MetaColumn::FDT_BLOB;
-+#ifdef POCO_MYSQL_JSON
- case MYSQL_TYPE_JSON:
- return Poco::Data::MetaColumn::FDT_JSON;
-+#endif
- default:
- return Poco::Data::MetaColumn::FDT_UNKNOWN;
- }
-diff --git a/Data/MySQL/testsuite/src/MySQLTest.cpp b/Data/MySQL/testsuite/src/MySQLTest.cpp
-index 80a3683b1..2a286d35e 100644
---- a/Data/MySQL/testsuite/src/MySQLTest.cpp
-+++ b/Data/MySQL/testsuite/src/MySQLTest.cpp
-@@ -976,7 +976,9 @@ CppUnit::Test* MySQLTest::suite()
- CppUnit_addTest(pSuite, MySQLTest, testBLOBStmt);
- CppUnit_addTest(pSuite, MySQLTest, testLongBLOB);
- CppUnit_addTest(pSuite, MySQLTest, testLongTEXT);
-+#ifdef POCO_MYSQL_JSON
- CppUnit_addTest(pSuite, MySQLTest, testJSON);
-+#endif
- CppUnit_addTest(pSuite, MySQLTest, testUnsignedInts);
- CppUnit_addTest(pSuite, MySQLTest, testFloat);
- CppUnit_addTest(pSuite, MySQLTest, testDouble);
---
-2.37.2
-
diff --git a/package/poco/poco.hash b/package/poco/poco.hash
index eea3e2494a..9a7981171a 100644
--- a/package/poco/poco.hash
+++ b/package/poco/poco.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 30442ccb097a0074133f699213a59d6f8c77db5b2c98a7c1ad9c5eeb3a2b06f3 poco-1.12.2.tar.gz
+sha256 71ef96c35fced367d6da74da294510ad2c912563f12cd716ab02b6ed10a733ef poco-1.12.4.tar.gz
sha256 c4b1e1e5f36d8331737231fefcc30f5714326aec7c387ad59a8115eb0ba7d6b5 LICENSE
diff --git a/package/poco/poco.mk b/package/poco/poco.mk
index d078faa8e5..2d0233a8ce 100644
--- a/package/poco/poco.mk
+++ b/package/poco/poco.mk
@@ -4,7 +4,7 @@
#
################################################################################
-POCO_VERSION = 1.12.2
+POCO_VERSION = 1.12.4
POCO_SITE = $(call github,pocoproject,poco,poco-$(POCO_VERSION)-release)
POCO_LICENSE = BSL-1.0
POCO_LICENSE_FILES = LICENSE
--
2.41.0
_______________________________________________
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/poco: bump version to 1.12.4
2023-07-24 20:48 [Buildroot] [PATCH 1/1] package/poco: bump version to 1.12.4 Julien Olivain
@ 2023-07-28 20:11 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-28 20:11 UTC (permalink / raw)
To: Julien Olivain; +Cc: buildroot
On Mon, 24 Jul 2023 22:48:35 +0200
Julien Olivain <ju.o@free.fr> wrote:
> For change log, see:
> https://github.com/pocoproject/poco/blob/poco-1.12.4-release/CHANGELOG
>
> This commit also drop the package patch, which was included upstream in
> version 1.12.3:
> https://github.com/pocoproject/poco/commit/3884c734c261231c34f59e56cde7ae02945b4dae
>
> The file .checkpackageignore is also updated to reflect this patch
> removal.
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
> Tested on master branch at commit f359791 with commands:
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:[~2023-07-28 20:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-24 20:48 [Buildroot] [PATCH 1/1] package/poco: bump version to 1.12.4 Julien Olivain
2023-07-28 20:11 ` 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