Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package openssl-1_1 for openSUSE:Factory checked in at 2023-10-08 12:17:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openssl-1_1 (Old) and /work/SRC/openSUSE:Factory/.openssl-1_1.new.28202 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openssl-1_1" Sun Oct 8 12:17:11 2023 rev:52 rq:1116068 version:1.1.1w Changes: -------- --- /work/SRC/openSUSE:Factory/openssl-1_1/openssl-1_1.changes 2023-09-17 19:28:57.712861632 +0200 +++ /work/SRC/openSUSE:Factory/.openssl-1_1.new.28202/openssl-1_1.changes 2023-10-08 12:18:42.691005428 +0200 @@ -1,0 +2,6 @@ +Wed Oct 4 07:15:29 UTC 2023 - Otto Hollmann <[email protected]> + +- Displays "fips" in the version string (bsc#1215215) + * Add openssl-1_1-fips-bsc1215215_fips_in_version_string.patch + +------------------------------------------------------------------- New: ---- openssl-1_1-fips-bsc1215215_fips_in_version_string.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openssl-1_1.spec ++++++ --- /var/tmp/diff_new_pack.Z1XUda/_old 2023-10-08 12:18:50.031269338 +0200 +++ /var/tmp/diff_new_pack.Z1XUda/_new 2023-10-08 12:18:50.035269482 +0200 @@ -175,7 +175,8 @@ Patch106: openssl-s_client-check-ocsp-status.patch # PATCH-FIX-SUSE bsc#1213517 Dont pass zero length input to EVP_Cipher Patch107: openssl-dont-pass-zero-length-input-to-EVP_Cipher.patch - +#PATCH-FIX-SUSE bsc#1215215 FIPS: Add "fips" to version string +Patch108: openssl-1_1-fips-bsc1215215_fips_in_version_string.patch BuildRequires: jitterentropy-devel >= 3.4.0 BuildRequires: pkgconfig BuildRequires: pkgconfig(zlib) ++++++ openssl-1_1-fips-bsc1215215_fips_in_version_string.patch ++++++ --- include/openssl/opensslconf.h.in | 10 +++++----- include/openssl/opensslv.h | 6 +++++- 2 files changed, 10 insertions(+), 6 deletions(-) --- a/include/openssl/opensslconf.h.in +++ b/include/openssl/opensslconf.h.in @@ -9,6 +9,11 @@ * https://www.openssl.org/source/license.html */ +/* Always build FIPS module */ +#ifndef OPENSSL_FIPS +# define OPENSSL_FIPS +#endif + #include <openssl/opensslv.h> #ifdef __cplusplus @@ -155,11 +160,6 @@ extern "C" { #define RC4_INT {- $config{rc4_int} -} -/* Always build FIPS module */ -#ifndef OPENSSL_FIPS -# define OPENSSL_FIPS -#endif - #ifdef __cplusplus } #endif --- a/include/openssl/opensslv.h +++ b/include/openssl/opensslv.h @@ -40,7 +40,11 @@ extern "C" { * major minor fix final patch/beta) */ # define OPENSSL_VERSION_NUMBER 0x1010117fL -# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1w 11 Sep 2023" +# ifdef OPENSSL_FIPS +# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1w-fips 11 Sep 2023" +# else +# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1w 11 Sep 2023" +# endif /*- * The macros below are to be used for shared library (.so, .dll, ...)
