From 0e4a3b4ec5a2c2cfd0a219bd5a39fa752fab04ed005330011081e1649fadb0e2 Mon Sep 17 00:00:00 2001 From: Mark Post Date: Fri, 17 Sep 2021 19:51:08 +0000 Subject: [PATCH 1/5] - Upgraded to version 2.2.1 * openssl-ibmca 2.2.1 Bug fixes * openssl-ibmca 2.2.0 Implement fallbacks based on OpenSSL Disable software fallbacks from libica Allow to specify default library (libica vs. libica-cex) to use Provide "libica" engine ctrl to switch library at load time Update README.md Remove libica link dependency Generate sample configuration files from system configuration Restructure registration global data * openssl-ibmca 2.1.3 Bug fix * openssl-ibmca 2.1.2 Bug fixes - Modified spec file to * Define a global variable enginedir the same was as IBM does instead of _ENGINE_DIR as we had been doing. * Implemented %make_build macro according to spec-cleaner * Changed the package description to match IBM's. * Removed the redundant "autoreconf --force --install" OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-ibmca?expand=0&rev=27 --- openssl-ibmca-2.1.1.tar.gz | 3 --- openssl-ibmca-2.2.1.tar.gz | 3 +++ openssl-ibmca.changes | 26 ++++++++++++++++++++++++++ openssl-ibmca.spec | 30 ++++++++++++++++-------------- 4 files changed, 45 insertions(+), 17 deletions(-) delete mode 100644 openssl-ibmca-2.1.1.tar.gz create mode 100644 openssl-ibmca-2.2.1.tar.gz diff --git a/openssl-ibmca-2.1.1.tar.gz b/openssl-ibmca-2.1.1.tar.gz deleted file mode 100644 index a3bf82c..0000000 --- a/openssl-ibmca-2.1.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:57304a3d35fa679f7eb7c73825c293655415125557d233beb371d085b3e71389 -size 45678 diff --git a/openssl-ibmca-2.2.1.tar.gz b/openssl-ibmca-2.2.1.tar.gz new file mode 100644 index 0000000..54f6b14 --- /dev/null +++ b/openssl-ibmca-2.2.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd77f6f749f07721f993ddecc27b68b1c1fd8c09f524fae6529e86298ed7f01 +size 98187 diff --git a/openssl-ibmca.changes b/openssl-ibmca.changes index 8a116b0..5f38d24 100644 --- a/openssl-ibmca.changes +++ b/openssl-ibmca.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Fri Sep 17 19:32:37 UTC 2021 - Mark Post + +- Upgraded to version 2.2.1 + * openssl-ibmca 2.2.1 + Bug fixes + * openssl-ibmca 2.2.0 + Implement fallbacks based on OpenSSL + Disable software fallbacks from libica + Allow to specify default library (libica vs. libica-cex) to use + Provide "libica" engine ctrl to switch library at load time + Update README.md + Remove libica link dependency + Generate sample configuration files from system configuration + Restructure registration global data + * openssl-ibmca 2.1.3 + Bug fix + * openssl-ibmca 2.1.2 + Bug fixes +- Modified spec file to + * Define a global variable enginedir the same was as IBM does + instead of _ENGINE_DIR as we had been doing. + * Implemented %make_build macro according to spec-cleaner + * Changed the package description to match IBM's. + * Removed the redundant "autoreconf --force --install" + ------------------------------------------------------------------- Wed Sep 16 20:06:12 UTC 2020 - Mark Post diff --git a/openssl-ibmca.spec b/openssl-ibmca.spec index a95e753..135e2d8 100644 --- a/openssl-ibmca.spec +++ b/openssl-ibmca.spec @@ -1,7 +1,7 @@ # # spec file for package openssl-ibmca # -# Copyright (c) 2018-2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,8 +16,10 @@ # +%global enginesdir %(pkg-config --variable=enginesdir libcrypto) + Name: openssl-ibmca -Version: 2.1.1 +Version: 2.2.1 Release: 0 Summary: The IBMCA OpenSSL dynamic engine License: Apache-2.0 @@ -37,32 +39,27 @@ Requires: openssl ExclusiveArch: s390x %description -This package contains a shared object OpenSSL dynamic engine for the -IBM eServer Cryptographic Accelerator (ICA). +This package contains a shared object OpenSSL dynamic engine which interfaces +to libica, a library enabling the IBM s390/x CPACF crypto instructions. %prep %autosetup ./bootstrap.sh %build -# The directory where crypto engines are located is owned by the libcrypto package. -# Find out where that is for this version of the distribution. -%define _ENGINE_DIR %(pkg-config --variable=enginesdir libcrypto) - -autoreconf --force --install export CFLAGS="%{optflags}" export CPPFLAGS="%{optflags}" %configure \ - --libdir=%{_ENGINE_DIR} -make %{?_smp_mflags} + --libdir=%{enginesdir} +%make_build %install # Update the sample config file so that the dynamic path points # to the correct version of the engines directory. -sed -i -e "/^dynamic_path/s, = .*/, = %{_ENGINE_DIR}/," src/openssl.cnf.sample +sed -i -e "/^dynamic_path/s, = .*/, = %{enginesdir}/," src/openssl.cnf.sample %make_install -rm %{buildroot}/%{_ENGINE_DIR}/ibmca.la +rm %{buildroot}/%{enginesdir}/ibmca.la %post #Original fix for bsc#942839 was to update on first install @@ -116,7 +113,12 @@ fi %license LICENSE %doc README.md %doc src/openssl.cnf.sample -%{_ENGINE_DIR}/ibmca.* +%doc src/openssl.cnf.defaultlibica +%doc src/openssl.cnf.libica +%doc src/openssl.cnf.libica-cex +%dir %{_datadir}/%{name} +%{_datadir}/%{name}/openssl.cnf.* +%{enginesdir}/ibmca.* %{_mandir}/man5/ibmca.5%{?ext_man} %changelog From c55615e3ce7bbda36369c8211cfbe6337b5f78549fb1b4ff351826c967bec382 Mon Sep 17 00:00:00 2001 From: Mark Post Date: Fri, 17 Sep 2021 19:52:36 +0000 Subject: [PATCH 2/5] OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-ibmca?expand=0&rev=28 --- openssl-ibmca.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl-ibmca.spec b/openssl-ibmca.spec index 135e2d8..93907dc 100644 --- a/openssl-ibmca.spec +++ b/openssl-ibmca.spec @@ -1,7 +1,7 @@ # # spec file for package openssl-ibmca # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2018-2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed From 52066f802cb349ffe0ebeff27d2690f92ca1d32a01238e9e62298a03b0fdec81 Mon Sep 17 00:00:00 2001 From: Mark Post Date: Fri, 17 Sep 2021 19:56:34 +0000 Subject: [PATCH 3/5] OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-ibmca?expand=0&rev=29 --- openssl-ibmca.changes | 76 +++++++++++++++++++++---------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/openssl-ibmca.changes b/openssl-ibmca.changes index 5f38d24..a045516 100644 --- a/openssl-ibmca.changes +++ b/openssl-ibmca.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- -Fri Sep 17 19:32:37 UTC 2021 - Mark Post +Fri Sep 17 19:32:37 UTC 2021 - Mark Post -- Upgraded to version 2.2.1 +- Upgraded to version 2.2.1 (jsc#SLE-18333) * openssl-ibmca 2.2.1 Bug fixes * openssl-ibmca 2.2.0 @@ -25,19 +25,19 @@ Fri Sep 17 19:32:37 UTC 2021 - Mark Post * Removed the redundant "autoreconf --force --install" ------------------------------------------------------------------- -Wed Sep 16 20:06:12 UTC 2020 - Mark Post +Wed Sep 16 20:06:12 UTC 2020 - Mark Post - Upgrade to version 2.1.1 (jsc#SLE-13709) * Bug fixes ------------------------------------------------------------------- -Tue Sep 10 22:22:49 UTC 2019 - Mark Post +Tue Sep 10 22:22:49 UTC 2019 - Mark Post - Upgrade to version 2.1.0 (jsc#SLE-7852, jsc#SLE-7882) Add MSA9 CPACF support for X25519, X448, Ed25519 and Ed448 ------------------------------------------------------------------- -Wed Aug 28 20:56:08 UTC 2019 - Mark Post +Wed Aug 28 20:56:08 UTC 2019 - Mark Post - Upgraded to version 2.0.3 (jsc#SLE-6123, jsc#SLE-6424) * openssl-ibmca 2.0.3 @@ -52,7 +52,7 @@ Wed Aug 28 20:56:08 UTC 2019 - Mark Post from spec-cleaner. ------------------------------------------------------------------- -Fri Jun 28 18:10:29 UTC 2019 - Mark Post +Fri Jun 28 18:10:29 UTC 2019 - Mark Post - Added openssl-ibmca-sles15sp1-Move-ERR_load-unload-to-bind_helper-resp-destroy-fun.patch An Apache HTTP Server was set up with mod_ssl and the openssl @@ -61,14 +61,14 @@ Fri Jun 28 18:10:29 UTC 2019 - Mark Post (bsc#1138517) ------------------------------------------------------------------- -Tue Nov 27 17:55:19 UTC 2018 - mpost@suse.com +Tue Nov 27 17:55:19 UTC 2018 - mpost.com - Upgraded to version 2.0.2 (Fate#325688) * openssl-ibmca 2.0.2 Fix doing rsa-me, altough rsa-crt would be possible. ------------------------------------------------------------------- -Thu Nov 15 20:17:04 UTC 2018 - mpost@suse.com +Thu Nov 15 20:17:04 UTC 2018 - mpost.com - Upgraded to version 2.0.1 (Fate#325688) * openssl-ibmca 2.0.1 @@ -76,7 +76,7 @@ Thu Nov 15 20:17:04 UTC 2018 - mpost@suse.com - Made multiple changes to the spec file based on spec-cleaner output. ------------------------------------------------------------------- -Wed Nov 14 20:18:07 UTC 2018 - mpost@suse.com +Wed Nov 14 20:18:07 UTC 2018 - mpost.com - Upgraded to version 2.0.0 (Fate#325688) * openssl-ibmca 2.0.0 @@ -101,7 +101,7 @@ Wed Nov 14 20:18:07 UTC 2018 - mpost@suse.com * openssl-ibmca-sles15-Update-lib-name-in-documentation.patch ------------------------------------------------------------------- -Fri Aug 31 19:37:39 UTC 2018 - mpost@suse.com +Fri Aug 31 19:37:39 UTC 2018 - mpost.com - Added the following patches for bsc#1097463 * openssl-ibmca-sles15-Switch-to-ibmca.so-filename-to-allow-a-standalone-us.patch @@ -109,7 +109,7 @@ Fri Aug 31 19:37:39 UTC 2018 - mpost@suse.com * openssl-ibmca-sles15-Update-lib-name-in-documentation.patch ------------------------------------------------------------------- -Fri Sep 22 18:07:10 UTC 2017 - mpost@suse.com +Fri Sep 22 18:07:10 UTC 2017 - mpost.com - Upgraded to version 1.4.0 * Re-license to Apache License v2.0 @@ -141,7 +141,7 @@ Fri Sep 22 18:07:10 UTC 2017 - mpost@suse.com - Updated BuildRequires for libica-devel to be >= 3.1.1 ------------------------------------------------------------------- -Fri Sep 22 07:50:52 UTC 2017 - mpost@suse.com +Fri Sep 22 07:50:52 UTC 2017 - mpost.com - Now that the openSSL engines directory is versioned: * Modified the spec file to query the libcrypto package @@ -153,7 +153,7 @@ Fri Sep 22 07:50:52 UTC 2017 - mpost@suse.com be needed any longer. ------------------------------------------------------------------- -Tue Apr 11 15:09:03 UTC 2017 - mpost@suse.com +Tue Apr 11 15:09:03 UTC 2017 - mpost.com - Added openssl-ibmca-fix-sha512-evp-digest-to-use-evp_md_flag_pkey_method_signature.patch (bsc#1032113) - Added libica-tools to the BuildRequires due to repackaging of libica. @@ -162,13 +162,13 @@ Tue Apr 11 15:09:03 UTC 2017 - mpost@suse.com - Tweaked a comment to get rid of an rpmlint warning message. ------------------------------------------------------------------- -Thu Oct 13 09:36:50 UTC 2016 - meissner@suse.com +Thu Oct 13 09:36:50 UTC 2016 - meissner.com - fixed ssl configuration merging (bsc#1004463) - openssl-ibmca-fix-enginepath.patch: fix the engine path ------------------------------------------------------------------- -Wed Apr 6 19:07:43 UTC 2016 - mpluskal@suse.com +Wed Apr 6 19:07:43 UTC 2016 - mpluskal.com - Use macro for configure (fate#319941) - Use url for source @@ -176,7 +176,7 @@ Wed Apr 6 19:07:43 UTC 2016 - mpluskal@suse.com - Cleanup spec file with spec-cleaner ------------------------------------------------------------------- -Thu Mar 31 21:20:34 UTC 2016 - mpost@suse.com +Thu Mar 31 21:20:34 UTC 2016 - mpost.com - Upgraded to version 1.3.0 (fate#319941) - Updated openssl-ibmca-configure.patch to apply cleanly @@ -188,25 +188,25 @@ Thu Mar 31 21:20:34 UTC 2016 - mpost@suse.com - Did some spec file cleanup. ------------------------------------------------------------------- -Mon Mar 21 20:53:02 UTC 2016 - jjolly@suse.com +Mon Mar 21 20:53:02 UTC 2016 - jjolly.com - Fixed %post script to update library path (the only dynamic part of the ibmca configuration) every time the package is installed. (bsc#966139) ------------------------------------------------------------------- -Tue Oct 27 06:36:06 UTC 2015 - jjolly@suse.com +Tue Oct 27 06:36:06 UTC 2015 - jjolly.com - Updated AUTHORS, INSTALL, and README (bsc#942839) - %post and %postun added to properly update openssl.cnf (bsc#942839) ------------------------------------------------------------------- -Tue Oct 27 03:46:00 UTC 2015 - jjolly@suse.com +Tue Oct 27 03:46:00 UTC 2015 - jjolly.com - Updated to used libica2 == v2.4.2 for SLE12-SP1 (bsc#951138) ------------------------------------------------------------------- -Sun Mar 8 17:15:03 UTC 2015 - p.drouand@gmail.com +Sun Mar 8 17:15:03 UTC 2015 - p.drouand.com - Remove dependency on fillup anf insserv; the package provides neither sysconfig file nor sysvinit script @@ -215,17 +215,17 @@ Sun Mar 8 17:15:03 UTC 2015 - p.drouand@gmail.com - Add openssl-ibmca-configure.patch ------------------------------------------------------------------- -Wed Dec 3 09:22:24 UTC 2014 - meissner@suse.com +Wed Dec 3 09:22:24 UTC 2014 - meissner.com - the openssl engines moved to /%_lib/engines bnc#905480 ------------------------------------------------------------------- -Thu Aug 14 13:03:44 UTC 2014 - jjolly@suse.com +Thu Aug 14 13:03:44 UTC 2014 - jjolly.com - Forced requirement of libica-2_3_0 (bnc#890824) ------------------------------------------------------------------- -Thu Jun 26 07:35:34 UTC 2014 - meissner@suse.com +Thu Jun 26 07:35:34 UTC 2014 - meissner.com - openssl-des-ede.patch: fixed a crash during benchmark (bnc#879922) - openssl-pkey.patch: defer HMAC signing to pkey framework, fixes @@ -233,13 +233,13 @@ Thu Jun 26 07:35:34 UTC 2014 - meissner@suse.com - spec file cleaned up a bit ------------------------------------------------------------------- -Tue Mar 18 12:33:49 UTC 2014 - jjolly@suse.com +Tue Mar 18 12:33:49 UTC 2014 - jjolly.com - openssl-ibmca-sha256-digest-length.patch: SHA256: Fixed message digest length definition in sha256 template (bnc#868275) ------------------------------------------------------------------- -Wed Mar 5 18:51:25 CET 2014 - ro@suse.de +Wed Mar 5 18:51:25 CET 2014 - ro.de - update to 1.2.0 - removed patches: @@ -251,60 +251,60 @@ Wed Mar 5 18:51:25 CET 2014 - ro@suse.de is only available for s390/s390x ------------------------------------------------------------------- -Wed Feb 19 14:02:44 UTC 2014 - jjolly@suse.com +Wed Feb 19 14:02:44 UTC 2014 - jjolly.com - Made required libica-2_1_0 s390 specific - Added x86_64 to ExclusiveArch as %ix86 doesn't do it - Removed libica requirement - allowing build process to find it ------------------------------------------------------------------- -Wed Feb 19 06:10:42 UTC 2014 - jjolly@suse.com +Wed Feb 19 06:10:42 UTC 2014 - jjolly.com - Added COPYING to %files ------------------------------------------------------------------- -Tue Feb 18 14:47:27 UTC 2014 - jjolly@suse.com +Tue Feb 18 14:47:27 UTC 2014 - jjolly.com - Requiring libica 2.1.0 or greater ------------------------------------------------------------------- -Tue Dec 10 20:55:24 UTC 2013 - dvaleev@suse.com +Tue Dec 10 20:55:24 UTC 2013 - dvaleev.com - enable ppc64le ------------------------------------------------------------------- -Fri Mar 23 11:27:45 UTC 2012 - dvaleev@suse.com +Fri Mar 23 11:27:45 UTC 2012 - dvaleev.com - fix build (add autoconf automake libtool to BuildRequires) ------------------------------------------------------------------- -Thu Mar 24 17:19:11 UTC 2011 - coolo@novell.com +Thu Mar 24 17:19:11 UTC 2011 - coolo.com - disable libtool --finish call ------------------------------------------------------------------- -Fri Dec 17 10:56:05 UTC 2010 - coolo@novell.com +Fri Dec 17 10:56:05 UTC 2010 - coolo.com - own engines directory ------------------------------------------------------------------- -Mon Feb 1 12:13:29 UTC 2010 - jengelh@medozas.de +Mon Feb 1 12:13:29 UTC 2010 - jengelh.de - package baselibs.conf ------------------------------------------------------------------- -Wed Jan 7 12:34:56 CET 2009 - olh@suse.de +Wed Jan 7 12:34:56 CET 2009 - olh.de - obsolete old -XXbit packages (bnc#437293) ------------------------------------------------------------------- -Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de +Thu Apr 10 12:54:45 CEST 2008 - ro.de - added baselibs.conf file to build xxbit packages for multilib support ------------------------------------------------------------------- -Tue Feb 13 12:51:00 CET 2007 - uli@suse.de +Tue Feb 13 12:51:00 CET 2007 - uli.de - added fixes by IBM (bug #243801): ibmca-segfault.fix: rewrite ibmca_mod_expto remove improper use of BIGNUM @@ -314,12 +314,12 @@ Tue Feb 13 12:51:00 CET 2007 - uli@suse.de openssl-ibmca-1.0.0.rc2-memset-fix.patch: fix memory initialization problem ------------------------------------------------------------------- -Mon Jun 19 17:22:37 CEST 2006 - uli@suse.de +Mon Jun 19 17:22:37 CEST 2006 - uli.de - updated README (bug #185508) ------------------------------------------------------------------- -Tue Mar 28 14:27:32 CEST 2006 - hare@suse.de +Tue Mar 28 14:27:32 CEST 2006 - hare.de - Fixed configure.in to build correctly - Fixed spec file From 1d544502b1928059a298c61d6fc16ec5915e644346e75cb570103083f2e96ac5 Mon Sep 17 00:00:00 2001 From: Mark Post Date: Fri, 17 Sep 2021 20:01:53 +0000 Subject: [PATCH 4/5] OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-ibmca?expand=0&rev=30 --- openssl-ibmca.changes | 74 +++++++++++++++++++++---------------------- openssl-ibmca.spec | 2 +- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/openssl-ibmca.changes b/openssl-ibmca.changes index a045516..2ff48e9 100644 --- a/openssl-ibmca.changes +++ b/openssl-ibmca.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Fri Sep 17 19:32:37 UTC 2021 - Mark Post +Fri Sep 17 19:32:37 UTC 2021 - Mark Post - Upgraded to version 2.2.1 (jsc#SLE-18333) * openssl-ibmca 2.2.1 @@ -25,19 +25,19 @@ Fri Sep 17 19:32:37 UTC 2021 - Mark Post * Removed the redundant "autoreconf --force --install" ------------------------------------------------------------------- -Wed Sep 16 20:06:12 UTC 2020 - Mark Post +Wed Sep 16 20:06:12 UTC 2020 - Mark Post - Upgrade to version 2.1.1 (jsc#SLE-13709) * Bug fixes ------------------------------------------------------------------- -Tue Sep 10 22:22:49 UTC 2019 - Mark Post +Tue Sep 10 22:22:49 UTC 2019 - Mark Post - Upgrade to version 2.1.0 (jsc#SLE-7852, jsc#SLE-7882) Add MSA9 CPACF support for X25519, X448, Ed25519 and Ed448 ------------------------------------------------------------------- -Wed Aug 28 20:56:08 UTC 2019 - Mark Post +Wed Aug 28 20:56:08 UTC 2019 - Mark Post - Upgraded to version 2.0.3 (jsc#SLE-6123, jsc#SLE-6424) * openssl-ibmca 2.0.3 @@ -52,7 +52,7 @@ Wed Aug 28 20:56:08 UTC 2019 - Mark Post from spec-cleaner. ------------------------------------------------------------------- -Fri Jun 28 18:10:29 UTC 2019 - Mark Post +Fri Jun 28 18:10:29 UTC 2019 - Mark Post - Added openssl-ibmca-sles15sp1-Move-ERR_load-unload-to-bind_helper-resp-destroy-fun.patch An Apache HTTP Server was set up with mod_ssl and the openssl @@ -61,14 +61,14 @@ Fri Jun 28 18:10:29 UTC 2019 - Mark Post (bsc#1138517) ------------------------------------------------------------------- -Tue Nov 27 17:55:19 UTC 2018 - mpost.com +Tue Nov 27 17:55:19 UTC 2018 - mpost@suse.com - Upgraded to version 2.0.2 (Fate#325688) * openssl-ibmca 2.0.2 Fix doing rsa-me, altough rsa-crt would be possible. ------------------------------------------------------------------- -Thu Nov 15 20:17:04 UTC 2018 - mpost.com +Thu Nov 15 20:17:04 UTC 2018 - mpost@suse.com - Upgraded to version 2.0.1 (Fate#325688) * openssl-ibmca 2.0.1 @@ -76,7 +76,7 @@ Thu Nov 15 20:17:04 UTC 2018 - mpost.com - Made multiple changes to the spec file based on spec-cleaner output. ------------------------------------------------------------------- -Wed Nov 14 20:18:07 UTC 2018 - mpost.com +Wed Nov 14 20:18:07 UTC 2018 - mpost@suse.com - Upgraded to version 2.0.0 (Fate#325688) * openssl-ibmca 2.0.0 @@ -101,7 +101,7 @@ Wed Nov 14 20:18:07 UTC 2018 - mpost.com * openssl-ibmca-sles15-Update-lib-name-in-documentation.patch ------------------------------------------------------------------- -Fri Aug 31 19:37:39 UTC 2018 - mpost.com +Fri Aug 31 19:37:39 UTC 2018 - mpost@suse.com - Added the following patches for bsc#1097463 * openssl-ibmca-sles15-Switch-to-ibmca.so-filename-to-allow-a-standalone-us.patch @@ -109,7 +109,7 @@ Fri Aug 31 19:37:39 UTC 2018 - mpost.com * openssl-ibmca-sles15-Update-lib-name-in-documentation.patch ------------------------------------------------------------------- -Fri Sep 22 18:07:10 UTC 2017 - mpost.com +Fri Sep 22 18:07:10 UTC 2017 - mpost@suse.com - Upgraded to version 1.4.0 * Re-license to Apache License v2.0 @@ -141,7 +141,7 @@ Fri Sep 22 18:07:10 UTC 2017 - mpost.com - Updated BuildRequires for libica-devel to be >= 3.1.1 ------------------------------------------------------------------- -Fri Sep 22 07:50:52 UTC 2017 - mpost.com +Fri Sep 22 07:50:52 UTC 2017 - mpost@suse.com - Now that the openSSL engines directory is versioned: * Modified the spec file to query the libcrypto package @@ -153,7 +153,7 @@ Fri Sep 22 07:50:52 UTC 2017 - mpost.com be needed any longer. ------------------------------------------------------------------- -Tue Apr 11 15:09:03 UTC 2017 - mpost.com +Tue Apr 11 15:09:03 UTC 2017 - mpost@suse.com - Added openssl-ibmca-fix-sha512-evp-digest-to-use-evp_md_flag_pkey_method_signature.patch (bsc#1032113) - Added libica-tools to the BuildRequires due to repackaging of libica. @@ -162,13 +162,13 @@ Tue Apr 11 15:09:03 UTC 2017 - mpost.com - Tweaked a comment to get rid of an rpmlint warning message. ------------------------------------------------------------------- -Thu Oct 13 09:36:50 UTC 2016 - meissner.com +Thu Oct 13 09:36:50 UTC 2016 - meissner@suse.com - fixed ssl configuration merging (bsc#1004463) - openssl-ibmca-fix-enginepath.patch: fix the engine path ------------------------------------------------------------------- -Wed Apr 6 19:07:43 UTC 2016 - mpluskal.com +Wed Apr 6 19:07:43 UTC 2016 - mpluskal@suse.com - Use macro for configure (fate#319941) - Use url for source @@ -176,7 +176,7 @@ Wed Apr 6 19:07:43 UTC 2016 - mpluskal.com - Cleanup spec file with spec-cleaner ------------------------------------------------------------------- -Thu Mar 31 21:20:34 UTC 2016 - mpost.com +Thu Mar 31 21:20:34 UTC 2016 - mpost@suse.com - Upgraded to version 1.3.0 (fate#319941) - Updated openssl-ibmca-configure.patch to apply cleanly @@ -188,25 +188,25 @@ Thu Mar 31 21:20:34 UTC 2016 - mpost.com - Did some spec file cleanup. ------------------------------------------------------------------- -Mon Mar 21 20:53:02 UTC 2016 - jjolly.com +Mon Mar 21 20:53:02 UTC 2016 - jjolly@suse.com - Fixed %post script to update library path (the only dynamic part of the ibmca configuration) every time the package is installed. (bsc#966139) ------------------------------------------------------------------- -Tue Oct 27 06:36:06 UTC 2015 - jjolly.com +Tue Oct 27 06:36:06 UTC 2015 - jjolly@suse.com - Updated AUTHORS, INSTALL, and README (bsc#942839) - %post and %postun added to properly update openssl.cnf (bsc#942839) ------------------------------------------------------------------- -Tue Oct 27 03:46:00 UTC 2015 - jjolly.com +Tue Oct 27 03:46:00 UTC 2015 - jjolly@suse.com - Updated to used libica2 == v2.4.2 for SLE12-SP1 (bsc#951138) ------------------------------------------------------------------- -Sun Mar 8 17:15:03 UTC 2015 - p.drouand.com +Sun Mar 8 17:15:03 UTC 2015 - p.drouand@gmail.com - Remove dependency on fillup anf insserv; the package provides neither sysconfig file nor sysvinit script @@ -215,17 +215,17 @@ Sun Mar 8 17:15:03 UTC 2015 - p.drouand.com - Add openssl-ibmca-configure.patch ------------------------------------------------------------------- -Wed Dec 3 09:22:24 UTC 2014 - meissner.com +Wed Dec 3 09:22:24 UTC 2014 - meissner@suse.com - the openssl engines moved to /%_lib/engines bnc#905480 ------------------------------------------------------------------- -Thu Aug 14 13:03:44 UTC 2014 - jjolly.com +Thu Aug 14 13:03:44 UTC 2014 - jjolly@suse.com - Forced requirement of libica-2_3_0 (bnc#890824) ------------------------------------------------------------------- -Thu Jun 26 07:35:34 UTC 2014 - meissner.com +Thu Jun 26 07:35:34 UTC 2014 - meissner@suse.com - openssl-des-ede.patch: fixed a crash during benchmark (bnc#879922) - openssl-pkey.patch: defer HMAC signing to pkey framework, fixes @@ -233,13 +233,13 @@ Thu Jun 26 07:35:34 UTC 2014 - meissner.com - spec file cleaned up a bit ------------------------------------------------------------------- -Tue Mar 18 12:33:49 UTC 2014 - jjolly.com +Tue Mar 18 12:33:49 UTC 2014 - jjolly@suse.com - openssl-ibmca-sha256-digest-length.patch: SHA256: Fixed message digest length definition in sha256 template (bnc#868275) ------------------------------------------------------------------- -Wed Mar 5 18:51:25 CET 2014 - ro.de +Wed Mar 5 18:51:25 CET 2014 - ro@suse.de - update to 1.2.0 - removed patches: @@ -251,60 +251,60 @@ Wed Mar 5 18:51:25 CET 2014 - ro.de is only available for s390/s390x ------------------------------------------------------------------- -Wed Feb 19 14:02:44 UTC 2014 - jjolly.com +Wed Feb 19 14:02:44 UTC 2014 - jjolly@suse.com - Made required libica-2_1_0 s390 specific - Added x86_64 to ExclusiveArch as %ix86 doesn't do it - Removed libica requirement - allowing build process to find it ------------------------------------------------------------------- -Wed Feb 19 06:10:42 UTC 2014 - jjolly.com +Wed Feb 19 06:10:42 UTC 2014 - jjolly@suse.com - Added COPYING to %files ------------------------------------------------------------------- -Tue Feb 18 14:47:27 UTC 2014 - jjolly.com +Tue Feb 18 14:47:27 UTC 2014 - jjolly@suse.com - Requiring libica 2.1.0 or greater ------------------------------------------------------------------- -Tue Dec 10 20:55:24 UTC 2013 - dvaleev.com +Tue Dec 10 20:55:24 UTC 2013 - dvaleev@suse.com - enable ppc64le ------------------------------------------------------------------- -Fri Mar 23 11:27:45 UTC 2012 - dvaleev.com +Fri Mar 23 11:27:45 UTC 2012 - dvaleev@suse.com - fix build (add autoconf automake libtool to BuildRequires) ------------------------------------------------------------------- -Thu Mar 24 17:19:11 UTC 2011 - coolo.com +Thu Mar 24 17:19:11 UTC 2011 - coolo@novell.com - disable libtool --finish call ------------------------------------------------------------------- -Fri Dec 17 10:56:05 UTC 2010 - coolo.com +Fri Dec 17 10:56:05 UTC 2010 - coolo@novell.com - own engines directory ------------------------------------------------------------------- -Mon Feb 1 12:13:29 UTC 2010 - jengelh.de +Mon Feb 1 12:13:29 UTC 2010 - jengelh@medozas.de - package baselibs.conf ------------------------------------------------------------------- -Wed Jan 7 12:34:56 CET 2009 - olh.de +Wed Jan 7 12:34:56 CET 2009 - olh@suse.de - obsolete old -XXbit packages (bnc#437293) ------------------------------------------------------------------- -Thu Apr 10 12:54:45 CEST 2008 - ro.de +Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de - added baselibs.conf file to build xxbit packages for multilib support ------------------------------------------------------------------- -Tue Feb 13 12:51:00 CET 2007 - uli.de +Tue Feb 13 12:51:00 CET 2007 - uli@suse.de - added fixes by IBM (bug #243801): ibmca-segfault.fix: rewrite ibmca_mod_expto remove improper use of BIGNUM @@ -314,12 +314,12 @@ Tue Feb 13 12:51:00 CET 2007 - uli.de openssl-ibmca-1.0.0.rc2-memset-fix.patch: fix memory initialization problem ------------------------------------------------------------------- -Mon Jun 19 17:22:37 CEST 2006 - uli.de +Mon Jun 19 17:22:37 CEST 2006 - uli@suse.de - updated README (bug #185508) ------------------------------------------------------------------- -Tue Mar 28 14:27:32 CEST 2006 - hare.de +Tue Mar 28 14:27:32 CEST 2006 - hare@suse.de - Fixed configure.in to build correctly - Fixed spec file diff --git a/openssl-ibmca.spec b/openssl-ibmca.spec index 93907dc..135e2d8 100644 --- a/openssl-ibmca.spec +++ b/openssl-ibmca.spec @@ -1,7 +1,7 @@ # # spec file for package openssl-ibmca # -# Copyright (c) 2018-2021 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed From 15e938deea4713e89fc8163dba36a5b741109613f2a90ad2fc03bd8d393c9f34 Mon Sep 17 00:00:00 2001 From: Mark Post Date: Fri, 17 Sep 2021 20:02:26 +0000 Subject: [PATCH 5/5] OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-ibmca?expand=0&rev=31 --- openssl-ibmca.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl-ibmca.spec b/openssl-ibmca.spec index 135e2d8..93907dc 100644 --- a/openssl-ibmca.spec +++ b/openssl-ibmca.spec @@ -1,7 +1,7 @@ # # spec file for package openssl-ibmca # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2018-2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed