Hello community, here is the log from the commit of package sblim-cmpi-base for openSUSE:Factory checked in at Mon Mar 9 00:28:52 CET 2009. -------- --- sblim-cmpi-base/sblim-cmpi-base.changes 2009-02-25 11:20:24.000000000 +0100 +++ /mounts/work_src_done/STABLE/sblim-cmpi-base/sblim-cmpi-base.changes 2009-03-05 19:03:46.000000000 +0100 @@ -1,0 +2,10 @@ +Tue Mar 3 16:30:35 CET 2009 - mhrusecky@suse.cz + +- update to version 1.5.9 + o Bugs + - 2508592 add CMPIStatus to indication function return + - 2634178 Versioned libcmpiOSBase_OperatingSystemProvider + * Dropped sblim-cmpi-base-1.5.8-avoid-version.patch as it was + accepted upstream + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- sblim-cmpi-base-1.5.8-avoid-version.patch sblim-cmpi-base-1.5.8.tar.bz2 New: ---- sblim-cmpi-base-1.5.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sblim-cmpi-base.spec ++++++ --- /var/tmp/diff_new_pack.Of1196/_old 2009-03-09 00:28:41.000000000 +0100 +++ /var/tmp/diff_new_pack.Of1196/_new 2009-03-09 00:28:41.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package sblim-cmpi-base (Version 1.5.8) +# spec file for package sblim-cmpi-base (Version 1.5.9) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -20,7 +20,7 @@ Name: sblim-cmpi-base BuildRequires: gcc-c++ sblim-cmpi-devel sblim-indication_helper-devel sblim-sfcb sblim-testsuite -Version: 1.5.8 +Version: 1.5.9 Release: 1 Group: System/Management License: IBM Public License @@ -29,9 +29,6 @@ Url: http://sblim.wiki.sourceforge.net/ Source0: http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2 Source1: sblim-cmpi-base-rpmlintrc -# PATCH-FIX-UPSTREAM sblim-cmpi-base-1.5.8-avoid-version.patch [upstream tracker #2634178] mhrusecky@suse.cz -- using same '-avoid-version' for all providers -# https://sourceforge.net/tracker/index.php?func=detail&aid=2634178&group_id=128809&atid=712784 -Patch0: %{name}-1.5.8-avoid-version.patch Summary: SBLIM Base Instrumentation %description @@ -76,7 +73,6 @@ %prep %setup -T -b 0 -n %{name}-%{version} -%patch0 %build autoreconf -fi @@ -157,6 +153,13 @@ %{_datadir}/sblim-testsuite/system/linux/createKeyFiles.sh %changelog +* Tue Mar 03 2009 mhrusecky@suse.cz +- update to version 1.5.9 + o Bugs + - 2508592 add CMPIStatus to indication function return + - 2634178 Versioned libcmpiOSBase_OperatingSystemProvider + * Dropped sblim-cmpi-base-1.5.8-avoid-version.patch as it was + accepted upstream * Wed Feb 25 2009 mhrusecky@suse.cz - avoiding version info in libcmpiOSBase_OperatingSystemProvider * Mon Dec 15 2008 mhrusecky@suse.cz ++++++ sblim-cmpi-base-1.5.8.tar.bz2 -> sblim-cmpi-base-1.5.9.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/ChangeLog new/sblim-cmpi-base-1.5.9/ChangeLog --- old/sblim-cmpi-base-1.5.8/ChangeLog 2008-12-03 21:31:53.000000000 +0100 +++ new/sblim-cmpi-base-1.5.9/ChangeLog 2009-02-24 23:41:26.000000000 +0100 @@ -1,3 +1,13 @@ +2009-02-24 Tyrel Datwyler <tyreld@us.ibm.com> + + * Makefile.am: + Bug 2634178: Versioned libcmpiOSBase_OperatingSystemProvider + +2009-01-14 Tyrel Datwyler <tyreld@us.ibm.com> + + * cmpiOSBase_OperatingSystem.c: + Bug 2508592: add CMPIStatus to indication function return + 2008-12-03 Tyrel Datwyler <tyreld@us.ibm.com> * OSBase_OperatingSystem.c: diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/cmpiOSBase_OperatingSystemProvider.c new/sblim-cmpi-base-1.5.9/cmpiOSBase_OperatingSystemProvider.c --- old/sblim-cmpi-base-1.5.8/cmpiOSBase_OperatingSystemProvider.c 2008-11-18 07:53:01.000000000 +0100 +++ new/sblim-cmpi-base-1.5.9/cmpiOSBase_OperatingSystemProvider.c 2009-01-15 02:31:27.000000000 +0100 @@ -694,34 +694,36 @@ CMReturn(CMPI_RC_ERR_FAILED); } -void OSBase_OperatingSystemProviderEnableIndications(CMPIIndicationMI * mi, const CMPIContext * ctx) { +CMPIStatus OSBase_OperatingSystemProviderEnableIndications(CMPIIndicationMI * mi, const CMPIContext * ctx) { _OSBASE_TRACE(1,("--- %s CMPI EnableIndications() called",_ClassName)); if(!ind_enabled) { /* start the polling mechanism */ if(ind_start() != IND_OK) { _OSBASE_TRACE(1,("--- %s CMPI EnableIndications() failed: start indication helper",_ClassName)); - return; + CMReturn(CMPI_RC_ERR_FAILED); } ind_enabled = 1; } _OSBASE_TRACE(1,("--- %s CMPI EnableIndications() exited",_ClassName)); + CMReturn(CMPI_RC_OK); } -void OSBase_OperatingSystemProviderDisableIndications(CMPIIndicationMI * mi, const CMPIContext * ctx) { +CMPIStatus OSBase_OperatingSystemProviderDisableIndications(CMPIIndicationMI * mi, const CMPIContext * ctx) { _OSBASE_TRACE(1,("--- %s CMPI DisableIndications() called",_ClassName)); if(ind_enabled) { /* stop the polling mechanism */ if(ind_stop() != IND_OK) { _OSBASE_TRACE(1,("--- %s CMPI DisableIndications() failed: stop indication helper",_ClassName)); - return; + CMReturn(CMPI_RC_ERR_FAILED); } ind_enabled = 0; } _OSBASE_TRACE(1,("--- %s CMPI DisableIndications() exited",_ClassName)); + CMReturn(CMPI_RC_OK); } #endif diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/configure new/sblim-cmpi-base-1.5.9/configure --- old/sblim-cmpi-base-1.5.8/configure 2008-12-10 23:57:15.000000000 +0100 +++ new/sblim-cmpi-base-1.5.9/configure 2009-03-02 22:00:29.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for SBLIM BaseOS Providers Base 1.5.8. +# Generated by GNU Autoconf 2.61 for SBLIM BaseOS Providers Base 1.5.9. # # Report bugs to <sblim-devel@lists.sourceforge.net>. # @@ -728,8 +728,8 @@ # Identity of this package. PACKAGE_NAME='SBLIM BaseOS Providers Base' PACKAGE_TARNAME='sblim-cmpi-base' -PACKAGE_VERSION='1.5.8' -PACKAGE_STRING='SBLIM BaseOS Providers Base 1.5.8' +PACKAGE_VERSION='1.5.9' +PACKAGE_STRING='SBLIM BaseOS Providers Base 1.5.9' PACKAGE_BUGREPORT='sblim-devel@lists.sourceforge.net' ac_unique_file="OSBase_Common.c" @@ -1407,7 +1407,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 SBLIM BaseOS Providers Base 1.5.8 to adapt to many kinds of systems. +\`configure' configures SBLIM BaseOS Providers Base 1.5.9 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1477,7 +1477,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of SBLIM BaseOS Providers Base 1.5.8:";; + short | recursive ) echo "Configuration of SBLIM BaseOS Providers Base 1.5.9:";; esac cat <<\_ACEOF @@ -1583,7 +1583,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -SBLIM BaseOS Providers Base configure 1.5.8 +SBLIM BaseOS Providers Base configure 1.5.9 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1597,7 +1597,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by SBLIM BaseOS Providers Base $as_me 1.5.8, which was +It was created by SBLIM BaseOS Providers Base $as_me 1.5.9, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -2293,7 +2293,7 @@ # Define the identity of the package. PACKAGE='sblim-cmpi-base' - VERSION='1.5.8' + VERSION='1.5.9' cat >>confdefs.h <<_ACEOF @@ -24742,7 +24742,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by SBLIM BaseOS Providers Base $as_me 1.5.8, which was +This file was extended by SBLIM BaseOS Providers Base $as_me 1.5.9, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -24795,7 +24795,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -SBLIM BaseOS Providers Base config.status 1.5.8 +SBLIM BaseOS Providers Base config.status 1.5.9 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/configure.ac new/sblim-cmpi-base-1.5.9/configure.ac --- old/sblim-cmpi-base-1.5.8/configure.ac 2008-12-10 23:54:50.000000000 +0100 +++ new/sblim-cmpi-base-1.5.9/configure.ac 2009-03-02 22:00:01.000000000 +0100 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(SBLIM BaseOS Providers Base, 1.5.8, sblim-devel@lists.sourceforge.net,sblim-cmpi-base) +AC_INIT(SBLIM BaseOS Providers Base, 1.5.9, sblim-devel@lists.sourceforge.net,sblim-cmpi-base) AC_CONFIG_SRCDIR([OSBase_Common.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/Makefile.am new/sblim-cmpi-base-1.5.9/Makefile.am --- old/sblim-cmpi-base-1.5.8/Makefile.am 2008-09-02 20:58:23.000000000 +0200 +++ new/sblim-cmpi-base-1.5.9/Makefile.am 2009-02-24 23:39:24.000000000 +0100 @@ -1,4 +1,4 @@ -# $Id: Makefile.am,v 1.15 2008/09/02 18:58:23 tyreld Exp $ +# $Id: Makefile.am,v 1.16 2009/02/24 22:39:24 tyreld Exp $ # ================================================================== # (C) Copyright IBM Corp. 2005 # @@ -70,7 +70,7 @@ libcmpiOSBase_OperatingSystemProvider_la_LIBADD = -lcmpiOSBase_Common \ -ldmiinfo @LINDHELP@ # This gcc/ld specific flag is ugly - need to check in configure -libcmpiOSBase_OperatingSystemProvider_la_LDFLAGS = -Wc,-avoid-version +libcmpiOSBase_OperatingSystemProvider_la_LDFLAGS = -avoid-version # Operating System Statistical Data libcmpiOSBase_OperatingSystemStatisticalDataProvider_la_SOURCES = \ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/Makefile.in new/sblim-cmpi-base-1.5.9/Makefile.in --- old/sblim-cmpi-base-1.5.8/Makefile.in 2008-12-10 23:57:13.000000000 +0100 +++ new/sblim-cmpi-base-1.5.9/Makefile.in 2009-03-02 22:00:27.000000000 +0100 @@ -14,7 +14,7 @@ @SET_MAKE@ -# $Id: Makefile.am,v 1.15 2008/09/02 18:58:23 tyreld Exp $ +# $Id: Makefile.am,v 1.16 2009/02/24 22:39:24 tyreld Exp $ # ================================================================== # (C) Copyright IBM Corp. 2005 # @@ -453,7 +453,7 @@ -ldmiinfo @LINDHELP@ # This gcc/ld specific flag is ugly - need to check in configure -libcmpiOSBase_OperatingSystemProvider_la_LDFLAGS = -Wc,-avoid-version +libcmpiOSBase_OperatingSystemProvider_la_LDFLAGS = -avoid-version # Operating System Statistical Data libcmpiOSBase_OperatingSystemStatisticalDataProvider_la_SOURCES = \ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/NEWS new/sblim-cmpi-base-1.5.9/NEWS --- old/sblim-cmpi-base-1.5.8/NEWS 2008-12-10 23:54:50.000000000 +0100 +++ new/sblim-cmpi-base-1.5.9/NEWS 2009-03-02 22:00:20.000000000 +0100 @@ -1,3 +1,10 @@ +Changes in Version 1.5.9 +======================== + +Bugs Fixed: +- 2508592 add CMPIStatus to indication function return +- 2634178 Versioned libcmpiOSBase_OperatingSystemProvider + Changes in Version 1.5.8 ======================== diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sblim-cmpi-base-1.5.8/sblim-cmpi-base.spec new/sblim-cmpi-base-1.5.9/sblim-cmpi-base.spec --- old/sblim-cmpi-base-1.5.8/sblim-cmpi-base.spec 2008-12-10 23:57:32.000000000 +0100 +++ new/sblim-cmpi-base-1.5.9/sblim-cmpi-base.spec 2009-03-02 22:00:54.000000000 +0100 @@ -8,7 +8,7 @@ Summary: SBLIM Base Providers Name: sblim-cmpi-base -Version: 1.5.8 +Version: 1.5.9 Release: 1 Group: Systems Management/Base URL: http://www.sblim.org ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org