Skip to content

Commit

Permalink
version 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phatina committed Mar 2, 2015
1 parent bc6fd33 commit bc58a89
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
New in version 0.7.1:
* fixed python3 build
* fixed boost::python library checks

New in version 0.7.0:
* renamed to python-lmiwbem
* introduced WSMAN support
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AC_PREREQ([2.60])
dnl lmiwbem version number
m4_define(lmiwbem_version_major, 0)
m4_define(lmiwbem_version_minor, 7)
m4_define(lmiwbem_version_patch, 0)
m4_define(lmiwbem_version_patch, 1)
m4_define(lmiwbem_version, lmiwbem_version_major.lmiwbem_version_minor.lmiwbem_version_patch)

AC_INIT([python-lmiwbem], [lmiwbem_version], [[email protected]])
Expand Down Expand Up @@ -309,7 +309,7 @@ AC_SUBST([CXXFLAGS], [$CXXFLAGS])

AC_OUTPUT(
[makefile
lmiwbem.spec
python-lmiwbem.spec
setup.py
doc/makefile
doc/src/conf.py
Expand Down
2 changes: 1 addition & 1 deletion makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ endif # BUILD_WITH_DOC
EXTRA_DIST = \
examples \
util \
lmiwbem.spec \
python-lmiwbem.spec \
NEWS \
README.md
20 changes: 16 additions & 4 deletions lmiwbem.spec.in → python-lmiwbem.spec.in
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
%global with_doc 0

Name: lmiwbem
Name: python-lmiwbem
Version: @VERSION@
Release: 1%{?dist}
Summary: Python WBEM Client
License: LGPLv2+
URL: https://github.com/phatina/lmiwbem
Source0: https://github.com/phatina/lmiwbem/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
URL: https://github.com/phatina/python-lmiwbem
Source0: https://github.com/phatina/python-lmiwbem/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz

BuildRequires: autoconf
BuildRequires: automake
Expand All @@ -26,6 +26,10 @@ Requires: openslp
Requires: python
Requires: tog-pegasus-libs >= 2.12.0

Provides: lmiwbem = %{version}-%{release}
Provides: lmiwbem%{?_isa} = %{version}-%{release}
Obsoletes: lmiwbem <= 0.6.0-2

%description
%{name} is a Python library, which performs CIM operations using CIM-XML
protocol. The library tries to mimic PyWBEM.
Expand All @@ -34,6 +38,9 @@ protocol. The library tries to mimic PyWBEM.
%package doc
Summary: Documentation for %{name}
Group: Documentation
BuildArch: noarch
Provides: lmiwbem-doc = %{version}-%{release}
Obsoletes: lmiwbem <= 0.6.0-2

%description doc
%{summary}
Expand All @@ -56,10 +63,11 @@ find %{buildroot} -name '*.la' | xargs rm -f

%files
%doc COPYING README.md
%{python_sitearch}/lmiwbem/
%{python2_sitearch}/lmiwbem/

%if %{with_doc}
%files doc
%doc COPYING README.md
%dir %{_docdir}/%{name}-%{version}
%{_docdir}/%{name}-%{version}/html
%endif
Expand All @@ -68,6 +76,10 @@ find %{buildroot} -name '*.la' | xargs rm -f
* @SPECFILE_DATE@ Peter Hatina <[email protected]> - @VERSION@-1
- upgrade to @VERSION@

* Tue Feb 24 2015 Peter Hatina <[email protected]> - 0.7.1-1
- upgrade to 0.7.1
- rename to python-lmiwbem

* Mon Feb 23 2015 Peter Hatina <[email protected]> - 0.7.0-1
- upgrade to 0.7.0

Expand Down

0 comments on commit bc58a89

Please sign in to comment.