commit sblim-cmpi-devel for openSUSE:Factory

2013-04-15 Thread h_root
Hello community,

here is the log from the commit of package sblim-cmpi-devel for 
openSUSE:Factory checked in at 2013-04-16 06:56:53

Comparing /work/SRC/openSUSE:Factory/sblim-cmpi-devel (Old)
 and  /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new (New)


Package is sblim-cmpi-devel, Maintainer is bwhite...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cmpi-devel/sblim-cmpi-devel.changes
2012-08-04 13:28:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new/sblim-cmpi-devel.changes   
2013-04-16 06:56:57.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr  1 18:08:21 UTC 2013 - kkae...@suse.com
+
+- fix includes to compile with older gcc versions
+
+---

New:

  old-gcc.patch



Other differences:
--
++ sblim-cmpi-devel.spec ++
--- /var/tmp/diff_new_pack.CO2bBL/_old  2013-04-16 06:57:00.0 +0200
+++ /var/tmp/diff_new_pack.CO2bBL/_new  2013-04-16 06:57:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sblim-cmpi-devel
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -32,6 +32,7 @@
 %else
 Patch:  opensuse-docdir.patch
 %endif
+Patch1: old-gcc.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:SBLIM CMPI Provider Development Support
 License:EPL-1.0
@@ -84,6 +85,7 @@
 # adapt docdir
 %patch
 %endif
+%patch1 -p1
 
 cp %{_sourcedir}/Doxyfile %{_builddir}/%{name}-%{version}/
 mkdir %{_builddir}/%{name}-%{version}/autodocs

++ old-gcc.patch ++
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile 
../orig-sblim-cmpi-devel-2.0.3/cmpi/cmpidt.h ./cmpi/cmpidt.h
--- ../orig-sblim-cmpi-devel-2.0.3/cmpi/cmpidt.h2009-03-16 
19:26:17.0 +0100
+++ ./cmpi/cmpidt.h 2013-04-01 19:54:35.060907494 +0200
@@ -646,7 +646,7 @@
/** High severity */
 ErrorSevHigh = 4,
/** Fatal error */
-ErrorSevFatal = 5,
+ErrorSevFatal = 5
 } CMPIErrorSeverity;
 
 /** Possible values an Error object can use to indicate the probable cause */
@@ -912,7 +912,7 @@
/** Procedural_Error */
Procedural_Error = 129,
/** Unexpected_Information */
-   Unexpected_Information = 130,
+   Unexpected_Information = 130
 } CMPIErrorProbableCause;
 
 /** Possible values an Error object can have for the error src format */
@@ -922,13 +922,13 @@
/** Other source */
 CMPIErrSrcOther = 1,
/* Object handle */
-CIMObjectHandle = 2,
+CIMObjectHandle = 2
 } CMPIErrorSrcFormat;
 
 #endif /* CMPI_VER_200 */
 
 #   ifdef __cplusplus
-};
+}
 #   endif
 
 #endif // _CMPIDT_H_
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile 
../orig-sblim-cmpi-devel-2.0.3/cmpi/cmpift.h ./cmpi/cmpift.h
--- ../orig-sblim-cmpi-devel-2.0.3/cmpi/cmpift.h2009-02-28 
04:18:20.0 +0100
+++ ./cmpi/cmpift.h 2013-04-01 19:54:51.637573708 +0200
@@ -3349,7 +3349,7 @@
 
 
 #   ifdef __cplusplus
-};
+}
 #   endif
 
 #endif // _CMPIFT_H_
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sblim-cmpi-devel for openSUSE:Factory

2012-08-04 Thread h_root
Hello community,

here is the log from the commit of package sblim-cmpi-devel for 
openSUSE:Factory checked in at 2012-08-04 13:28:20

Comparing /work/SRC/openSUSE:Factory/sblim-cmpi-devel (Old)
 and  /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new (New)


