From 52414d27ae260cd056599e8f7b362c3e74113c885659fe6cc7899203983b8c95 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Wed, 30 Dec 2015 16:16:41 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/libwpd?expand=0&rev=15 --- libwpd-0.10.0.tar.xz | 3 --- libwpd-0.10.1.tar.xz | 3 +++ libwpd.changes | 16 ++++++++++++++++ libwpd.spec | 11 +++++++++-- 4 files changed, 28 insertions(+), 5 deletions(-) delete mode 100644 libwpd-0.10.0.tar.xz create mode 100644 libwpd-0.10.1.tar.xz diff --git a/libwpd-0.10.0.tar.xz b/libwpd-0.10.0.tar.xz deleted file mode 100644 index 89e21f8..0000000 --- a/libwpd-0.10.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d8ba780cb9c0aed7859c59a602138d8ab360b40f6aa655e42f5f769f2cfd32c -size 506220 diff --git a/libwpd-0.10.1.tar.xz b/libwpd-0.10.1.tar.xz new file mode 100644 index 0000000..58b62f5 --- /dev/null +++ b/libwpd-0.10.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d3410bc770f9d9eedc8544b5c211771ea3322de3fee19b58ad7d40fb2984f6 +size 524004 diff --git a/libwpd.changes b/libwpd.changes index a7b065b..c00bd88 100644 --- a/libwpd.changes +++ b/libwpd.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Wed Dec 30 16:08:52 UTC 2015 - fstrba@suse.com + +- Upgrade to version 0.10.1 + * Fix crash when NULL is passed as input stream. + * Use symbol visibility on Linux. The library only exports public + functions now. + * Avoid infinite loop. (libwpd#3) + * Remove bashism. (libwpd#5) + * Fix various crashes and hangs when reading broken files found + with the help of american-fuzzy-lop. + * Make --help output of all command line tools more + help2man-friendly. + * Miscellaneous fixes and cleanups. +- Generate manpages for the libwpd-tools + ------------------------------------------------------------------- Mon May 26 09:16:13 UTC 2014 - fstrba@suse.com diff --git a/libwpd.spec b/libwpd.spec index 1d780b6..10619f3 100644 --- a/libwpd.spec +++ b/libwpd.spec @@ -1,7 +1,7 @@ # # spec file for package libwpd # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: libwpd -Version: 0.10.0 +Version: 0.10.1 Release: 0 Summary: Library for Importing WordPerfect (tm) Documents License: LGPL-2.1+ and MPL-2.0+ @@ -28,6 +28,7 @@ Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{name} BuildRequires: doxygen BuildRequires: fdupes BuildRequires: gcc-c++ +BuildRequires: help2man BuildRequires: pkg-config BuildRequires: xz BuildRequires: pkgconfig(librevenge-0.0) @@ -93,6 +94,11 @@ make %{?_smp_mflags} %install make DESTDIR=%{buildroot} install %{?_smp_mflags} find %{buildroot} -type f -name "*.la" -delete -print +mkdir -p %{buildroot}%{_mandir}/man1 +for i in %{buildroot}%{_bindir}/*; do + LD_LIBRARY_PATH=%{buildroot}%{_libdir} \ + help2man -N -o %{buildroot}%{_mandir}/man1/$(basename $i).1 $i +done %fdupes -s %{buildroot}%{_docdir}/%{name}/html %post -n %{libname} -p /sbin/ldconfig @@ -118,6 +124,7 @@ find %{buildroot} -type f -name "*.la" -delete -print %files tools %defattr(-,root,root) %{_bindir}/* +%{_mandir}/man1/*.1* %doc ChangeLog %doc COPYING.LGPL %doc COPYING.MPL