All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-oe] [PATCH] remmina: upgrade 1.4.23 -> 1.4.24
@ 2022-02-23  7:52 Wang Mingyu
  2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] soci: upgrade 4.0.2 -> 4.0.3 Wang Mingyu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-02-23  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Changelog:
=========
Contribution section added to issue template
Language of VNC encoding cleaned up
Remmina Hardening and Compliance
Remmina_preferences language reworked
Resolve "Follow-up from "Remmina_preferences language reworked""
Encryption level language reworked
Confirm on close of window
Adding flush and cairo clean up

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../remmina/{remmina_1.4.23.bb => remmina_1.4.24.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/remmina/{remmina_1.4.23.bb => remmina_1.4.24.bb} (96%)

diff --git a/meta-oe/recipes-support/remmina/remmina_1.4.23.bb b/meta-oe/recipes-support/remmina/remmina_1.4.24.bb
similarity index 96%
rename from meta-oe/recipes-support/remmina/remmina_1.4.23.bb
rename to meta-oe/recipes-support/remmina/remmina_1.4.24.bb
index 9346da5b2c..817b5118e2 100644
--- a/meta-oe/recipes-support/remmina/remmina_1.4.23.bb
+++ b/meta-oe/recipes-support/remmina/remmina_1.4.24.bb
@@ -25,7 +25,7 @@ DEPENDS = " \
 DEPENDS:append:libc-musl = " libexecinfo"
 LDFLAGS:append:libc-musl = " -lexecinfo"
 
-SRCREV = "b518b9d1f192375b08bbcdb0e77f3d98925de2f9"
+SRCREV = "ffa6a7ef9c6be7951bac23d14df148098fd2d3fa"
 SRC_URI = "git://gitlab.com/Remmina/Remmina;protocol=https;branch=master"
 S = "${WORKDIR}/git"
 
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] soci: upgrade 4.0.2 -> 4.0.3
  2022-02-23  7:52 [oe] [meta-oe] [PATCH] remmina: upgrade 1.4.23 -> 1.4.24 Wang Mingyu