Package is sblim-cmpi-devel, Maintainer is bwhite...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cmpi-devel/sblim-cmpi-devel.changes
2012-03-09 21:28:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new/sblim-cmpi-devel.changes   
2012-08-04 13:28:22.0 +0200
@@ -1,0 +2,15 @@
+Wed Aug  1 09:55:11 UTC 2012 - kkae...@suse.com
+
+- Update to 2.0.3
+  Bugs Fixed:
+  - 3531598 several CmpiObjectPath methods leak memory
+  - 3531599 replace CMGetCharPtr with CMGetCharsPtr
+  - 3531597 returnData with char type fails
+  - 3531596 CmpiData uses wrong union for unsigned data
+
+  New Features:
+  - 3531601 add CmpiString constructor for char data
+  - 3531603 no way to determine internal type of CmpiData
+(add getType function)
+
+---

Old:

  CMPIString-const-char-constructor.patch
  sblim-cmpi-devel-2.0.2.tar.bz2

New:

  sblim-cmpi-devel-2.0.3.tar.bz2



Other differences:
--
++ sblim-cmpi-devel.spec ++
--- /var/tmp/diff_new_pack.5kOMrj/_old  2012-08-04 13:28:27.0 +0200
+++ /var/tmp/diff_new_pack.5kOMrj/_new  2012-08-04 13:28:27.0 +0200
@@ -16,9 +16,8 @@
 #
 
 
-
 Name:   sblim-cmpi-devel
-Version:2.0.2
+Version:2.0.3
 Release:0
 Url:http://sblim.sf.net/
 BuildRequires:  doxygen
@@ -33,7 +32,6 @@
 %else
 Patch:  opensuse-docdir.patch
 %endif
-Patch1: CMPIString-const-char-constructor.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:SBLIM CMPI Provider Development Support
 License:EPL-1.0
@@ -49,7 +47,9 @@
 
 %package -n sblim-cmpi-c++-devel
 Summary:SBLIM CMPI Provider Development Support
-Requires:   libcmpiCppImpl0 %{name}
+Group:  Development/Libraries/C and C++
+Requires:   %{name}
+Requires:   libcmpiCppImpl0
 Conflicts:  tog-pegasus
 
 %description -n sblim-cmpi-c++-devel
@@ -62,6 +62,7 @@
 
 %package -n libcmpiCppImpl0
 Summary:SBLIM CMPI Provider Development Support
+Group:  Development/Libraries/C and C++
 Conflicts:  tog-pegasus
 
 %description -n libcmpiCppImpl0
@@ -83,14 +84,11 @@
 # adapt docdir
 %patch
 %endif
-%patch1
+
 cp %{_sourcedir}/Doxyfile %{_builddir}/%{name}-%{version}/
 mkdir %{_builddir}/%{name}-%{version}/autodocs
 
 %build
-%if 0%{?suse_version}
-%{suse_update_config -f}
-%endif
 autoreconf --verbose --force --install
 %configure
 make %{?_smp_mflags}

++ sblim-cmpi-devel-2.0.2.tar.bz2 - sblim-cmpi-devel-2.0.3.tar.bz2 ++
 61817 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/sblim-cmpi-devel-2.0.2/ChangeLog new/sblim-cmpi-devel-2.0.3/ChangeLog
--- old/sblim-cmpi-devel-2.0.2/ChangeLog2011-07-13 23:37:36.0 
+0200
+++ new/sblim-cmpi-devel-2.0.3/ChangeLog2012-07-31 06:03:31.0 
+0200
@@ -1,3 +1,45 @@
+2012-06-09  Tyrel Datwyler tyr...@us.ibm.com
+
+   * CmpiImpl.cpp, NEWS, cmpi/CmpiData.h:
+
+   Fixed 3531603: no way to determine internal type of CmpiData
+
+2012-06-05  Tyrel Datwyler tyr...@us.ibm.com
+
+   * CmpiImpl.cpp, NEWS:
+
+   Fixed 3531596: CmpiData uses wrong union for unsigned data
+
+2012-06-05  Tyrel Datwyler tyr...@us.ibm.com
+
+   * CmpiImpl.cpp, NEWS:
+
+   Fixed 3531597: returnData with char type fails
+
+2012-06-02  Tyrel Datwyler tyr...@us.ibm.com
+
+   * CmpiImpl.cpp, NEWS:
+
+   Fixed 3531599: replace CMGetCharPtr with CMGetCharsPtr
+
+2012-06-02  Tyrel Datwyler tyr...@us.ibm.com
+
+   * CmpiImpl.cpp, NEWS:
+
+   Fixed 3531598: several CmpiObjectPath methods leak memory
+
+2012-06-02  Tyrel Datwyler tyr...@us.ibm.com
+
+   * CmpiImpl.cpp, NEWS, cmpi/CmpiString.h:
+
+   Fixed 3531601: add CmpiString constructor for char data
+
+2011-07-13  Tyrel Datwyler tyr...@us.ibm.com
+
+   * ChangeLog, NEWS, configure.ac:
+
+   Updated release version to 2.0.2
+
 2011-05-17  Tyrel Datwyler tyr...@us.ibm.com
 
