Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package openssl-ibmca for openSUSE:Factory checked in at 2023-04-19 17:44:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openssl-ibmca (Old) and /work/SRC/openSUSE:Factory/.openssl-ibmca.new.2023 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openssl-ibmca" Wed Apr 19 17:44:55 2023 rev:43 rq:1080297 version:2.4.0 Changes: -------- --- /work/SRC/openSUSE:Factory/openssl-ibmca/openssl-ibmca.changes 2023-04-06 15:57:38.592872339 +0200 +++ /work/SRC/openSUSE:Factory/.openssl-ibmca.new.2023/openssl-ibmca.changes 2023-04-19 17:45:09.168951996 +0200 @@ -1,0 +2,7 @@ +Wed Apr 19 10:52:06 UTC 2023 - Nikolay Gueorguiev <nikolay.gueorgu...@suse.com> + +- Applies a patch (bsc#1210359) + * openssl-ibmca-engine-noregister.patch +- Updated the '#dynamic_path' line, as it was before, with the comment '#'. + +------------------------------------------------------------------- New: ---- openssl-ibmca-engine-noregister.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openssl-ibmca.spec ++++++ --- /var/tmp/diff_new_pack.Bbi1AN/_old 2023-04-19 17:45:11.656966451 +0200 +++ /var/tmp/diff_new_pack.Bbi1AN/_new 2023-04-19 17:45:11.660966474 +0200 @@ -28,8 +28,11 @@ Source: https://github.com/opencryptoki/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: engine_section.txt ### +Patch001: openssl-ibmca-engine-noregister.patch +### BuildRequires: autoconf BuildRequires: automake +BuildRequires: libica >= 4.0.0 BuildRequires: libica-devel >= 3.1.1 BuildRequires: libica-tools >= 2.4.0 BuildRequires: libtool @@ -73,7 +76,7 @@ grep -v "^#" src/engine/openssl.cnf.sample | \ sed -n -e '/^\[ibmca_section\]/,$ p' | \ sed -e '/^$/ {N;N;s/\n\n/\n/g;}' | \ - sed -e 's/^dynamic_path/dynamic_path/' > %{buildroot}%{_datadir}/%{name}/openssl-ibmca.enginedef.cnf + sed -e 's/^dynamic_path/#dynamic_path/' > %{buildroot}%{_datadir}/%{name}/openssl-ibmca.enginedef.cnf %post #Original fix for bsc#942839 was to update on first install ++++++ openssl-ibmca-engine-noregister.patch ++++++ --- openssl-ibmca-2.3.1/src/engine/e_ibmca.c.xx 2023-04-19 10:36:53.514635802 +0200 +++ openssl-ibmca-2.3.1/src/engine/e_ibmca.c 2023-04-19 10:39:01.678265739 +0200 @@ -642,6 +642,9 @@ if (!ENGINE_set_pkey_meths(e, ibmca_engine_pkey_meths)) goto out; + if (!ENGINE_set_flags(e, ENGINE_FLAGS_NO_REGISTER_ALL)) + goto out; + rc = 1; out: free(pmech_list);