@ 2022-02-23  7:52 ` Wang Mingyu
  2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] tree: upgrade 2.0.1 -> 2.0.2 Wang Mingyu
  2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] zchunk: upgrade 1.1.16 -> 1.2.0 Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-02-23  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

0001-Fix-build-when-SIGSTKSZ-is-no-longer-a-constant.patch
removed since it's included in 4.0.3

Version 4.0.3 differs from 4.0.2 in the following ways:
========================================================
Changes affecting all or multiple backends:
 - Fix opening sessions from pool (#891).
 - Fix default backend search path (#928).
 - Fix build with latest glibc versions where SIGSTKSZ is not constant (#886).
 - Document using SOCI as a CMake subdirectory (#925).
 - Document using SOCI with Conan (#877).

Backend-specific changes:
- MySQL
 - Implement get_table_names() for MySQL (#927).
 - Fix MySQL backend build with MySQL >= 8 (#884).
 - Fix mysql_library_end() in multithreaded environment (#909).
 - Make mysql_soci_error::get_error_category() more useful (#902).
- ODBC
 - Fix several bugs in vector into code (#888, #892).
 - Fix memory leaks in case of SQLNumResultCols() failure.
 - Export odbc_session_backend::get_database_product() from DLL.
- Oracle
 - Add support for detecting Oracle 20 and 21 to CMake (#896).
- PostgreSQL
 - Fix compilation when "free" is redefined somewhere else.
- SQLite3
 - Fix bulk operations with vectors of size 1 in SQLite3 backend (#908).
- Firebird
 - Suppress FB memory leaks

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...hen-SIGSTKSZ-is-no-longer-a-constant.patch | 42 -------------------
 .../soci/{soci_4.0.2.bb => soci_4.0.3.bb}     |  5 +--
 2 files changed, 2 insertions(+), 45 deletions(-)
 delete mode 100644 meta-oe/recipes-dbs/soci/soci/0001-Fix-build-when-SIGSTKSZ-is-no-longer-a-constant.patch
 rename meta-oe/recipes-dbs/soci/{soci_4.0.2.bb => soci_4.0.3.bb} (90%)

diff --git a/meta-oe/recipes-dbs/soci/soci/0001-Fix-build-when-SIGSTKSZ-is-no-longer-a-constant.patch b/meta-oe/recipes-dbs/soci/soci/0001-Fix-build-when-SIGSTKSZ-is-no-longer-a-constant.patch
deleted file mode 100644
index 8e32ebb0bf..0000000000
--- a/meta-oe/recipes-dbs/soci/soci/0001-Fix-build-when-SIGSTKSZ-is-no-longer-a-constant.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From fae154eb209e068586e1adb589de5d273fcf4b4f Mon Sep 17 00:00:00 2001
-From: Denis Arnaud <denis.arnaud_fedora@m4x.org>
-Date: Tue, 18 May 2021 00:05:03 +0200
-Subject: [PATCH] Fix build when SIGSTKSZ is no longer a constant
-
-In the latest glibc versions SIGSTKSZ is not a constant any more, which
-broke building the tests with it.
-
-Work around this by hard-coding a typical value for it.
-
-closes #886.
-
-Upstream-Status: Backport.
----
- tests/catch.hpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/tests/catch.hpp b/tests/catch.hpp
-index 014df2c5..85067813 100644
---- a/tests/catch.hpp
-+++ b/tests/catch.hpp
-@@ -6489,7 +6489,7 @@ namespace Catch {
-         static bool isSet;
-         static struct sigaction oldSigActions [sizeof(signalDefs)/sizeof(SignalDefs)];
-         static stack_t oldSigStack;
--        static char altStackMem[SIGSTKSZ];
-+        static char altStackMem[8192];
- 
-         static void handleSignal( int sig ) {
-             std::string name = "<unknown signal>";
-@@ -6540,7 +6540,7 @@ namespace Catch {
-     bool FatalConditionHandler::isSet = false;
-     struct sigaction FatalConditionHandler::oldSigActions[sizeof(signalDefs)/sizeof(SignalDefs)] = {};
-     stack_t FatalConditionHandler::oldSigStack = {};
--    char FatalConditionHandler::altStackMem[SIGSTKSZ] = {};
-+    char FatalConditionHandler::altStackMem[8192] = {};
- 
- } // namespace Catch
- 
--- 
-2.25.1
-
diff --git a/meta-oe/recipes-dbs/soci/soci_4.0.2.bb b/meta-oe/recipes-dbs/soci/soci_4.0.3.bb
similarity index 90%
rename from meta-oe/recipes-dbs/soci/soci_4.0.2.bb
rename to meta-oe/recipes-dbs/soci/soci_4.0.3.bb
index fb67e0c547..ff47e5033e 100644
--- a/meta-oe/recipes-dbs/soci/soci_4.0.2.bb
+++ b/meta-oe/recipes-dbs/soci/soci_4.0.3.bb
@@ -5,9 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
 SECTION = "libs"
 DEPENDS = "boost"
 
-SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${BP}/${BP}.tar.gz \
-           file://0001-Fix-build-when-SIGSTKSZ-is-no-longer-a-constant.patch"
-SRC_URI[sha256sum] = "34da2d2320539463da8a5131253246fa2671e0438ab5fd1e5119edb428f558a5"
+SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${BP}/${BP}.tar.gz"
+SRC_URI[sha256sum] = "615e5f7e4b52007f3a3b4050a99aadf6346b56b5098eb08b3a650836083c6a33"
 
 TESTCONFIG = '-DSOCI_TEST_EMPTY_CONNSTR="dummy" -DSOCI_TEST_SQLITE3_CONNSTR="test.db" \
               -DSOCI_TEST_POSTGRESQL_CONNSTR:STRING="dbname=soci_test" \
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] tree: upgrade 2.0.1 -> 2.0.2
  2022-02-23  7:52 [oe] [meta-oe] [PATCH] remmina: upgrade 1.4.23 -> 1.4.24 Wang Mingyu
  2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] soci: upgrade 4.0.2 -> 4.0.3 Wang Mingyu
@ 2022-02-23  7:52 ` Wang Mingyu
  2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] zchunk: upgrade 1.1.16 -> 1.2.0 Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-02-23  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Changelog:
=========
- Okay, apparently the stddata addition is causing havoc (who knew how many
  scripts just haphazardly hand programs random file descriptors, that's
  surely not a problem.)  Going forward the stddata option will only work
  if the environment variable STDDATA_FD is present or set to the descriptor
  to produce the JSON output on.