* NEWS, cmpi/cmpios.h:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 

commit sblim-cmpi-devel for openSUSE:Factory

2012-03-09 Thread h_root
Hello community,

here is the log from the commit of package sblim-cmpi-devel for 
openSUSE:Factory checked in at 2012-03-09 21:27:59

Comparing /work/SRC/openSUSE:Factory/sblim-cmpi-devel (Old)
 and  /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new (New)


Package is sblim-cmpi-devel, Maintainer is bwhite...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cmpi-devel/sblim-cmpi-devel.changes
2012-03-05 14:03:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new/sblim-cmpi-devel.changes   
2012-03-09 21:28:02.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 28 17:34:35 UTC 2012 - kkae...@suse.com
+
+- Conflict only with pre-2.11 versions of tog-pegasus
+
+---



Other differences:
--
++ sblim-cmpi-devel.spec ++
--- /var/tmp/diff_new_pack.tzwaeP/_old  2012-03-09 21:28:03.0 +0100
+++ /var/tmp/diff_new_pack.tzwaeP/_new  2012-03-09 21:28:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sblim-cmpi-devel
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   sblim-cmpi-devel
 Version:2.0.2
 Release:0
@@ -23,7 +25,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
 Provides:   cmpi-devel
-Conflicts:  tog-pegasus
+Conflicts:  tog-pegasus  2.11
 Source0:
