Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package brp-check-suse for openSUSE:Factory 
checked in at 2021-04-23 17:49:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old)
 and      /work/SRC/openSUSE:Factory/.brp-check-suse.new.12324 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "brp-check-suse"

Fri Apr 23 17:49:35 2021 rev:69 rq:887052 version:84.87+git20210420.a4765d7

Changes:
--------
--- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes    
2021-02-02 14:24:19.799266614 +0100
+++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.12324/brp-check-suse.changes 
2021-04-23 17:49:36.742689646 +0200
@@ -1,0 +2,12 @@
+Tue Apr 20 15:09:48 UTC 2021 - [email protected]
+
+- Update to version 84.87+git20210420.a4765d7:
+  * rename brp-50-fipscheck to brp-50-generate-fips-hmac
+
+-------------------------------------------------------------------
+Mon Apr 19 13:07:43 UTC 2021 - [email protected]
+
+- Update to version 84.87+git20210419.bf6495b:
+  * add brp-50-fipscheck for bsc#1184555
+
+-------------------------------------------------------------------

Old:
----
  brp-check-suse-84.87+git20201203.5008eba.tar.xz

New:
----
  brp-check-suse-84.87+git20210420.a4765d7.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ brp-check-suse.spec ++++++
--- /var/tmp/diff_new_pack.ItsDG6/_old  2021-04-23 17:49:37.226690478 +0200
+++ /var/tmp/diff_new_pack.ItsDG6/_new  2021-04-23 17:49:37.226690478 +0200
@@ -23,7 +23,7 @@
 License:        GPL-2.0-or-later
 Group:          Development/Tools/Building
 Requires:       perl
-Version:        84.87+git20201203.5008eba
+Version:        84.87+git20210420.a4765d7
 Release:        0
 URL:            https://github.com/openSUSE/brp-check-suse
 BuildRequires:  gcc-c++
@@ -40,7 +40,6 @@
 This package contains all suse scripts called in the
 build root checking or in parts implementing SUSE policies.
 
-
 %prep
 %setup -q
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.ItsDG6/_old  2021-04-23 17:49:37.266690547 +0200
+++ /var/tmp/diff_new_pack.ItsDG6/_new  2021-04-23 17:49:37.266690547 +0200
@@ -1,5 +1,5 @@
 <servicedata>
   <service name="tar_scm">
     <param name="url">git://github.com/openSUSE/brp-check-suse.git</param>
-  <param 
name="changesrevision">94d2e68c24b161dcb5f986033e4e1eff53db06e6</param></service>
+  <param 
name="changesrevision">a4765d7748331b102a367eefe2f9c5d774998ed0</param></service>
 </servicedata>
\ No newline at end of file

++++++ brp-check-suse-84.87+git20201203.5008eba.tar.xz -> 
brp-check-suse-84.87+git20210420.a4765d7.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/brp-check-suse-84.87+git20201203.5008eba/brp-50-generate-fips-hmac 
new/brp-check-suse-84.87+git20210420.a4765d7/brp-50-generate-fips-hmac
--- old/brp-check-suse-84.87+git20201203.5008eba/brp-50-generate-fips-hmac      
1970-01-01 01:00:00.000000000 +0100
+++ new/brp-check-suse-84.87+git20210420.a4765d7/brp-50-generate-fips-hmac      
2021-04-20 17:08:35.000000000 +0200
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
+       exit 0
+fi
+
+if [ -n "$BRP_FIPSHMAC_FILES" ] ; then
+       FIPSHMAC=$(type -p fipshmac)
+       if [ -z "$FIPSHMAC" ] ; then
+               FIPSHMAC=/usr/bin/fipshmac
+       fi
+       if [ -x "$FIPSHMAC" ] ; then
+               RES=0
+               for item in $BRP_FIPSHMAC_FILES ; do
+                       $FIPSHMAC $item || RES=1
+               done
+               if [ "$RES" != "0" ] ; then
+                       echo "brp-50-generate-fips-hmac (using $FIPSHMAC) 
failed"
+                       exit 1
+               fi
+       else
+               echo "fipshmac ($FIPSHMAC) is not executable"
+               exit 1
+       fi
+fi
+

Reply via email to