- Fix HTML url output issue. It was definitely broken in the 2.0.0 release,
  and this should normalize it with respect to older versions.
- Update MANPATH for OS X
- Fixed an error with * in the patchmatch code where *foo*bar would match
  *foo alone.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-oe/recipes-support/tree/{tree_2.0.1.bb => tree_2.0.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/tree/{tree_2.0.1.bb => tree_2.0.2.bb} (86%)

diff --git a/meta-oe/recipes-support/tree/tree_2.0.1.bb b/meta-oe/recipes-support/tree/tree_2.0.2.bb
similarity index 86%
rename from meta-oe/recipes-support/tree/tree_2.0.1.bb
rename to meta-oe/recipes-support/tree/tree_2.0.2.bb
index 9e1e787f10..ec68db2456 100644
--- a/meta-oe/recipes-support/tree/tree_2.0.1.bb
+++ b/meta-oe/recipes-support/tree/tree_2.0.2.bb
@@ -5,7 +5,7 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
 
 SRC_URI = "http://mama.indstate.edu/users/ice/tree/src/${BP}.tgz"
-SRC_URI[sha256sum] = "e3339c5a194cf6b4080f15ec59faa3679f02d5a793b2147912fbfcfb4cdf2239"
+SRC_URI[sha256sum] = "7d693a1d88d3c4e70a73e03b8dbbdc12c2945d482647494f2f5bd83a479eeeaf"
 
 # tree's default CFLAGS for Linux
 CFLAGS += "-Wall -DLINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] zchunk: upgrade 1.1.16 -> 1.2.0
  2022-02-23  7:52 [oe] [meta-oe] [PATCH] remmina: upgrade 1.4.23 -> 1.4.24 Wang Mingyu
  2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] soci: upgrade 4.0.2 -> 4.0.3 Wang Mingyu
  2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] tree: upgrade 2.0.1 -> 2.0.2 Wang Mingyu
@ 2022-02-23  7:52 ` Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-02-23  7:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Release zchunk 1.2.0 with the following changes:
 * Now builds for Windows
 * Can set '--uncompressed' flag when creating zchunk files to also store
    uncompressed digests
 * 'zck_read_header' now indicates whether there's a dictionary and what flags
    are enabled in the zchunk file
 * Minimum meson version required to build zchunk is now 0.53
 * Switched to use GitHub actions for automated testing
 * Added the following automated test environments:
   * 'centos-8-stream'
   * 'centos-9-stream'
   * 'ubuntu-lts'
   * 'windows', both using Mamba and meson-wrap
   * 'macos'

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../zchunk/{zchunk_1.1.16.bb => zchunk_1.2.0.bb}                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/zchunk/{zchunk_1.1.16.bb => zchunk_1.2.0.bb} (90%)

diff --git a/meta-oe/recipes-support/zchunk/zchunk_1.1.16.bb b/meta-oe/recipes-support/zchunk/zchunk_1.2.0.bb
similarity index 90%
rename from meta-oe/recipes-support/zchunk/zchunk_1.1.16.bb
rename to meta-oe/recipes-support/zchunk/zchunk_1.2.0.bb
index c1b22886fb..0baea5032a 100644
--- a/meta-oe/recipes-support/zchunk/zchunk_1.1.16.bb
+++ b/meta-oe/recipes-support/zchunk/zchunk_1.2.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=daf6e68539f564601a5a5869c31e5242"
 
 SRC_URI = "git://github.com/zchunk/zchunk.git;protocol=https;branch=main"
 
-SRCREV = "ff34ee911f7d78d66b97894a773276babd63144c"
+SRCREV = "dd6a30a1e4e8b738b0cafc682f3c00e7706134e5"
 S = "${WORKDIR}/git"
 
 DEPENDS = "\
-- 
2.25.1



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

end of thread, other threads:[~2022-02-23  7:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-23  7:52 [oe] [meta-oe] [PATCH] remmina: upgrade 1.4.23 -> 1.4.24 Wang Mingyu
2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] soci: upgrade 4.0.2 -> 4.0.3 Wang Mingyu
2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] tree: upgrade 2.0.1 -> 2.0.2 Wang Mingyu
2022-02-23  7:52 ` [oe] [meta-oe] [PATCH] zchunk: upgrade 1.1.16 -> 1.2.0 Wang Mingyu

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.