packages: openwbem/openwbem-am.patch (NEW), openwbem/openwbem-g++.patch (NE...

qboosh qboosh at pld-linux.org
Tue Jul 3 21:08:45 CEST 2012


Author: qboosh                       Date: Tue Jul  3 19:08:45 2012 GMT
Module: packages                      Tag: HEAD
---- Log message:
- new

---- Files affected:
packages/openwbem:
   openwbem-am.patch (NONE -> 1.1)  (NEW), openwbem-g++.patch (NONE -> 1.1)  (NEW), openwbem-include.patch (NONE -> 1.1)  (NEW), openwbem.spec (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/openwbem/openwbem-am.patch
diff -u /dev/null packages/openwbem/openwbem-am.patch:1.1
--- /dev/null	Tue Jul  3 21:08:45 2012
+++ packages/openwbem/openwbem-am.patch	Tue Jul  3 21:08:40 2012
@@ -0,0 +1,11 @@
+--- openwbem-3.2.2/openwbem.m4.orig	2004-10-21 16:49:24.000000000 +0200
++++ openwbem-3.2.2/openwbem.m4	2012-07-03 18:52:05.350079852 +0200
+@@ -35,7 +35,7 @@
+ dnl   Usage:   CHECK_OPENWBEM([REQUIRED-VERSION
+ dnl                      [,ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]])
+ dnl
+-AC_DEFUN(CHECK_OPENWBEM,
++AC_DEFUN([CHECK_OPENWBEM],
+ [
+ OPENWBEM_CLIENT_LIBS="-lopenwbem -lowclient -lowxml -lowhttpcommon -lowhttpclient"
+ OPENWBEM_PROVIDER_LIBS="-lopenwbem -lowprovider -lowcppprovifc"

================================================================
Index: packages/openwbem/openwbem-g++.patch
diff -u /dev/null packages/openwbem/openwbem-g++.patch:1.1
--- /dev/null	Tue Jul  3 21:08:45 2012
+++ packages/openwbem/openwbem-g++.patch	Tue Jul  3 21:08:40 2012
@@ -0,0 +1,44 @@
+--- openwbem-3.2.2/src/common/OW_HashMap.hpp.orig	2005-02-12 00:00:40.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_HashMap.hpp	2012-07-01 18:49:57.934003594 +0200
+@@ -35,14 +35,14 @@
+ #ifndef OW_HASH_MAP_HPP_INCLUDE_GUARD_
+ #define OW_HASH_MAP_HPP_INCLUDE_GUARD_
+ #include "OW_config.h"
+-#ifdef OW_HAVE_HASH_MAP
+-	#include <hash_map> // hash_map is better for the cache than OW_SortedVectorMap
+-	#define OW_HASH_MAP_NS std
+-	#define HashMap std::hash_map
+-#elif OW_HAVE_EXT_HASH_MAP
++#ifdef OW_HAVE_EXT_HASH_MAP
+ 	#include <ext/hash_map> // hash_map is better for the cache than OW_SortedVectorMap
+ 	#define OW_HASH_MAP_NS __gnu_cxx
+ 	#define HashMap __gnu_cxx::hash_map
++#elif defined(OW_HAVE_HASH_MAP)
++	#include <hash_map> // hash_map is better for the cache than OW_SortedVectorMap
++	#define OW_HASH_MAP_NS std
++	#define HashMap std::hash_map
+ #else
+ 	#include "OW_SortedVectorMap.hpp"
+ 	#define OW_HASH_MAP_NS OW_NAMESPACE
+--- openwbem-3.2.2/src/common/OW_HashMultiMap.hpp.orig	2005-02-03 05:34:18.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_HashMultiMap.hpp	2012-07-01 21:21:58.713620831 +0200
+@@ -35,14 +35,14 @@
+ #ifndef OW_HASH_MULTI_MAP_HPP_INCLUDE_GUARD_
+ #define OW_HASH_MULTI_MAP_HPP_INCLUDE_GUARD_
+ #include "OW_config.h"
+-#ifdef OW_HAVE_HASH_MAP
+-	#include <hash_map>
+-	#define OW_HASH_MAP_NS std
+-	#define HashMultiMap std::hash_multimap
+-#elif OW_HAVE_EXT_HASH_MAP
++#ifdef OW_HAVE_EXT_HASH_MAP
+ 	#include <ext/hash_map>
+ 	#define OW_HASH_MAP_NS __gnu_cxx
+ 	#define HashMultiMap __gnu_cxx::hash_multimap
++#elif defined(OW_HAVE_HASH_MAP)
++	#include <hash_map>
++	#define OW_HASH_MAP_NS std
++	#define HashMultiMap std::hash_multimap
+ #else
+ 	// TODO: Write a real hash multi map
+ 	#include <map>

================================================================
Index: packages/openwbem/openwbem-include.patch
diff -u /dev/null packages/openwbem/openwbem-include.patch:1.1
--- /dev/null	Tue Jul  3 21:08:45 2012
+++ packages/openwbem/openwbem-include.patch	Tue Jul  3 21:08:40 2012
@@ -0,0 +1,200 @@
+--- openwbem-3.2.2/src/common/OW_StringStream.hpp.orig	2005-02-03 01:52:45.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_StringStream.hpp	2012-07-01 15:15:55.774542527 +0200
+@@ -38,6 +38,7 @@
+ #include "OW_config.h"
+ #include "OW_StringBuffer.hpp"
+ #include "OW_BaseStreamBuffer.hpp"
++#include <cstdio>
+ #if defined(OW_HAVE_OSTREAM) && defined(OW_HAVE_ISTREAM)
+ #include <istream>
+ #include <ostream>
+--- openwbem-3.2.2/src/cim/OW_CIMDateTime.cpp.orig	2005-02-03 01:52:41.000000000 +0100
++++ openwbem-3.2.2/src/cim/OW_CIMDateTime.cpp	2012-07-01 15:24:25.371187807 +0200
+@@ -44,6 +44,8 @@
+ #include "OW_Assertion.hpp"
+ 
+ #include <cstdio>
++#include <cstdlib>
++#include <cstring>
+ #if defined(OW_HAVE_ISTREAM) && defined(OW_HAVE_OSTREAM)
+ #include <istream>
+ #include <ostream>
+--- openwbem-3.2.2/src/common/OW_Enumeration.hpp.orig	2005-02-03 01:52:44.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_Enumeration.hpp	2012-07-01 15:30:34.754505639 +0200
+@@ -38,6 +38,7 @@
+ #include "OW_TempFileEnumerationImplBase.hpp"
+ #include "OW_IntrusiveReference.hpp"
+ 
++#include <cstddef>
+ #include <iterator> // for the iterator tags
+ 
+ namespace OW_NAMESPACE
+--- openwbem-3.2.2/src/common/OW_BaseStreamBuffer.cpp.orig	2005-02-03 01:52:44.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_BaseStreamBuffer.cpp	2012-07-01 15:48:10.157794680 +0200
+@@ -40,6 +40,7 @@
+ #include "OW_Assertion.hpp"
+ #include <iostream> // for cerr
+ #include <cstring> // for memcpy
++#include <cstdio>
+ 
+ namespace OW_NAMESPACE
+ {
+--- openwbem-3.2.2/src/common/OW_DataStreams.hpp.orig	2005-02-03 01:52:44.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_DataStreams.hpp	2012-07-01 16:38:33.967667784 +0200
+@@ -37,6 +37,7 @@
+ #define OW_DATA_STREAMS_HPP_INCLUDE_GUARD_
+ #include "OW_config.h"
+ #include "OW_Types.hpp"
++#include <cstdio>
+ #if defined(OW_HAVE_ISTREAM) && defined(OW_HAVE_OSTREAM)
+ #include <istream>
+ #include <ostream>
+--- openwbem-3.2.2/src/common/OW_LogMessagePatternFormatter.cpp.orig	2005-02-03 01:52:45.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_LogMessagePatternFormatter.cpp	2012-07-01 16:42:05.170992255 +0200
+@@ -45,6 +45,7 @@
+ 
+ #include <vector>
+ #include <cstdlib> // for strtol
++#include <climits>
+ 
+ extern "C"
+ {
+--- openwbem-3.2.2/src/common/OW_PosixFile.cpp.orig	2005-02-03 01:52:45.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_PosixFile.cpp	2012-07-01 16:49:22.554307235 +0200
+@@ -47,7 +47,7 @@
+ 		#include <unistd.h>
+ 	#endif
+ #endif
+-
++#include <cstring>
+ 
+ namespace OW_NAMESPACE
+ {
+--- openwbem-3.2.2/src/common/OW_StackTrace.cpp.orig	2005-02-03 01:52:45.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_StackTrace.cpp	2012-07-01 16:54:39.644293921 +0200
+@@ -52,6 +52,7 @@
+ #include "OW_UnnamedPipe.hpp"
+ #include "OW_Format.hpp"
+ #include "OW_Array.hpp"
++#include <cstdlib>
+ #include <fstream>
+ #include <iostream>	// for cerr
+ 
+--- openwbem-3.2.2/src/common/OW_TempFileStream.cpp.orig	2005-02-03 01:52:45.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_TempFileStream.cpp	2012-07-01 17:04:33.717602328 +0200
+@@ -42,6 +42,7 @@
+ #include "OW_TempFileStream.hpp"
+ #include "OW_TmpFile.hpp"
+ #include "OW_Assertion.hpp"
++#include <cstdio>
+ #include <cstring>
+ 
+ namespace OW_NAMESPACE
+--- openwbem-3.2.2/src/common/OW_IstreamBufIterator.hpp.orig	2005-02-03 01:52:44.000000000 +0100
++++ openwbem-3.2.2/src/common/OW_IstreamBufIterator.hpp	2012-07-01 17:16:34.107572097 +0200
+@@ -40,6 +40,7 @@
+ #else
+ #include <iostream>
+ #endif
++#include <cstdio>
+ 
+ 
+ namespace OW_NAMESPACE
+--- openwbem-3.2.2/src/repositories/hdb/OW_AssocDb.hpp.orig	2005-04-20 22:09:38.000000000 +0200
++++ openwbem-3.2.2/src/repositories/hdb/OW_AssocDb.hpp	2012-07-01 18:57:42.740650753 +0200
+@@ -49,6 +49,7 @@
+ #include "OW_ResultHandlerIFC.hpp"
+ #include "OW_IntrusiveReference.hpp"
+ #include "OW_IntrusiveCountableBase.hpp"
++#include <cstring>
+ 
+ namespace OW_NAMESPACE
+ {
+--- openwbem-3.2.2/src/providerifcs/npi/common/NPIExternal.cpp.orig	2005-02-03 01:52:52.000000000 +0100
++++ openwbem-3.2.2/src/providerifcs/npi/common/NPIExternal.cpp	2012-07-01 19:21:00.377258767 +0200
+@@ -1,4 +1,5 @@
+ #include <cstdio>
++#include <cstdlib>
+ #include "OW_config.h"
+ #include "NPIExternal.hpp"
+ #include "OW_CIMParamValue.hpp"
+--- openwbem-3.2.2/src/providerifcs/npi/OW_FTABLERef.hpp.orig	2005-02-03 01:52:52.000000000 +0100
++++ openwbem-3.2.2/src/providerifcs/npi/OW_FTABLERef.hpp	2012-07-01 19:19:44.870595269 +0200
+@@ -46,6 +46,7 @@
+ #include "OW_SharedLibraryReference.hpp"
+ #include "OW_Reference.hpp"
+ #include "npi.h"
++#include <cstring>
+ 
+ namespace OW_NAMESPACE
+ {
+--- openwbem-3.2.2/src/providerifcs/npi/OW_NPIProviderIFCUtils.hpp.orig	2005-02-03 01:52:52.000000000 +0100
++++ openwbem-3.2.2/src/providerifcs/npi/OW_NPIProviderIFCUtils.hpp	2012-07-01 19:20:35.360593151 +0200
+@@ -34,6 +34,7 @@
+ #include "OW_CIMParamValue.hpp"
+ #include "OW_CIMObjectPath.hpp"
+ #include "NPIExternal.hpp"
++#include <cstdlib>
+ 
+ namespace OW_NAMESPACE
+ {
+--- openwbem-3.2.2/src/providerifcs/cmpi/common/cmpiBroker.cpp.orig	2006-09-13 16:41:59.000000000 +0200
++++ openwbem-3.2.2/src/providerifcs/cmpi/common/cmpiBroker.cpp	2012-07-01 19:35:28.040555688 +0200
+@@ -19,6 +19,7 @@
+  *
+  */
+ 
++#include <cstring>
+ #include <iostream>
+ #include "cmpisrv.h"
+ #include "OW_Format.hpp"
+--- openwbem-3.2.2/src/providerifcs/cmpi/common/cmpiBrokerEnc.cpp.orig	2006-09-12 22:04:17.000000000 +0200
++++ openwbem-3.2.2/src/providerifcs/cmpi/common/cmpiBrokerEnc.cpp	2012-07-01 19:46:38.943860867 +0200
+@@ -19,6 +19,7 @@
+  *
+  */
+ 
++#include <cstring>
+ #include "cmpisrv.h"
+ #include "OW_CIMException.hpp"
+ #include "OW_CIMProperty.hpp"
+--- openwbem-3.2.2/src/providerifcs/cmpi/common/cmpiInstance.cpp.orig	2006-09-11 18:38:07.000000000 +0200
++++ openwbem-3.2.2/src/providerifcs/cmpi/common/cmpiInstance.cpp	2012-07-01 20:21:42.980439237 +0200
+@@ -23,6 +23,7 @@
+ #include "OW_CIMInstance.hpp"
+ 
+ // TEST
++#include <cstring>
+ #include <iostream>
+ using std::cout;
+ using std::endl;
+--- openwbem-3.2.2/src/cimom/server/OW_Platform.cpp.orig	2005-05-12 18:12:37.000000000 +0200
++++ openwbem-3.2.2/src/cimom/server/OW_Platform.cpp	2012-07-01 20:36:48.300401242 +0200
+@@ -88,6 +88,7 @@
+ }
+ #include <cstring>
+ #include <cstdio>
++#include <cstdlib>
+ #include <iostream>
+ 
+ using namespace std;
+--- openwbem-3.2.2/src/cimom/server/OW_PlatformSignal.cpp.orig	2005-03-22 03:20:00.000000000 +0100
++++ openwbem-3.2.2/src/cimom/server/OW_PlatformSignal.cpp	2012-07-01 20:55:59.333686270 +0200
+@@ -35,6 +35,7 @@
+ #include "OW_Platform.hpp"
+ #include "OW_PlatformSignal.hpp"
+ #include "OW_UserUtils.hpp"
++#include <cstring>
+ #include <ostream>
+ 
+ namespace OW_NAMESPACE
+--- openwbem-3.2.2/src/mof/OW_MOFCompiler.cpp.orig	2005-02-11 22:18:31.000000000 +0100
++++ openwbem-3.2.2/src/mof/OW_MOFCompiler.cpp	2012-07-01 21:50:36.936882056 +0200
+@@ -51,6 +51,7 @@
+ 
+ #include <assert.h>
+ #include <cctype>
++#include <climits>
+ 
+ // forward declarations of some lex/yacc functions we need to call.
+ void owmof_delete_buffer(YY_BUFFER_STATE b);

================================================================
Index: packages/openwbem/openwbem.spec
diff -u /dev/null packages/openwbem/openwbem.spec:1.1
--- /dev/null	Tue Jul  3 21:08:45 2012
+++ packages/openwbem/openwbem.spec	Tue Jul  3 21:08:40 2012
@@ -0,0 +1,263 @@
+# $Revision$, $Date$
+Summary:	The OpenWBEM CIMOM
+Summary(pl.UTF-8):	CIMOM z projektu OpenWBEM
+Name:		openwbem
+Version:	3.2.2
+Release:	0.1
+License:	BSD
+Group:		Applications/System
+Source0:	http://downloads.sourceforge.net/openwbem/%{name}-%{version}.tar.gz
+# Source0-md5:	4a70352af90d4024afc9f740e8cf7b23
+Patch0:		%{name}-include.patch
+Patch1:		%{name}-g++.patch
+Patch2:		%{name}-am.patch
+URL:		http://openwbem.org/
+BuildRequires:	autoconf >= 2.57
+BuildRequires:	automake >= 1:1.9
+BuildRequires:	libstdc++-devel >= 5:3.1
+BuildRequires:	openslp-devel
+BuildRequires:	openssl-devel
+BuildRequires:	pam-devel
+BuildRequires:	sed >= 4.0
+BuildRequires:	zlib-devel
+Requires:	%{name}-libs = %{version}-%{release}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define		_localstatedir	/var/lib
+# plugin using symbols from its loader
+%define		skip_post_check_so	libowslpprovider\.so.*
+%description
+OpenWBEM is a set of software components that help facilitate the
+deployment of the DMTF's (Distributed Management Task Force) CIM/WBEM
+technologies (<http://www.dmtf.org/>). This software was initially
+developed by Caldera International and released to the opensource
+community under a BSD style license for further maturation and
+additional platform support. On initial release, all of the software
+components were written in C++. It's expected to change as the
+project evolves and developers add more components to the suite.
+
+%description -l pl.UTF-8
+OpenWBEM to zestaw komponentów oprogramowania pomagającego przy
+wdrażaniu technologii CIM/WBEM tworzonej przez DMTF (Distributed
+Management Task Force: <http://www.dmtf.org/>). Oprogramowanie to
+było pierwotnie tworzone przez firmę Caldera International i wydane
+wraz z otwartymi źródłami na licencji typu BSD do dalszego rozwoju i
+wspierania dodatkowych platform. W pierwszym wydaniu wszystkie
+komponenty zostały napisane w C++; to może sie zmienić wraz z ewolucją
+projektu i dodawaniem przez programistów większej liczby komponentów.
+
+%package libs
+Summary:	OpenWBEM libraries
+Summary(pl.UTF-8):	Biblioteki OpenWBEM
+Group:		Libraries
+
+%description libs
+OpenWBEM libraries.
+
+%description libs -l pl.UTF-8
+Biblioteki OpenWBEM.
+
+%package devel
+Summary:	Header files for OpenWBEM libraries
+Summary(pl.UTF-8):	Pliki nagłówkowe bibliotek OpenWBEM
+Group:		Development/Libraries
+Requires:	%{name}-libs = %{version}-%{release}
+Requires:	libstdc++-devel
+
+%description devel
+Header files for OpenWBEM libraries.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe bibliotek OpenWBEM.
+
+%package static
+Summary:	Static OpenWBEM libraries
+Summary(pl.UTF-8):	Biblioteki statyczne OpenWBEM
+Group:		Development/Libraries
+Requires:	%{name}-devel = %{version}-%{release}
+
+%description static
+Static OpenWBEM libraries.
+
+%description static -l pl.UTF-8
+Biblioteki statyczne OpenWBEM.
+
+%prep
+%setup -q
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+
+# don't override
+%{__sed} -i -e 's/"-O3"/""/' configure.in
+
+%build
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+	DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	libs -p /sbin/ldconfig
+%postun	libs -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog LICENSE README TODO
+%attr(755,root,root) %{_bindir}/ow*
+%attr(755,root,root) %{_sbindir}/owcimomd
+%attr(755,root,root) %{_sbindir}/owdigestgenpass
+%attr(755,root,root) %{_sbindir}/owprovideragent
+%attr(755,root,root) %{_sbindir}/owrepositorydump
+# TODO: PLDify, move to /etc/rc.d/init.d
+%attr(755,root,root) %{_sbindir}/owcimomd_init
+%dir %{_sysconfdir}/openwbem
+%dir %{_sysconfdir}/openwbem/openwbem.conf.d
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/openwbem/openwbem.conf
+%attr(754,root,root) %{_sysconfdir}/openwbem/owgencert
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/openwbem/ssleay.cnf
+%attr(755,root,root) %{_libdir}/openwbem/OW_PAMAuth
+%attr(755,root,root) %{_libdir}/openwbem/owlocalhelper
+%attr(755,root,root) %{_libdir}/openwbem/libowindicationreplayer.so*
+%attr(755,root,root) %{_libdir}/openwbem/libowindicationserver.so*
+%attr(755,root,root) %{_libdir}/openwbem/libowsimpleauthorizer.so*
+%attr(755,root,root) %{_libdir}/openwbem/libowsimpleauthorizer2.so*
+%attr(755,root,root) %{_libdir}/openwbem/authentication/libnonauthenticatingauthentication.so
+%attr(755,root,root) %{_libdir}/openwbem/authentication/libpamauthentication.so
+%attr(755,root,root) %{_libdir}/openwbem/authentication/libpamclauthentication.so
+%attr(755,root,root) %{_libdir}/openwbem/authentication/libsimpleauthentication.so
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libcppindicationexportxmlhttpprovider.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovCIM_IndicationSubscription.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovindIndicationRepLayer.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovinstCIM_IndicationFilter.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovinstCIM_Namespace.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovinstCIM_NamespaceInManager.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovinstOW_NameSpace.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovinstOpenWBEM_ConfigSettingData.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovinstOpenWBEM_ObjectManager.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovinstOpenWBEM_UnitaryComputerSystem.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowprovpollUnloader.so*
+%attr(755,root,root) %{_libdir}/openwbem/c++providers/libowslpprovider.so*
+%attr(755,root,root) %{_libdir}/openwbem/provifcs/libcmpiprovifc.so*
+%attr(755,root,root) %{_libdir}/openwbem/provifcs/libnpiprovifc.so*
+%attr(755,root,root) %{_libdir}/openwbem/provifcs/libowremoteprovifc.so*
+%attr(755,root,root) %{_libdir}/openwbem/requesthandlers/libowrequesthandlerbinary.so
+%attr(755,root,root) %{_libdir}/openwbem/requesthandlers/libowrequesthandlercimxml.so
+%attr(755,root,root) %{_libdir}/openwbem/services/libowservicehttp.so
+%dir %{_localstatedir}/openwbem
+
+%files libs
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libcmpisupport.so.4
+%attr(755,root,root) %{_libdir}/libnonauthenticatingauthentication.so.4
+%attr(755,root,root) %{_libdir}/libnpisupport.so.4
+%attr(755,root,root) %{_libdir}/libopenwbem.so.4
+%attr(755,root,root) %{_libdir}/libowcimomcommon.so.4
+%attr(755,root,root) %{_libdir}/libowcimxmllistener.so.4
+%attr(755,root,root) %{_libdir}/libowclient.so.4
+%attr(755,root,root) %{_libdir}/libowcppprovifc.so.4
+%attr(755,root,root) %{_libdir}/libowdb.so.4
+%attr(755,root,root) %{_libdir}/libowembeddedcimom.so.4
+%attr(755,root,root) %{_libdir}/libowhttpclient.so.4
+%attr(755,root,root) %{_libdir}/libowhttpcommon.so.4
+%attr(755,root,root) %{_libdir}/libowhttpxmllistener.so.4
+%attr(755,root,root) %{_libdir}/libowmofc.so.4
+%attr(755,root,root) %{_libdir}/libowprovider.so.4
+%attr(755,root,root) %{_libdir}/libowprovideragent.so.4
+%attr(755,root,root) %{_libdir}/libowrepositoryhdb.so.4
+%attr(755,root,root) %{_libdir}/libowrequesthandlerbinary.so.4
+%attr(755,root,root) %{_libdir}/libowrequesthandlercimxml.so.4
+%attr(755,root,root) %{_libdir}/libowserver.so.4
+%attr(755,root,root) %{_libdir}/libowservicehttp.so.4
+%attr(755,root,root) %{_libdir}/libowwql.so.4
+%attr(755,root,root) %{_libdir}/libowwqlcommon.so.4
+%attr(755,root,root) %{_libdir}/libowxml.so.4
+%attr(755,root,root) %{_libdir}/libpamauthentication.so.4
+%attr(755,root,root) %{_libdir}/libpamclauthentication.so.4
+%attr(755,root,root) %{_libdir}/libsimpleauthentication.so.4
+# symlinks to libs referred as plugins (through symlinks in %{_libdir}/openwbem subdirs)
+%attr(755,root,root) %{_libdir}/libnonauthenticatingauthentication.so
+%attr(755,root,root) %{_libdir}/libpamauthentication.so
+%attr(755,root,root) %{_libdir}/libpamclauthentication.so
+%attr(755,root,root) %{_libdir}/libsimpleauthentication.so
+%attr(755,root,root) %{_libdir}/libowrequesthandlerbinary.so
+%attr(755,root,root) %{_libdir}/libowrequesthandlercimxml.so
+%attr(755,root,root) %{_libdir}/libowservicehttp.so
+%dir %{_libdir}/openwbem
+%dir %{_libdir}/openwbem/authentication
+%dir %{_libdir}/openwbem/c++providers
+%dir %{_libdir}/openwbem/provifcs
+%dir %{_libdir}/openwbem/requesthandlers
+%dir %{_libdir}/openwbem/services
+%{_datadir}/openwbem
+%{_mandir}/man1/ow*.1*
+%{_mandir}/man8/owcimomd.8*
+%{_mandir}/man8/owdigestgenpass.8*
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libcmpisupport.so
+%attr(755,root,root) %{_libdir}/libnpisupport.so
+%attr(755,root,root) %{_libdir}/libopenwbem.so
+%attr(755,root,root) %{_libdir}/libowcimomcommon.so
+%attr(755,root,root) %{_libdir}/libowcimxmllistener.so
+%attr(755,root,root) %{_libdir}/libowclient.so
+%attr(755,root,root) %{_libdir}/libowcppprovifc.so
+%attr(755,root,root) %{_libdir}/libowdb.so
+%attr(755,root,root) %{_libdir}/libowembeddedcimom.so
+%attr(755,root,root) %{_libdir}/libowhttpclient.so
+%attr(755,root,root) %{_libdir}/libowhttpcommon.so
+%attr(755,root,root) %{_libdir}/libowhttpxmllistener.so
+%attr(755,root,root) %{_libdir}/libowmofc.so
+%attr(755,root,root) %{_libdir}/libowprovider.so
+%attr(755,root,root) %{_libdir}/libowprovideragent.so
+%attr(755,root,root) %{_libdir}/libowrepositoryhdb.so
+%attr(755,root,root) %{_libdir}/libowserver.so
+%attr(755,root,root) %{_libdir}/libowwql.so
+%attr(755,root,root) %{_libdir}/libowwqlcommon.so
+%attr(755,root,root) %{_libdir}/libowxml.so
+%{_includedir}/openwbem
+%{_aclocaldir}/openwbem.m4
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libcmpisupport.a
+%{_libdir}/libnpisupport.a
+%{_libdir}/libopenwbem.a
+%{_libdir}/libowcimomcommon.a
+%{_libdir}/libowcimxmllistener.a
+%{_libdir}/libowclient.a
+%{_libdir}/libowcppprovifc.a
+%{_libdir}/libowdb.a
+%{_libdir}/libowembeddedcimom.a
+%{_libdir}/libowhttpclient.a
+%{_libdir}/libowhttpcommon.a
+%{_libdir}/libowhttpxmllistener.a
+%{_libdir}/libowmofc.a
+%{_libdir}/libowprovider.a
+%{_libdir}/libowprovideragent.a
+%{_libdir}/libowrepositoryhdb.a
+%{_libdir}/libowserver.a
+%{_libdir}/libowservicehttp.a
+%{_libdir}/libowwql.a
+%{_libdir}/libowwqlcommon.a
+%{_libdir}/libowxml.a
+
+%define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1  2012/07/03 19:08:40  qboosh
+- new
================================================================


More information about the pld-cvs-commit mailing list