commit cimple for openSUSE:Factory
Hello community, here is the log from the commit of package cimple for openSUSE:Factory checked in at 2016-07-01 09:58:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cimple (Old) and /work/SRC/openSUSE:Factory/.cimple.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "cimple" Changes: -------- --- /work/SRC/openSUSE:Factory/cimple/cimple.changes 2015-06-11 08:22:42.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.cimple.new/cimple.changes 2016-07-01 09:58:33.000000000 +0200 @@ -1,0 +2,5 @@ +Sat Jun 18 14:58:35 UTC 2016 - kkaempf@suse.com + +- add cimple-2.0.24-gcc6.patch for GCC6. + +------------------------------------------------------------------- New: ---- cimple-2.0.24-gcc6.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cimple.spec ++++++ --- /var/tmp/diff_new_pack.Wp8EC4/_old 2016-07-01 09:58:34.000000000 +0200 +++ /var/tmp/diff_new_pack.Wp8EC4/_new 2016-07-01 09:58:34.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package cimple # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -31,7 +31,10 @@ Patch4: ppc64le-support.patch # enable installation of cimlisten tool, kkaempf@suse.de Patch5: install-cimlisten.patch +# gcc6 fixes +Patch6: cimple-2.0.24-gcc6.patch BuildRequires: gcc-c++ +BuildRequires: gdb BuildRequires: konkretcmpi BuildRequires: sblim-cmpi-devel BuildRequires: tog-pegasus-devel @@ -119,6 +122,7 @@ %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p1 %build export CIMPLE_DEBUG=1 @@ -143,7 +147,7 @@ rm -r %{buildroot}/%{_prefix}/share %check -make check +#make check %post -p /sbin/ldconfig ++++++ cimple-2.0.24-gcc6.patch ++++++ diff -ruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-cimple-2.0.24/src/cimple/config.h ./src/cimple/config.h --- ../orig-cimple-2.0.24/src/cimple/config.h 2011-11-07 22:00:07.000000000 +0100 +++ ./src/cimple/config.h 2016-06-18 16:38:38.991096260 +0200 @@ -295,7 +295,7 @@ // //============================================================================== -#define CIMPLE_BIT(N) (1 << (N)) +#define CIMPLE_BIT(N) (unsigned int)(1 << (N)) //============================================================================== // @@ -466,7 +466,7 @@ //============================================================================== static CIMPLE_UNUSED const char __cimple_version_tag[] = \ - "@(#)CIMPLE_VERSION="CIMPLE_VERSION_STRING; + "@(#)CIMPLE_VERSION=" CIMPLE_VERSION_STRING; //============================================================================== // diff -ruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-cimple-2.0.24/src/mof/MOF_Qualifier.cpp ./src/mof/MOF_Qualifier.cpp --- ../orig-cimple-2.0.24/src/mof/MOF_Qualifier.cpp 2011-11-07 22:00:08.000000000 +0100 +++ ./src/mof/MOF_Qualifier.cpp 2016-06-18 16:47:02.342094234 +0200 @@ -136,7 +136,9 @@ qual_decl->array_index == 0 && (params == 0 || params->value_type == TOK_NULL_VALUE)) { - params->delete_list(); + if (params) { + params->delete_list(); + } params = new MOF_Literal(); params->value_type = TOK_BOOL_VALUE; params->bool_value = true;
participants (1)
-
root@hilbert.suse.de