Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package zathura-plugin-pdf-mupdf for
openSUSE:Factory checked in at 2021-08-04 22:29:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/zathura-plugin-pdf-mupdf (Old)
and /work/SRC/openSUSE:Factory/.zathura-plugin-pdf-mupdf.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zathura-plugin-pdf-mupdf"
Wed Aug 4 22:29:00 2021 rev:4 rq:910178 version:0.3.7
Changes:
--------
---
/work/SRC/openSUSE:Factory/zathura-plugin-pdf-mupdf/zathura-plugin-pdf-mupdf.changes
2020-09-17 14:47:34.215723139 +0200
+++
/work/SRC/openSUSE:Factory/.zathura-plugin-pdf-mupdf.new.1899/zathura-plugin-pdf-mupdf.changes
2021-08-04 22:29:44.413739383 +0200
@@ -1,0 +2,6 @@
+Wed Aug 4 09:47:58 UTC 2021 - Paolo Stivanin <[email protected]>
+
+- Update to 0.3.7
+ * no changelog
+
+-------------------------------------------------------------------
Old:
----
zathura-pdf-mupdf-0.3.6.tar.xz
New:
----
zathura-pdf-mupdf-0.3.7.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ zathura-plugin-pdf-mupdf.spec ++++++
--- /var/tmp/diff_new_pack.H8eJ9p/_old 2021-08-04 22:29:44.825738881 +0200
+++ /var/tmp/diff_new_pack.H8eJ9p/_new 2021-08-04 22:29:44.829738876 +0200
@@ -1,7 +1,7 @@
#
# spec file for package zathura-plugin-pdf-mupdf
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,15 @@
%define realname zathura-pdf-mupdf
Name: zathura-plugin-pdf-mupdf
-Version: 0.3.6
+Version: 0.3.7
Release: 0
Summary: Zathura PDF support through MuPDF
License: Zlib
Group: Productivity/Office/Other
URL: https://pwmt.org/projects/zathura-pdf-mupdf/
Source:
https://pwmt.org/projects/%{realname}/download/%{realname}-%{version}.tar.xz
+BuildRequires: cmake
+BuildRequires: libgumbo-devel
BuildRequires: meson
BuildRequires: mupdf-devel-static >= 1.17
BuildRequires: pkgconfig
++++++ zathura-pdf-mupdf-0.3.6.tar.xz -> zathura-pdf-mupdf-0.3.7.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/zathura-pdf-mupdf-0.3.6/meson.build
new/zathura-pdf-mupdf-0.3.7/meson.build
--- old/zathura-pdf-mupdf-0.3.6/meson.build 2020-09-06 10:24:37.400727000
+0200
+++ new/zathura-pdf-mupdf-0.3.7/meson.build 2021-07-14 18:55:03.293939600
+0200
@@ -1,5 +1,5 @@
project('zathura-pdf-mupdf', 'c',
- version: '0.3.6',
+ version: '0.3.7',
meson_version: '>=0.43',
default_options: ['c_std=c11', 'warning_level=3']
)
@@ -35,11 +35,13 @@
libjpeg = dependency('libjpeg')
libjbig2dec = cc.find_library('jbig2dec')
libopenjp2 = dependency('libopenjp2')
+ gumbo = dependency('gumbo')
build_dependencies += [
libjpeg,
libjbig2dec,
- libopenjp2
+ libopenjp2,
+ gumbo
]
endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/zathura-pdf-mupdf-0.3.6/zathura-pdf-mupdf/index.c
new/zathura-pdf-mupdf-0.3.7/zathura-pdf-mupdf/index.c
--- old/zathura-pdf-mupdf-0.3.6/zathura-pdf-mupdf/index.c 2020-09-06
10:24:37.400727000 +0200
+++ new/zathura-pdf-mupdf-0.3.7/zathura-pdf-mupdf/index.c 2021-07-14
18:55:03.293939600 +0200
@@ -69,7 +69,7 @@
type = ZATHURA_LINK_GOTO_DEST;
target.destination_type = ZATHURA_LINK_DESTINATION_XYZ;
- target.page_number = location.page;
+ target.page_number = fz_page_number_from_location (ctx, document,
location);
target.left = x;
target.top = y;
target.zoom = 0.0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/zathura-pdf-mupdf-0.3.6/zathura-pdf-mupdf/links.c
new/zathura-pdf-mupdf-0.3.7/zathura-pdf-mupdf/links.c
--- old/zathura-pdf-mupdf-0.3.6/zathura-pdf-mupdf/links.c 2020-09-06
10:24:37.400727000 +0200
+++ new/zathura-pdf-mupdf-0.3.7/zathura-pdf-mupdf/links.c 2021-07-14
18:55:03.293939600 +0200
@@ -58,7 +58,7 @@
type = ZATHURA_LINK_GOTO_DEST;
target.destination_type = ZATHURA_LINK_DESTINATION_XYZ;
- target.page_number = location.page;
+ target.page_number = fz_page_number_from_location
(mupdf_document->ctx, mupdf_document->document, location);
target.left = x;
target.top = y;
target.zoom = 0.0;