File cmpi-bindings.spec of Package cmpi-bindings
#
# spec file for package cmpi-bindings
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# nodebuginfo
Url: http://github.com/kkaempf/cmpi-bindings
Name: cmpi-bindings
Version: 0.4.17
Release: 1
License: BSD3c(or similar) ; EPL 1.0
Summary: Adapter to write and run CMPI-type CIM providers
Group: Development/Libraries/Other
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: cmake gcc-c++
# We need swig threads support.
BuildRequires: swig >= 1.3.34
BuildRequires: sblim-cmpi-devel
BuildRequires: perl python-devel
%if 0%{?rhel_version} > 0
BuildRequires: -vim
%endif
%if 0%{?fedora} + 0%{?rhel_version} > 0
BuildRequires: curl-devel pkgconfig ruby ruby-devel
BuildRequires: ruby-libs
%if 0%{?rhel_version} < 500
# rdoc needs irb/slex in rhel4
BuildRequires: irb
%endif
%if 0%{?rhel_version} >= 500 || 0%{?fedora}
# rdoc is separate from rhel5 on
BuildRequires: ruby-rdoc
%endif
%if 0%{?fedora} > 0
BuildRequires: perl-devel
%endif
%endif
%if 0%{?suse_version} > 0
%if 0%{?suse_version} > 1010
BuildRequires: fdupes
%endif
%if 0%{?suse_version} > 1010
BuildRequires: libcurl-devel
%else
# SLE10
BuildRequires: curl-devel
%endif
# SLE9
%if 0%{?suse_version} < 920
BuildRequires: pkgconfig ruby
%else
BuildRequires: ruby-devel
BuildRequires: pkg-config
%endif
%endif
Source: %{name}-%{version}.tar.bz2
%description
-
%prep
%setup -q
%build
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=%_prefix \
-DLIB=%{_lib} \
-DCMAKE_VERBOSE_MAKEFILE=TRUE \
-DCMAKE_C_FLAGS_RELEASE:STRING="%{optflags}" \
-DCMAKE_CXX_FLAGS_RELEASE:STRING="%{optflags}" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=1 \
..
make %{?_smp_mflags}
%install
cd build
mkdir -p $RPM_BUILD_ROOT%{_datadir}/cmpi
make install DESTDIR=$RPM_BUILD_ROOT
%package -n cmpi-bindings-ruby
License: BSD3c(or similar) ; EPL 1.0
Summary: Adapter to write and run CMPI-type CIM providers in Ruby
Group: Development/Languages/Ruby
# for the debug package. we dont use debug_package_requires here as it would enforce to install both packages.
Provides: %{name} = %{version}-%{release}
%if 0%{?fedora} + 0%{?rhel_version} > 0
Requires: ruby(abi) = 1.8
%endif
%if 0%{?suse_version} > 1110
Requires: ruby(abi) = 1.8
%endif
%if 0%{?ruby_sitelib} == 0
%{!?ruby_sitelib: %global ruby_sitelib %(ruby -r rbconfig -e 'vd = Config::CONFIG["vendorlibdir"]; print(vd ? vd : Config::CONFIG["sitelibdir"])')}
%{!?ruby_sitearch: %global ruby_sitearch %(ruby -r rbconfig -e 'vad = Config::CONFIG["vendorarchdir"]; print(vad ? vad : Config::CONFIG["sitearchdir"])')}
%endif
%description -n cmpi-bindings-ruby
-
%files -n cmpi-bindings-ruby
%defattr(-,root,root,-)
%dir %{_libdir}/cmpi
%{_libdir}/cmpi/librbCmpiProvider.so
%{ruby_sitelib}/cmpi.rb
%dir %{ruby_sitelib}/cmpi
%dir %{ruby_sitelib}/cmpi/providers
%{ruby_sitelib}/cmpi/provider.rb
%package -n cmpi-bindings-pywbem
License: BSD3c(or similar) ; EPL 1.0
Summary: Adapter to write and run CMPI-type CIM providers in Python
Group: Development/Languages/Python
# for the debug package. we dont use debug_package_requires here as it would enforce to install both packages.
Provides: %{name} = %{version}-%{release}
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%{!?py_requires: %define py_requires Requires: python}
%{py_requires}
%description -n cmpi-bindings-pywbem
-
%files -n cmpi-bindings-pywbem
%defattr(-,root,root,-)
%dir %{_libdir}/cmpi
%{_libdir}/cmpi/libpyCmpiProvider.so
%dir %{_datadir}/cmpi
%{python_sitelib}/cmpi_pywbem_bindings.py
%{python_sitelib}/cmpi_pywbem_bindings.pyc
%{python_sitelib}/cmpi.py
%{python_sitelib}/cmpi.pyc
%package -n cmpi-bindings-perl
License: BSD3c(or similar) ; EPL 1.0
Requires: perl = %{perl_version}
Summary: Adapter to write and run CMPI-type CIM providers in Perl
Group: Development/Languages/Perl
# for the debug package. we dont use debug_package_requires here as it would enforce to install both packages.
Provides: %{name} = %{version}-%{release}
%description -n cmpi-bindings-perl
-
%files -n cmpi-bindings-perl
%defattr(-,root,root,-)
%dir %{_libdir}/cmpi
%{_libdir}/cmpi/libplCmpiProvider.so
%dir %{_datadir}/cmpi
%{perl_vendorlib}/cmpi-bindings.pl
%{perl_vendorlib}/cmpi.pm
%changelog