summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--openlmi-providers.spec23
-rw-r--r--src/pcp/lmi/pcp/__init__.py2
-rw-r--r--src/python/lmi/base/__init__.py2
-rw-r--r--src/software/lmi/software/__init__.py2
5 files changed, 14 insertions, 17 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 04b7aeb..13886bc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@ project(openlmi-providers C)
set(OPENLMI_VERSION_MAJOR 0)
set(OPENLMI_VERSION_MINOR 4)
-set(OPENLMI_VERSION_REVISION 0)
+set(OPENLMI_VERSION_REVISION 1)
set(OPENLMI_VERSION "${OPENLMI_VERSION_MAJOR}.${OPENLMI_VERSION_MINOR}.${OPENLMI_VERSION_REVISION}")
cmake_minimum_required(VERSION 2.6)
diff --git a/openlmi-providers.spec b/openlmi-providers.spec
index 4e69d63..34e4e29 100644
--- a/openlmi-providers.spec
+++ b/openlmi-providers.spec
@@ -2,8 +2,8 @@
%global required_konkret_ver 0.9.0-2
Name: openlmi-providers
-Version: 0.4.0
-Release: 3%{?dist}
+Version: 0.4.1
+Release: 1%{?dist}
Summary: Set of basic CIM providers
License: LGPLv2+
@@ -87,8 +87,6 @@ This package contains the documents for OpenLMI fan provider.
%package -n openlmi-powermanagement
Summary: Power management CIM provider
Requires: %{name}%{?_isa} = %{version}-%{release}
-# For Linux_ComputerSystem
-Requires: sblim-cmpi-base
Provides: cura-powermanagement = %{version}-%{release}
Obsoletes: cura-powermanagement < 0.0.10-1
@@ -123,8 +121,6 @@ This package contains the documents for OpenLMI service provider.
%package -n openlmi-account
Summary: CIM provider for managing accounts on system
Requires: %{name}%{?_isa} = %{version}-%{release}
-# For Linux_ComputerSystem
-Requires: sblim-cmpi-base
Requires: openlmi-indicationmanager-libs%{?_isa} = %{version}-%{release}
Provides: cura-account = %{version}-%{release}
Obsoletes: cura-account < 0.0.10-1
@@ -143,8 +139,6 @@ This package contains the documents for OpenLMI account provider.
%package -n openlmi-hardware
Summary: CIM provider for hardware on system
Requires: %{name}%{?_isa} = %{version}-%{release}
-# For Linux_ComputerSystem
-Requires: sblim-cmpi-base
# For Hardware information
%ifarch %{ix86} x86_64 ia64
Requires: dmidecode
@@ -193,8 +187,6 @@ Obsoletes: cura-software < 0.0.10-1
BuildArch: noarch
Requires: yum
-# For Linux_ComputerSystem
-Requires: sblim-cmpi-base
%description -n openlmi-software
The openlmi-software package contains CMPI providers for management of software
@@ -214,7 +206,6 @@ This package contains the documents for OpenLMI software provider.
%package -n openlmi-logicalfile
Summary: CIM provider for reading files and directories
Requires: %{name}%{?_isa} = %{version}-%{release}
-Requires: sblim-cmpi-base
%description -n openlmi-logicalfile
%{summary}.
@@ -231,8 +222,6 @@ This package contains the documents for OpenLMI logicalfile provider.
Summary: CIM provider for Realmd
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: realmd
-# For Linux_ComputerSystem
-Requires: sblim-cmpi-base
%description -n openlmi-realmd
The openlmi-realmd package contains CMPI providers for Realmd, which is an on
@@ -896,6 +885,14 @@ if [ "$1" -eq 0 ]; then
fi >> %logfile 2>&1
%changelog
+* Mon Nov 04 2013 Radek Novacek <rnovacek@redhat.com> 0.4.1-3
+- Version 0.4.1
+- Add powermanagement and hardware providers documentation
+- Require cim-schema
+- Explicit dependency on systemd-libs removed
+- Use python2_sitelib instead of python_sitelib
+- Remove dependency on sblim-cmpi-base
+
* Fri Oct 18 2013 Tomas Bzatek <tbzatek@redhat.com> 0.4.0-3
- Added journald documentation
diff --git a/src/pcp/lmi/pcp/__init__.py b/src/pcp/lmi/pcp/__init__.py
index 2c319f7..976b191 100644
--- a/src/pcp/lmi/pcp/__init__.py
+++ b/src/pcp/lmi/pcp/__init__.py
@@ -23,4 +23,4 @@ CIM providers for PCP metrics.
Part of OpenLMI project.
"""
-__version__ = "0.4.0"
+__version__ = "0.4.1"
diff --git a/src/python/lmi/base/__init__.py b/src/python/lmi/base/__init__.py
index a305ede..0bd8823 100644
--- a/src/python/lmi/base/__init__.py
+++ b/src/python/lmi/base/__init__.py
@@ -20,4 +20,4 @@
Common utilities for OpenLMI python projects.
"""
-__version__ = "0.4.0"
+__version__ = "0.4.1"
diff --git a/src/software/lmi/software/__init__.py b/src/software/lmi/software/__init__.py
index 2b35660..38a031f 100644
--- a/src/software/lmi/software/__init__.py
+++ b/src/software/lmi/software/__init__.py
@@ -23,4 +23,4 @@ CIM providers for software management.
Part of OpenLMI project.
"""
-__version__ = "0.4.0"
+__version__ = "0.4.1"