Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package socket_wrapper for openSUSE:Factory checked in at 2025-07-20 15:27:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/socket_wrapper (Old) and /work/SRC/openSUSE:Factory/.socket_wrapper.new.8875 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "socket_wrapper" Sun Jul 20 15:27:56 2025 rev:28 rq:1294177 version:1.5.0 Changes: -------- --- /work/SRC/openSUSE:Factory/socket_wrapper/socket_wrapper.changes 2025-05-20 09:31:14.008061292 +0200 +++ /work/SRC/openSUSE:Factory/.socket_wrapper.new.8875/socket_wrapper.changes 2025-07-20 15:28:05.993655771 +0200 @@ -1,0 +2,5 @@ +Thu Jul 17 13:29:08 UTC 2025 - Andreas Schneider <a...@cryptomilk.org> + +- Added swrap-fix-tests.patch + +------------------------------------------------------------------- New: ---- swrap-fix-tests.patch ----------(New B)---------- New: - Added swrap-fix-tests.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ socket_wrapper.spec ++++++ --- /var/tmp/diff_new_pack.cUhhlr/_old 2025-07-20 15:28:06.633682256 +0200 +++ /var/tmp/diff_new_pack.cUhhlr/_new 2025-07-20 15:28:06.633682256 +0200 @@ -36,6 +36,9 @@ Source2: socket_wrapper.keyring Source3: %{name}-rpmlintrc # +# PATCH-FIX-UPSTREAM https://gitlab.com/cwrap/socket_wrapper/-/merge_requests/49 +Patch0: swrap-fix-tests.patch +# BuildRequires: cmake BuildRequires: pkg-config BuildRequires: cmake(cmocka) ++++++ swrap-fix-tests.patch ++++++ >From 86247c5d48a1f9a33e4f8e914a55b196a3bbe20a Mon Sep 17 00:00:00 2001 From: Andreas Schneider <a...@samba.org> Date: Thu, 17 Jul 2025 15:18:13 +0200 Subject: [PATCH] tests: Add missing stdint.h This is required by cmocka. Signed-off-by: Andreas Schneider <a...@samba.org> --- tests/test_ioctl.c | 1 + tests/test_sendmsg_recvmsg_fd.c | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/test_ioctl.c b/tests/test_ioctl.c index 25bec38..addcb36 100644 --- a/tests/test_ioctl.c +++ b/tests/test_ioctl.c @@ -1,5 +1,6 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> diff --git a/tests/test_sendmsg_recvmsg_fd.c b/tests/test_sendmsg_recvmsg_fd.c index 30c9861..1f8154d 100644 --- a/tests/test_sendmsg_recvmsg_fd.c +++ b/tests/test_sendmsg_recvmsg_fd.c @@ -1,5 +1,6 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> -- GitLab