Accepting request 351353 from LibreOffice:Factory
0.3.1 OBS-URL: https://build.opensuse.org/request/show/351353 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libwpg?expand=0&rev=28
This commit is contained in:
commit
ac3d42b332
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6f709199235f4c061c3ffe1a5112ce6430e8434e621bf7b3e3dca16114eaf224
|
||||
size 300244
|
3
libwpg-0.3.1.tar.xz
Normal file
3
libwpg-0.3.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:620d888c10d7e1127d5123ff0065f1b62b86b91bac27d8ae10dcfbdb6bf4278f
|
||||
size 316576
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 30 16:38:11 UTC 2015 - fstrba@suse.com
|
||||
|
||||
- Generate manpages for the binaries in libwpg-tools
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 26 20:56:35 UTC 2015 - fstrba@suse.com
|
||||
|
||||
- Version bump to 0.3.1:
|
||||
* Fix crash when NULL is passed as input stream.
|
||||
* Use symbol visibility on Linux. The library only exports public
|
||||
functions now.
|
||||
* Fix various crashes and hangs when reading broken files found
|
||||
with the help of american-fuzzy-lop.
|
||||
* Fix some warnings found by Coverity.
|
||||
* Make --help output of all command line tools more
|
||||
help2man-friendly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 11 09:31:32 UTC 2014 - tchvatal@suse.com
|
||||
|
||||
|
12
libwpg.spec
12
libwpg.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libwpg
|
||||
#
|
||||
# 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: libwpg
|
||||
Version: 0.3.0
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Library to read and parse graphics in WordPerfect Graphics format
|
||||
License: LGPL-2.1+ and MPL-2.0+
|
||||
@ -26,6 +26,7 @@ Url: http://libwpg.sourceforge.net/
|
||||
Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{version}/%{name}-%{version}.tar.xz
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: help2man
|
||||
BuildRequires: librevenge-devel >= 0.0.0
|
||||
BuildRequires: libwpd-devel >= 0.10.0
|
||||
BuildRequires: pkg-config
|
||||
@ -94,6 +95,12 @@ make %{?_smp_mflags} V=1
|
||||
%install
|
||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
||||
find %{buildroot} -type f -name "*.la" -delete -print
|
||||
# manpages
|
||||
mkdir -p %{buildroot}%{_mandir}/man1
|
||||
for i in wpg2raw wpg2svg; do
|
||||
LD_LIBRARY_PATH=%{buildroot}%{_libdir} \
|
||||
help2man -N -o %{buildroot}%{_mandir}/man1/$i.1 %{buildroot}%{_bindir}/$i
|
||||
done
|
||||
# documentation
|
||||
mkdir -p %{buildroot}%{_docdir}/%{name}
|
||||
cp -p AUTHORS COPYING.LGPL COPYING.MPL ChangeLog %{buildroot}%{_docdir}/%{name}
|
||||
@ -119,6 +126,7 @@ cp -p AUTHORS COPYING.LGPL COPYING.MPL ChangeLog %{buildroot}%{_docdir}/%{name}
|
||||
%files tools
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/*
|
||||
%{_mandir}/man1/*.1*
|
||||
%doc %dir %{_docdir}/%{name}
|
||||
%doc %{_docdir}/%{name}/[A-Z]*
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user