Hello community,

here is the log from the commit of package icecream for openSUSE:Factory 
checked in at 2020-08-17 12:04:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/icecream (Old)
 and      /work/SRC/openSUSE:Factory/.icecream.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "icecream"

Mon Aug 17 12:04:30 2020 rev:55 rq:827080 version:1.3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/icecream/icecream.changes        2019-09-17 
13:40:04.829817303 +0200
+++ /work/SRC/openSUSE:Factory/.icecream.new.3399/icecream.changes      
2020-08-17 12:05:01.766682530 +0200
@@ -1,0 +2,7 @@
+Sun Aug 16 13:45:59 UTC 2020 - Dirk Mueller <dmuel...@suse.com>
+
+- update to 1.3.1
+  get rid of the ASAN travis build
+  Revert icecc-create-env darwin optimization
+
+-------------------------------------------------------------------

Old:
----
  icecc-1.3.tar.xz

New:
----
  icecc-1.3.1.tar.xz

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

Other differences:
------------------
++++++ icecream.spec ++++++
--- /var/tmp/diff_new_pack.oF5moJ/_old  2020-08-17 12:05:02.910683168 +0200
+++ /var/tmp/diff_new_pack.oF5moJ/_new  2020-08-17 12:05:02.910683168 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package icecream
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
   %define _fillupdir %{_localstatedir}/adm/fillup-templates
 %endif
 Name:           icecream
-Version:        1.3
+Version:        1.3.1
 Release:        0
 Summary:        Distributed Compilation in the Network
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later

++++++ icecc-1.3.tar.xz -> icecc-1.3.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/icecc-1.3/ChangeLog new/icecc-1.3.1/ChangeLog
--- old/icecc-1.3/ChangeLog     2019-09-11 19:41:20.000000000 +0200
+++ new/icecc-1.3.1/ChangeLog   2020-02-04 14:40:08.000000000 +0100
@@ -1,3 +1,28 @@
+2020-02-04  Luboš Luňák  <l.lu...@centrum.cz>  
[6eec038c11a821b1d2848e8197cbc5b6bca6b3a0]
+
+       1.3.1
+
+
+2020-02-04  Luboš Luňák  <l.lu...@centrum.cz>  
[987daa9b49937ea032f89e7dc37fa5bea240d451]
+
+       get rid of the ASAN travis build
+
+       Now it's broken even in the old deprecated Ubuntu system, I can't get
+       it to work and I'm tired of fighting it. With the valgrind build there's
+       not much point anyway. Feel free to get it to work if you know how.
+
+       (cherry picked from commit a24d2827741c59133abcc60cbae6fd33f3a1c626)
+
+2020-02-04  Logan Harbour  <loganhharb...@gmail.com>  
[2c96291bfd0a528d0fabbfac591846394b718a09]
+
+       Revert icecc-create-env darwin optimization
+
+       Reverts Darwin changes made in 3ac9141
+
+       refs #509
+
+       (cherry picked from commit 10b9468f5bd30a0fdb058901e91e7a29f1bfbd42)
+
 2019-09-11  Luboš Luňák  <l.lu...@centrum.cz>  
[aa9e2fc68ee045f7fb55dab853f1cf58a80d2952]
 
        1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/icecc-1.3/NEWS new/icecc-1.3.1/NEWS
--- old/icecc-1.3/NEWS  2019-09-11 19:32:25.000000000 +0200
+++ new/icecc-1.3.1/NEWS        2020-02-04 14:22:27.000000000 +0100
@@ -1,3 +1,6 @@
+1.3.1
+- fix creating compiler environment on Mac
+
 1.3
 - remove hardcoded compiler paths (compiler tarball is created with the same 
compiler that is used for build)
 - avoid build overloading by limiting number of local preprocessing runs to 
