SHA256
1
0
forked from pool/diff-pdf

Accepting request 859208 from home:munix9:branches:Publishing

- Update to version 0.4.1
  Fixes some bugs (#64, #65) that crept into 0.4.
  All users of 0.4 should update.
- Update to version 0.4
  Added new useful options contributed by @fatalmind:
  --skip-identical    only outputs pages with actual differences
  --channel-tolerance makes it easy to ignore tiny differences
  --mark-differences  adds visual markers to the margin to
                      highlight where small changes are
- Add fix-find-poppler.patch
- Add man page with help2man
- Clean up spec file

OBS-URL: https://build.opensuse.org/request/show/859208
OBS-URL: https://build.opensuse.org/package/show/Publishing/diff-pdf?expand=0&rev=9
This commit is contained in:
Martin Pluskal
2020-12-29 13:09:20 +00:00
committed by Git OBS Bridge
parent c533f694bc
commit 85ba44421f
5 changed files with 51 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package diff-pdf
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,49 +12,52 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: diff-pdf
Version: 0.2
Version: 0.4.1
Release: 0
Summary: Simple PDF comparison tool
License: GPL-2.0 and LGPL-2.0
License: GPL-2.0-only AND LGPL-2.0-only
Group: Productivity/Publishing/PDF
Url: https://github.com/vslavik/diff-pdf
Source0: https://github.com/vslavik/diff-pdf/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
URL: https://vslavik.github.io/diff-pdf/
Source0: https://github.com/vslavik/diff-pdf/archive/v%{version}/%{name}-%{version}.tar.gz
Patch0: fix-find-poppler.patch
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gcc-c++
BuildRequires: help2man
BuildRequires: pkgconfig
BuildRequires: wxWidgets-3_0-devel
BuildRequires: wxWidgets-devel
BuildRequires: pkgconfig(cairo)
BuildRequires: pkgconfig(cairo-pdf)
BuildRequires: pkgconfig(poppler)
BuildRequires: pkgconfig(poppler-cairo)
BuildRequires: pkgconfig(poppler-glib)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
diff-pdf is a simple tool for comparing two PDF files.
%prep
%setup -q
%autosetup -p1
%build
export CXXFLAGS="%{optflags} -fpermissive"
export LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,now'
./bootstrap
%configure
make %{?_smp_mflags} V=1
%make_build
%install
%make_install
install -d -m 0755 %{buildroot}%{_mandir}/man1
help2man -N -n "%{summary}" --version-string="%{version}" --no-discard-stderr \
-o %{buildroot}%{_mandir}/man1/%{name}.1 %{buildroot}%{_bindir}/%{name}
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING COPYING.icons README
%{_bindir}/diff-pdf
%license COPYING COPYING.icons
%doc AUTHORS README.md
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1%{?ext_man}
%changelog