Hello community,

here is the log from the commit of package post-build-checks for 
openSUSE:Factory checked in at 2018-08-28 09:18:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/post-build-checks (Old)
 and      /work/SRC/openSUSE:Factory/.post-build-checks.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "post-build-checks"

Tue Aug 28 09:18:31 2018 rev:90 rq:628432 version:84.88+git20180809.3be1b09

Changes:
--------
--- /work/SRC/openSUSE:Factory/post-build-checks/post-build-checks.changes      
2018-04-17 11:08:53.738661200 +0200
+++ /work/SRC/openSUSE:Factory/.post-build-checks.new/post-build-checks.changes 
2018-08-28 09:18:35.387722696 +0200
@@ -1,0 +2,7 @@
+Thu Aug 09 14:16:06 UTC 2018 - adr...@suse.de
+
+- Update to version 84.88+git20180809.3be1b09:
+  * Warnings for core files, no errors yet
+  * QT_HASH_SEED has to be 0
+
+-------------------------------------------------------------------

Old:
----
  post-build-checks-84.87+git20180412.b38aed4.tar.xz

New:
----
  post-build-checks-84.88+git20180809.3be1b09.tar.xz

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

Other differences:
------------------
++++++ post-build-checks.spec ++++++
--- /var/tmp/diff_new_pack.xNdoSL/_old  2018-08-28 09:18:35.843724146 +0200
+++ /var/tmp/diff_new_pack.xNdoSL/_new  2018-08-28 09:18:35.847724159 +0200
@@ -16,13 +16,13 @@
 #
 
 
-%define version_unconverted 84.87+git20180412.b38aed4
+%define version_unconverted 84.88+git20180809.3be1b09
 
 Name:           post-build-checks
 Summary:        post checks for build after rpms have been created
-License:        GPL-2.0+
+License:        GPL-2.0-or-later
 Group:          Development/Tools/Building
-Version:        84.87+git20180412.b38aed4
+Version:        84.88+git20180809.3be1b09
 Release:        0
 PreReq:         aaa_base permissions sed
 Requires:       aaa_base-malloccheck
@@ -80,9 +80,6 @@
        (echo "Executing(%%build)" ; gcc $RPM_OPT_FLAGS -c $i 2>&1)| 
checks-data/check_gcc_output 2>&1|grep "^[WE]"
 done
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post
 # do nothing when not in a build chroot
 if ! test -e /.buildenv; then
@@ -115,7 +112,7 @@
 
 %files
 %defattr(-, root, root)
-%doc COPYING
+%license COPYING
 /usr/lib/build
 /etc/profile.d/suse-buildsystem.sh
 /etc/suse-ignored-rpaths.conf

++++++ _service ++++++
--- /var/tmp/diff_new_pack.xNdoSL/_old  2018-08-28 09:18:35.879724260 +0200
+++ /var/tmp/diff_new_pack.xNdoSL/_new  2018-08-28 09:18:35.879724260 +0200
@@ -1,7 +1,7 @@
 <services>
   <service name="tar_scm" mode="disabled">
-    <param name="version">84.87</param>
-    <param name="versionformat">84.87+git%cd.%h</param>
+    <param name="version">84.88</param>
+    <param name="versionformat">84.88+git%cd.%h</param>
     <param name="url">git://github.com/openSUSE/post-build-checks.git</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.xNdoSL/_old  2018-08-28 09:18:35.899724325 +0200
+++ /var/tmp/diff_new_pack.xNdoSL/_new  2018-08-28 09:18:35.899724325 +0200
@@ -1,5 +1,5 @@
 <servicedata>
   <service name="tar_scm">
     <param name="url">git://github.com/openSUSE/post-build-checks.git</param>
-  <param 
name="changesrevision">0ef96b34d7349aed75193a3991b2b1ea8730e902</param></service>
+  <param 
name="changesrevision">3be1b099402914cdfe62d7d82e80ab0742b7ebe8</param></service>
 </servicedata>
\ No newline at end of file

++++++ post-build-checks-84.87+git20180412.b38aed4.tar.xz -> 
post-build-checks-84.88+git20180809.3be1b09.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20180412.b38aed4/checks/50-check-core-files 
new/post-build-checks-84.88+git20180809.3be1b09/checks/50-check-core-files
--- old/post-build-checks-84.87+git20180412.b38aed4/checks/50-check-core-files  
1970-01-01 01:00:00.000000000 +0100
+++ new/post-build-checks-84.88+git20180809.3be1b09/checks/50-check-core-files  
2018-08-09 16:13:13.000000000 +0200
@@ -0,0 +1,13 @@
+#!/bin/bash
+# Checking for crashed programs
+# This is currently just a warning, but should become an error
+#
+
+if [ -d $BUILD_ROOT/.build/cores ]; then
+
+  echo "... checking for core files"
+  find $BUILD_ROOT/.build/cores -type f
+
+fi
+
+exit 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/post-build-checks-84.87+git20180412.b38aed4/suse-buildsystem.sh 
new/post-build-checks-84.88+git20180809.3be1b09/suse-buildsystem.sh
--- old/post-build-checks-84.87+git20180412.b38aed4/suse-buildsystem.sh 
2018-04-12 01:05:17.000000000 +0200
+++ new/post-build-checks-84.88+git20180809.3be1b09/suse-buildsystem.sh 
2018-08-09 16:13:13.000000000 +0200
@@ -1,6 +1,6 @@
 export SUSE_IGNORED_RPATHS=/etc/suse-ignored-rpaths.conf
 export SUSE_ASNEEDED=1
-export QT_HASH_SEED=42
+export QT_HASH_SEED=0
 export PERL_HASH_SEED=42
 export PYTHONHASHSEED=0
 


Reply via email to