local CPUs available
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/icecc-1.3/client/icecc-create-env 
new/icecc-1.3.1/client/icecc-create-env
--- old/icecc-1.3/client/icecc-create-env       2019-09-11 19:41:15.000000000 
+0200
+++ new/icecc-1.3.1/client/icecc-create-env     2020-02-04 14:39:57.000000000 
+0100
@@ -190,14 +190,8 @@
            # Check wether the same library also exists in the parent directory,
            # and prefer that on the assumption that it is a more generic one.
            local baselib=$(echo "$lib" | sed 
's,\(/[^/]*\)/.*\(/[^/]*\)$,\1\2,')
-           if test -f "$baselib"; then
-             lib=$baselib
-              add_file "$lib" "$libinstall"
-            else
-              # Optimization: We are adding a library we got from otool 
output, so avoid
-              # using otool on it, as it should not find more than this otool.
-              add_file "skipldd" "$lib" "$libinstall"
-            fi
+           test -f "$baselib" && lib=$baselib
+                 add_file "$lib" "$libinstall"
          done
     fi
   fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/icecc-1.3/client/icecc-create-env.in 
new/icecc-1.3.1/client/icecc-create-env.in
--- old/icecc-1.3/client/icecc-create-env.in    2019-09-05 21:50:33.000000000 
+0200
+++ new/icecc-1.3.1/client/icecc-create-env.in  2020-02-04 13:35:49.000000000 
+0100
@@ -190,14 +190,8 @@
            # Check wether the same library also exists in the parent directory,
            # and prefer that on the assumption that it is a more generic one.
            local baselib=$(echo "$lib" | sed 
's,\(/[^/]*\)/.*\(/[^/]*\)$,\1\2,')
-           if test -f "$baselib"; then
-             lib=$baselib
-              add_file "$lib" "$libinstall"
-            else
-              # Optimization: We are adding a library we got from otool 
output, so avoid
-              # using otool on it, as it should not find more than this otool.
-              add_file "skipldd" "$lib" "$libinstall"
-            fi
+           test -f "$baselib" && lib=$baselib
+                 add_file "$lib" "$libinstall"
          done
     fi
   fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/icecc-1.3/configure new/icecc-1.3.1/configure
--- old/icecc-1.3/configure     2019-09-11 19:41:07.000000000 +0200
+++ new/icecc-1.3.1/configure   2020-02-04 14:39:50.000000000 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for icecc 1.3.
+# Generated by GNU Autoconf 2.69 for icecc 1.3.1.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -587,8 +587,8 @@
 # Identity of this package.
 PACKAGE_NAME='icecc'
 PACKAGE_TARNAME='icecc'
-PACKAGE_VERSION='1.3'
-PACKAGE_STRING='icecc 1.3'
+PACKAGE_VERSION='1.3.1'
+PACKAGE_STRING='icecc 1.3.1'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1341,7 +1341,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures icecc 1.3 to adapt to many kinds of systems.
+\`configure' configures icecc 1.3.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1411,7 +1411,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of icecc 1.3:";;
+     short | recursive ) echo "Configuration of icecc 1.3.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1538,7 +1538,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-icecc configure 1.3
+icecc configure 1.3.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2233,7 +2233,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by icecc $as_me 1.3, which was
+It was created by icecc $as_me 1.3.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3099,7 +3099,7 @@
 
 # Define the identity of the package.
  PACKAGE='icecc'
- VERSION='1.3'
+ VERSION='1.3.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -17920,7 +17920,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by icecc $as_me 1.3, which was
+This file was extended by icecc $as_me 1.3.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -17986,7 +17986,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-icecc config.status 1.3
+icecc config.status 1.3.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
@@ -20534,7 +20534,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by icecc $as_me 1.3, which was
+This file was extended by icecc $as_me 1.3.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -20600,7 +20600,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-icecc config.status 1.3
+icecc config.status 1.3.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/icecc-1.3/configure.ac new/icecc-1.3.1/configure.ac
--- old/icecc-1.3/configure.ac  2019-09-11 19:32:25.000000000 +0200
+++ new/icecc-1.3.1/configure.ac        2020-02-04 14:22:27.000000000 +0100
@@ -10,7 +10,7 @@
 # Pre-release versions: x.y.z, where z = 90 + X in rcX (1.1rc1 = 1.1.91)
 m4_define([icecream_version_major],[1])
 m4_define([icecream_version_minor],[3])
-m4_define([icecream_version_micro],[])
+m4_define([icecream_version_micro],[1])
 m4_ifnblank(icecream_version_micro,
         
[m4_define([icecream_version],[icecream_version_major.icecream_version_minor.icecream_version_micro])],
         
[m4_define([icecream_version],[icecream_version_major.icecream_version_minor])])


Reply via email to