Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cryfs for openSUSE:Factory checked in at 2023-04-14 16:54:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cryfs (Old) and /work/SRC/openSUSE:Factory/.cryfs.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cryfs" Fri Apr 14 16:54:08 2023 rev:13 rq:1079461 version:0.11.3 Changes: -------- --- /work/SRC/openSUSE:Factory/cryfs/cryfs.changes 2022-10-18 12:45:20.369770127 +0200 +++ /work/SRC/openSUSE:Factory/.cryfs.new.19717/cryfs.changes 2023-04-14 16:54:09.136266842 +0200 @@ -1,0 +2,6 @@ +Sun Apr 2 18:30:13 UTC 2023 - Bjørn Lie <[email protected]> + +- Add upstream patch - Include stdexcept when using logic_error: + * 38849c22aa34c5fad10091e066a520dd831462b3.patch + +------------------------------------------------------------------- New: ---- 38849c22aa34c5fad10091e066a520dd831462b3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cryfs.spec ++++++ --- /var/tmp/diff_new_pack.WY1aBA/_old 2023-04-14 16:54:09.844270918 +0200 +++ /var/tmp/diff_new_pack.WY1aBA/_new 2023-04-14 16:54:09.848270941 +0200 @@ -1,7 +1,7 @@ # # spec file for package cryfs # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -30,6 +30,7 @@ Source1: https://github.com/cryfs/cryfs/releases/download/%{version}/%{name}-%{version}.tar.xz.asc # 0x5D5EC7BC6F1443EC2AF7177A9E6C996C991D25E1 Source2: %{name}.keyring +Patch: https://github.com/cryfs/cryfs/commit/38849c22aa34c5fad10091e066a520dd831462b3.patch BuildRequires: cmake >= 3.10 BuildRequires: gcc-c++ BuildRequires: libboost_atomic-devel >= 1.65.1 ++++++ 38849c22aa34c5fad10091e066a520dd831462b3.patch ++++++ >From 38849c22aa34c5fad10091e066a520dd831462b3 Mon Sep 17 00:00:00 2001 From: Adam Williamson <[email protected]> Date: Fri, 24 Feb 2023 11:01:19 -0800 Subject: [PATCH] Include stdexcept when using logic_error Signed-off-by: Adam Williamson <[email protected]> --- src/cpp-utils/thread/LeftRight.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpp-utils/thread/LeftRight.h b/src/cpp-utils/thread/LeftRight.h index 65ddba756..7b10458a0 100644 --- a/src/cpp-utils/thread/LeftRight.h +++ b/src/cpp-utils/thread/LeftRight.h @@ -4,6 +4,7 @@ #include <thread> #include <cpp-utils/macros.h> #include <array> +#include <stdexcept> namespace cpputils {
