Accepting request 351350 from LibreOffice:Factory
0.10.1 OBS-URL: https://build.opensuse.org/request/show/351350 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libwpd?expand=0&rev=39
This commit is contained in:
commit
e87311b534
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9d8ba780cb9c0aed7859c59a602138d8ab360b40f6aa655e42f5f769f2cfd32c
|
||||
size 506220
|
3
libwpd-0.10.1.tar.xz
Normal file
3
libwpd-0.10.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:09d3410bc770f9d9eedc8544b5c211771ea3322de3fee19b58ad7d40fb2984f6
|
||||
size 524004
|
@ -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
|
||||
|
||||
|
11
libwpd.spec
11
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user