http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2
 Source1:Doxyfile
 %if 0%{?mandriva_version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sblim-cmpi-devel for openSUSE:Factory

2012-03-05 Thread h_root
Hello community,

here is the log from the commit of package sblim-cmpi-devel for 
openSUSE:Factory checked in at 2012-03-05 14:03:07

Comparing /work/SRC/openSUSE:Factory/sblim-cmpi-devel (Old)
 and  /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new (New)


Package is sblim-cmpi-devel, Maintainer is bwhite...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cmpi-devel/sblim-cmpi-devel.changes
2011-11-28 12:57:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new/sblim-cmpi-devel.changes   
2012-03-05 14:03:08.0 +0100
@@ -1,0 +2,5 @@
+Wed Dec 14 12:36:59 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---



Other differences:
--
++ sblim-cmpi-devel.spec ++
--- /var/tmp/diff_new_pack.S9gJ0I/_old  2012-03-05 14:03:09.0 +0100
+++ /var/tmp/diff_new_pack.S9gJ0I/_new  2012-03-05 14:03:09.0 +0100
@@ -15,15 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   sblim-cmpi-devel
 Version:2.0.2
-Release:1
-Group:  Development/Libraries/C and C++
+Release:0
 Url:http://sblim.sf.net/
-License:Other uncritical OpenSource License ; EPL 1.0 ... ; EPL 1.0
-BuildRequires:  doxygen gcc-c++ libtool
+BuildRequires:  doxygen
+BuildRequires:  gcc-c++
+BuildRequires:  libtool
 Provides:   cmpi-devel
 Conflicts:  tog-pegasus
 Source0:
http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2
@@ -36,6 +34,8 @@
 Patch1: CMPIString-const-char-constructor.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Summary:SBLIM CMPI Provider Development Support
+License:EPL-1.0
+Group:  Development/Libraries/C and C++
 
 %description
 This packages provides the C and C++ CMPI header files needed by
@@ -46,9 +46,7 @@
 
 
 %package -n sblim-cmpi-c++-devel
-License:Eclipse Public License 1.0 ... ; Eclipse Public License 1.0
 Summary:SBLIM CMPI Provider Development Support
-Group:  Development/Libraries/C and C++
 Requires:   libcmpiCppImpl0 %{name}
 Conflicts:  tog-pegasus
 
@@ -61,9 +59,7 @@
 
 
 %package -n libcmpiCppImpl0
-License:Other uncritical OpenSource License ; EPL 1.0 ... ; EPL 1.0
 Summary:SBLIM CMPI Provider Development Support
-Group:  Development/Libraries/C and C++
 Conflicts:  tog-pegasus
 
 %description -n libcmpiCppImpl0

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sblim-cmpi-devel for openSUSE:Factory

2011-11-28 Thread h_root
Hello community,

here is the log from the commit of package sblim-cmpi-devel for 
openSUSE:Factory checked in at 2011-11-28 12:56:56

Comparing /work/SRC/openSUSE:Factory/sblim-cmpi-devel (Old)
 and  /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new (New)


Package is sblim-cmpi-devel, Maintainer is bwhite...@novell.com

Changes:

--- /work/SRC/openSUSE:Factory/sblim-cmpi-devel/sblim-cmpi-devel.changes
2011-09-23 12:45:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.sblim-cmpi-devel.new/sblim-cmpi-devel.changes   
2011-11-28 12:57:08.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 27 07:02:41 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ sblim-cmpi-devel.spec ++
--- /var/tmp/diff_new_pack.rDIhdJ/_old  2011-11-28 12:57:10.0 +0100
+++ /var/tmp/diff_new_pack.rDIhdJ/_new  2011-11-28 12:57:10.0 +0100
@@ -16,8 +16,6 @@
 #
 
 
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Summary:SBLIM CMPI Provider Development Support
 
 Name:   sblim-cmpi-devel
 Version:2.0.2
@@ -25,7 +23,7 @@
 Group:  Development/Libraries/C and C++
 Url:http://sblim.sf.net/
 License:Other uncritical OpenSource License ; EPL 1.0 ... ; EPL 1.0
-BuildRequires:  doxygen gcc-c++
+BuildRequires:  doxygen gcc-c++ libtool
 Provides:   cmpi-devel
 Conflicts:  tog-pegasus
 Source0:
http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2
@@ -36,6 +34,8 @@
 Patch:  opensuse-docdir.patch
 %endif
 Patch1: CMPIString-const-char-constructor.patch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Summary:SBLIM CMPI Provider Development Support
 
 %description
 This packages provides the C and C++ CMPI header files needed by

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit sblim-cmpi-devel for openSUSE:Factory

2011-09-15 Thread h_root

Hello community,

here is the log from the commit of package sblim-cmpi-devel for openSUSE:Factory
checked in at Thu Sep 15 14:13:45 CEST 2011.




--- sblim-cmpi-devel/sblim-cmpi-devel.changes   2010-01-13 12:32:41.0 
+0100
+++ /mounts/work_src_done/STABLE/sblim-cmpi-devel/sblim-cmpi-devel.changes  
2011-07-14 09:45:22.0 +0200
@@ -1,0 +2,9 @@
+Thu Jul 14 06:58:48 UTC 2011 - kkae...@novell.com
+
+- update to 2.0.2
+  Bugfix release:
+  * 2688794 Fixed typo in cmpi/cmpidt.h
+  * 2817255 CmpiData constructor for CmpiString argument produce garbage
+  * 3005546 cmpi thread key typed defined wrong on s390x
+
+---

calling whatdependson for head-i586


Old:

  sblim-cmpi-devel-1.0.4-fix-string.dif
  sblim-cmpi-devel-2.0.1-typo.patch
  sblim-cmpi-devel-2.0.1.tar.bz2
  sblim-cmpi-devel.diff
  sblim-cmpi-devel.diff-mandriva

New:

  CMPIString-const-char-constructor.patch
  mandriva-docdir.patch
  opensuse-docdir.patch
  sblim-cmpi-devel-2.0.2.tar.bz2



Other differences:
--
++ sblim-cmpi-devel.spec ++
--- /var/tmp/diff_new_pack.riEnE1/_old  2011-09-15 14:13:41.0 +0200
+++ /var/tmp/diff_new_pack.riEnE1/_new  2011-09-15 14:13:41.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package sblim-cmpi-devel (Version 2.0.1)
+# spec file for package sblim-cmpi-devel
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,8 +20,8 @@
 Summary:SBLIM CMPI Provider Development Support
 
 Name:   sblim-cmpi-devel
-Version:2.0.1
-Release:6
+Version:2.0.2
+Release:1
 Group:  Development/Libraries/C and C++
 Url:http://sblim.sf.net/
 License:Other uncritical OpenSource License ; EPL 1.0 ... ; EPL 1.0
@@ -31,14 +31,11 @@
 Source0:
http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2
 Source1:Doxyfile
 %if 0%{?mandriva_version}
-Patch:  %{name}.diff-mandriva
+Patch:  mandriva-docdir.patch
 %else
-Patch:  %{name}.diff
+Patch:  opensuse-docdir.patch
 %endif
-Patch1: %{name}-1.0.4-fix-string.dif
-# PATCH-FIX-UPSTREAM sblim-cmpi-devel-2.0.1-typo.patch [upstream tracker 
2688794 ] mhruse...@suse.cz -- Fixed typo in cmpi/cmpidt.h
-# 
https://sourceforge.net/tracker/index.php?func=detailaid=2688794group_id=128809atid=712784
-Patch2: %{name}-2.0.1-typo.patch
+Patch1: CMPIString-const-char-constructor.patch
 
 %description
 This packages provides the C and C++ CMPI header files needed by
