- Version bump to 0.3.2:
* Require C++11 for build. * Fix a couple of issues found by oss-fuzz. * Improve performance of reading image data from WPG2 files. * Various minor code cleanups. OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/libwpg?expand=0&rev=18
This commit is contained in:
parent
be8bbd2eca
commit
f537b9e463
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:620d888c10d7e1127d5123ff0065f1b62b86b91bac27d8ae10dcfbdb6bf4278f
|
||||
size 316576
|
3
libwpg-0.3.2.tar.xz
Normal file
3
libwpg-0.3.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:57faf1ab97d63d57383ac5d7875e992a3d190436732f4083310c0471e72f8c33
|
||||
size 326840
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 13 09:31:04 UTC 2017 - tchvatal@suse.com
|
||||
|
||||
- Version bump to 0.3.2:
|
||||
* Require C++11 for build.
|
||||
* Fix a couple of issues found by oss-fuzz.
|
||||
* Improve performance of reading image data from WPG2 files.
|
||||
* Various minor code cleanups.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 30 16:38:11 UTC 2015 - fstrba@suse.com
|
||||
|
||||
|
36
libwpg.spec
36
libwpg.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libwpg
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 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
|
||||
@ -16,34 +16,34 @@
|
||||
#
|
||||
|
||||
|
||||
%define libname libwpg-0_3-3
|
||||
Name: libwpg
|
||||
Version: 0.3.1
|
||||
Version: 0.3.2
|
||||
Release: 0
|
||||
Summary: Library to read and parse graphics in WordPerfect Graphics format
|
||||
License: LGPL-2.1+ and MPL-2.0+
|
||||
License: LGPL-2.1+ AND MPL-2.0+
|
||||
Group: Productivity/Publishing/Word
|
||||
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
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: xz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: pkgconfig(librevenge-0.0) >= 0.0.0
|
||||
BuildRequires: pkgconfig(librevenge-generators-0.0) >= 0.0.0
|
||||
BuildRequires: pkgconfig(librevenge-stream-0.0) >= 0.0.0
|
||||
BuildRequires: pkgconfig(libwpd-0.10) >= 0.10.0
|
||||
|
||||
%description
|
||||
libwpg is a C++ library to read and parse graphics in WPG (WordPerfect
|
||||
Graphics) format. It is cross-platform, at the moment it can be build
|
||||
on Microsoft Windows and Linux.
|
||||
|
||||
%define libname libwpg-0_3-3
|
||||
|
||||
%package -n %{libname}
|
||||
Summary: Library to read and parse graphics in WordPerfect Graphics format
|
||||
Group: System/Libraries
|
||||
# remove the old non-versioned package (built in the bs for instance)
|
||||
Group: System/Libraries
|
||||
Obsoletes: libwpg < %{version}
|
||||
|
||||
%description -n %{libname}
|
||||
@ -54,8 +54,8 @@ Graphics) format.
|
||||
Summary: Files for Developing with libwpg
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{libname} = %{version}
|
||||
Requires: libwpd-devel
|
||||
Provides: libwpg-devel = %{version}-%{release}
|
||||
Requires: pkgconfig(libwpd-0.10)
|
||||
Provides: pkgconfig(libwpg-0.3) = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
libwpg is a C++ library to read and parse graphics in WPG (WordPerfect
|
||||
@ -67,9 +67,7 @@ This package contains the libwpg development files.
|
||||
%package devel-doc
|
||||
Summary: Documentation for the libwpg API
|
||||
Group: Documentation/HTML
|
||||
%if 0%{?suse_version} > 1200
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
|
||||
%description devel-doc
|
||||
This package contains documentation for the libwpg API.
|
||||
@ -87,13 +85,14 @@ Tools to work with graphics in WPG (WordPerfect Graphics) format.
|
||||
%build
|
||||
export CXXFLAGS="%{optflags} -fvisibility-inlines-hidden"
|
||||
%configure \
|
||||
--disable-silent-rules \
|
||||
--disable-werror \
|
||||
--disable-static \
|
||||
--docdir=%{_docdir}/%{name}
|
||||
make %{?_smp_mflags} V=1
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
||||
%make_install
|
||||
find %{buildroot} -type f -name "*.la" -delete -print
|
||||
# manpages
|
||||
mkdir -p %{buildroot}%{_mandir}/man1
|
||||
@ -106,25 +105,20 @@ mkdir -p %{buildroot}%{_docdir}/%{name}
|
||||
cp -p AUTHORS COPYING.LGPL COPYING.MPL ChangeLog %{buildroot}%{_docdir}/%{name}
|
||||
|
||||
%post -n %{libname} -p /sbin/ldconfig
|
||||
|
||||
%postun -n %{libname} -p /sbin/ldconfig
|
||||
|
||||
%files -n %{libname}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/libwpg*.pc
|
||||
%{_includedir}/libwpg-*
|
||||
|
||||
%files devel-doc
|
||||
%defattr(-,root,root,-)
|
||||
%doc %{_docdir}/%{name}/html
|
||||
|
||||
%files tools
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/*
|
||||
%{_mandir}/man1/*.1*
|
||||
%doc %dir %{_docdir}/%{name}
|
||||
|
Loading…
Reference in New Issue
Block a user