SHA256
1
0
forked from pool/wbxml2

Accepting request 884469 from mobile:synchronization:FACTORY

- fixed spec file syntax
- updated to version 0.11.7
  * Added WBXML_INSTALL_FULL_HEADERS cmake flag to expose internal
    API headers; changes library version for compatibility (e.g.
    2.6.1 -> 20601.0.0)
    (pull request #67 from David Llewellyn-Jones)
  * Link to libexpat correctly (private). Therefore the tools
    wbxml2xml and xml2wbxml do no longer link directly to libexpat.
    (pull request #65 from Peter Keresztes Schmidt)
  * Fixed several memory leaks and leak-sanitizer issues.
    (pull requests #61, #62, #63 and #64 from Gaurav Gupta)
  * During build use headers which come with source code and not
    the installed headers.
    (pull request #66 from David Llewellyn-Jones)

OBS-URL: https://build.opensuse.org/request/show/884469
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/wbxml2?expand=0&rev=31
This commit is contained in:
2021-04-12 10:37:18 +00:00
committed by Git OBS Bridge
4 changed files with 26 additions and 8 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2f5ffe6f59986b34f9032bfbf013e32cabf426e654c160d208a99dc1b6284d29
size 360001

3
libwbxml-0.11.7.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:35e2cf033066edebc0d96543c0bdde87273359e4f4e59291299d41e103bd6338
size 427429

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Sun Apr 11 11:38:20 UTC 2021 - Bo Simonsen <bosim@opensuse.org>
- fixed spec file syntax
- updated to version 0.11.7
* Added WBXML_INSTALL_FULL_HEADERS cmake flag to expose internal
API headers; changes library version for compatibility (e.g.
2.6.1 -> 20601.0.0)
(pull request #67 from David Llewellyn-Jones)
* Link to libexpat correctly (private). Therefore the tools
wbxml2xml and xml2wbxml do no longer link directly to libexpat.
(pull request #65 from Peter Keresztes Schmidt)
* Fixed several memory leaks and leak-sanitizer issues.
(pull requests #61, #62, #63 and #64 from Gaurav Gupta)
* During build use headers which come with source code and not
the installed headers.
(pull request #66 from David Llewellyn-Jones)
-------------------------------------------------------------------
Sat Apr 13 13:55:16 UTC 2019 - bosim@opensuse.org

View File

@@ -30,9 +30,9 @@ Url: http://libwbxml.opensync.org/
Summary: WBXML parser and compiler library
License: LGPL-2.1-or-later
Group: Development/Libraries/C and C++
Version: 0.11.6
Version: 0.11.7
Release: 0
Source: libwbxml-%{version}.tar.bz2
Source: https://github.com/libwbxml/libwbxml/archive/refs/tags/libwbxml-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -81,7 +81,7 @@ libxml2. WBXML contains a library and its associated tools to parse,
ecode and handle WBXML documents.
%prep
%setup -q -n libwbxml-%{version}
%setup -q -n libwbxml-libwbxml-%{version}
%build
mkdir build
@@ -92,10 +92,10 @@ cmake \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DENABLE_INSTALL_DOC:BOOL=OFF \
%if %{_lib} == lib64
%if "%{_lib}" == "lib64"
-DLIB_SUFFIX=64 \
%endif
%{_builddir}/libwbxml-%{version}
%{_builddir}/libwbxml-libwbxml-%{version}
make %{?_smp_mflags} VERBOSE=1
popd