@@ -89,7 +86,6 @@
 %patch
 %endif
 %patch1
-%patch2
 cp %{_sourcedir}/Doxyfile %{_builddir}/%{name}-%{version}/
 mkdir %{_builddir}/%{name}-%{version}/autodocs
 

++ CMPIString-const-char-constructor.patch ++
diff -wruN -x '*~' ../orig-sblim-cmpi-devel-2.0.2/cmpi/CmpiString.h 
./cmpi/CmpiString.h
--- ../orig-sblim-cmpi-devel-2.0.2/cmpi/CmpiString.h2008-07-09 
21:36:59.0 +0200
+++ ./cmpi/CmpiString.h 2011-07-14 08:54:01.0 +0200
@@ -71,6 +71,10 @@
*/
CmpiString();
 
+   /** Constructor - from const char*
+*/
+   CmpiString(const char *s);
+
/** Constructor - Copy constructor
*/
CmpiString(const CmpiString s);
diff -wruN -x '*~' ../orig-sblim-cmpi-devel-2.0.2/CmpiImpl.cpp ./CmpiImpl.cpp
--- ../orig-sblim-cmpi-devel-2.0.2/CmpiImpl.cpp 2009-08-19 03:21:57.0 
+0200
+++ ./CmpiImpl.cpp  2011-07-14 08:54:01.0 +0200
@@ -1569,6 +1569,9 @@
 CmpiString::CmpiString() {
enc=NULL;
 }
+CmpiString::CmpiString(const char *s) {
+  enc=CMNewString(CmpiProviderBase::getBroker(),s, NULL);
+}
 const char* CmpiString::charPtr() const {
if (getEnc())
   return (const char*)getEnc()-hdl;
++ mandriva-docdir.patch ++
Index: Makefile.am
===
RCS file: /cvsroot/sblim/cmpi-devel/Makefile.am,v
retrieving revision 1.7
diff -u -w -r1.7 Makefile.am
--- Makefile.am 28 Feb 2009 04:23:31 -  1.7
+++ Makefile.am 6 Mar 2009 11:05:28 -
@@ -5,7 +5,7 @@
 AM_CPPFLAGS=-I$(srcdir)/cmpi \
 @SBLIM_CMPI_PLATFORM@
 
-docdir=$(datadir)/doc/$(PACKAGE)-$(VERSION)
+docdir=$(datadir)/doc/$(PACKAGE)
 
 if INSTALL_LIBRARY
 lib_LTLIBRARIES=libcmpiCppImpl.la
++ opensuse-docdir.patch ++
Index: Makefile.am
===
RCS file: /cvsroot/sblim/cmpi-devel/Makefile.am,v
retrieving revision 1.7
diff -u -w -r1.7 Makefile.am
--- Makefile.am 28 Feb 2009 04:23:31 -  1.7
+++ Makefile.am 6 Mar 2009 11:05:28 -
@@ -5,7 +5,7 @@
 AM_CPPFLAGS=-I$(srcdir)/cmpi \