Hello community, here is the log from the commit of package evince for openSUSE:Factory checked in at 2020-06-25 16:47:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/evince (Old) and /work/SRC/openSUSE:Factory/.evince.new.3060 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "evince" Thu Jun 25 16:47:16 2020 rev:150 rq:816720 version:3.36.6 Changes: -------- --- /work/SRC/openSUSE:Factory/evince/evince.changes 2020-06-14 18:14:48.418742379 +0200 +++ /work/SRC/openSUSE:Factory/.evince.new.3060/evince.changes 2020-06-25 16:47:32.616952313 +0200 @@ -1,0 +2,6 @@ +Fri Jun 19 19:11:02 UTC 2020 - Bjørn Lie <[email protected]> + +- Update to version 3.36.6: + + backend: Fix -Werror=format=2 on dvi on ARM. + +------------------------------------------------------------------- Old: ---- evince-3.36.5.tar.xz New: ---- evince-3.36.6.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ evince.spec ++++++ --- /var/tmp/diff_new_pack.02iWRJ/_old 2020-06-25 16:47:33.264953497 +0200 +++ /var/tmp/diff_new_pack.02iWRJ/_new 2020-06-25 16:47:33.268953505 +0200 @@ -20,7 +20,7 @@ %define pluginAPI 4 Name: evince -Version: 3.36.5 +Version: 3.36.6 Release: 0 Summary: GNOME Document Viewer License: GPL-2.0-or-later ++++++ evince-3.36.5.tar.xz -> evince-3.36.6.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/NEWS new/evince-3.36.6/NEWS --- old/evince-3.36.5/NEWS 2020-06-11 14:04:36.000000000 +0200 +++ new/evince-3.36.6/NEWS 2020-06-19 02:23:49.000000000 +0200 @@ -1,4 +1,19 @@ ================ +Evince 3.36.6 +================ + +backend: + * Fix -Werror=format=2 on dvi on ARM (#1429, Germán Poo-Caamaño) + +snap: + * Don't specify candidate channel for the build snap (Ken VanDine) + * updated to use latest snapcraft extension. Fixes #1426 (Ken VanDine) + +Developers: + + * Germán Poo-Caamaño, Ken VanDine + +================ Evince 3.36.5 ================ @@ -17,6 +32,16 @@ Evince 3.36.3 ================ +backend: + * Fix -Werror=format=2 on dvi on ARM (#1429, Germán Poo-Caamaño) + +snap: + * Don't specify candidate channel for the build snap (Ken VanDine) + * updated to use latest snapcraft extension. Fixes #1426 (Ken VanDine) +Developers: + + * Germán Poo-Caamaño, Ken VanDine + ================ Evince 3.36.3 ================ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/backend/dvi/mdvi-lib/dviread.c new/evince-3.36.6/backend/dvi/mdvi-lib/dviread.c --- old/evince-3.36.5/backend/dvi/mdvi-lib/dviread.c 2020-06-11 13:59:00.000000000 +0200 +++ new/evince-3.36.6/backend/dvi/mdvi-lib/dviread.c 2020-06-19 02:21:01.000000000 +0200 @@ -1287,9 +1287,9 @@ } else { h = dvi->pos.h + ch->tfmwidth; hh = dvi->pos.hh + pixel_round(dvi, ch->tfmwidth); - SHOWCMD((dvi, "setchar", num, "(%d,%d) h:=%d%c%d=%d, hh:=%d (%s)\n", + SHOWCMD((dvi, "setchar", num, "(%d,%d) h:=%d%c%ld=%d, hh:=%d (%s)\n", dvi->pos.hh, dvi->pos.vv, - DBGSUM(dvi->pos.h, ch->tfmwidth, h), hh, + DBGSUM(dvi->pos.h, (long) ch->tfmwidth, h), hh, font->fontname)); dvi->pos.h = h; dvi->pos.hh = hh; @@ -1309,8 +1309,8 @@ if(a > 0 && b > 0) { h = vrule_round(dvi, a); SHOWCMD((dvi, opcode == DVI_SET_RULE ? "setrule" : "putrule", -1, - "width %d, height %d (%dx%d pixels)\n", - b, a, w, h)); + "width %ld, height %ld (%dx%d pixels)\n", + (long) b, (long) a, w, h)); /* the `draw' functions expect the origin to be at the top left * corner of the rule, not the bottom left, as in DVI files */ if(dvi->curr_layer <= dvi->params.layer) { @@ -1319,7 +1319,7 @@ } } else { SHOWCMD((dvi, opcode == DVI_SET_RULE ? "setrule" : "putrule", -1, - "(moving left only, by %d)\n", b)); + "(moving left only, by %ld)\n", (long) b)); } if(opcode == DVI_SET_RULE) { @@ -1380,8 +1380,8 @@ h = dvi->pos.h; hh = move_horizontal(dvi, arg); SHOWCMD((dvi, "right", opcode - DVI_RIGHT1 + 1, - "%d h:=%d%c%d=%d, hh:=%d\n", - arg, DBGSUM(h, arg, dvi->pos.h), hh)); + "%ld h:=%d%c%ld=%d, hh:=%d\n", + (long) arg, DBGSUM(h, (long) arg, dvi->pos.h), hh)); dvi->pos.hh = hh; return 0; } @@ -1395,8 +1395,8 @@ v = dvi->pos.v; vv = move_vertical(dvi, arg); SHOWCMD((dvi, "down", opcode - DVI_DOWN1 + 1, - "%d v:=%d%c%d=%d, vv:=%d\n", - arg, DBGSUM(v, arg, dvi->pos.v), vv)); + "%ld v:=%d%c%ld=%d, vv:=%d\n", + (long) arg, DBGSUM(v, (long) arg, dvi->pos.v), vv)); dvi->pos.vv = vv; return 0; } @@ -1494,12 +1494,12 @@ else ref = dvi->findref(dvi, arg); if(ref == NULL) { - dvierr(dvi, _("font %d is not defined\n"), arg); + dvierr(dvi, _("font %ld is not defined\n"), (long) arg); return -1; } SHOWCMD((dvi, "fnt", opcode - DVI_FNT1 + 1, - "current font is %s (id %d)\n", - ref->ref->fontname, arg)); + "current font is %s (id %ld)\n", + ref->ref->fontname, (long) arg)); dvi->currfont = ref; return 0; } @@ -1538,12 +1538,12 @@ dskip(dvi, 12); dskip(dvi, duget1(dvi) + duget1(dvi)); if(ref == NULL) { - dvierr(dvi, _("font %d is not defined in postamble\n"), arg); + dvierr(dvi, _("font %ld is not defined in postamble\n"), (long) arg); return -1; } SHOWCMD((dvi, "fntdef", opcode - DVI_FNT_DEF1 + 1, - "%d -> %s (%d links)\n", - ref->fontid, ref->ref->fontname, + "%ld -> %s (%d links)\n", + (long) ref->fontid, ref->ref->fontname, ref->ref->links)); return 0; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/configure new/evince-3.36.6/configure --- old/evince-3.36.5/configure 2020-06-11 14:06:25.000000000 +0200 +++ new/evince-3.36.6/configure 2020-06-19 02:27:20.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Evince 3.36.5. +# Generated by GNU Autoconf 2.69 for Evince 3.36.6. # # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=evince>. # @@ -591,8 +591,8 @@ # Identity of this package. PACKAGE_NAME='Evince' PACKAGE_TARNAME='evince' -PACKAGE_VERSION='3.36.5' -PACKAGE_STRING='Evince 3.36.5' +PACKAGE_VERSION='3.36.6' +PACKAGE_STRING='Evince 3.36.6' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=evince' PACKAGE_URL='' @@ -1636,7 +1636,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Evince 3.36.5 to adapt to many kinds of systems. +\`configure' configures Evince 3.36.6 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1707,7 +1707,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Evince 3.36.5:";; + short | recursive ) echo "Configuration of Evince 3.36.6:";; esac cat <<\_ACEOF @@ -1984,7 +1984,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Evince configure 3.36.5 +Evince configure 3.36.6 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2757,7 +2757,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Evince $as_me 3.36.5, which was +It was created by Evince $as_me 3.36.6, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3621,7 +3621,7 @@ # Define the identity of the package. PACKAGE='evince' - VERSION='3.36.5' + VERSION='3.36.6' cat >>confdefs.h <<_ACEOF @@ -24230,7 +24230,7 @@ EV_MINOR_VERSION=36 -EV_MICRO_VERSION=5 +EV_MICRO_VERSION=6 EV_API_VERSION=3.0 @@ -24915,7 +24915,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Evince $as_me 3.36.5, which was +This file was extended by Evince $as_me 3.36.6, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -24981,7 +24981,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -Evince config.status 3.36.5 +Evince config.status 3.36.6 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/configure.ac new/evince-3.36.6/configure.ac --- old/evince-3.36.5/configure.ac 2020-06-11 13:59:25.000000000 +0200 +++ new/evince-3.36.6/configure.ac 2020-06-19 02:26:23.000000000 +0200 @@ -4,7 +4,7 @@ m4_define([ev_major_version],[3]) m4_define([ev_minor_version],[36]) -m4_define([ev_micro_version],[5]) +m4_define([ev_micro_version],[6]) m4_define([ev_extra_version],[]) m4_define([ev_version],[ev_major_version.ev_minor_version.ev_micro_version()ev_extra_version]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/help/reference/libdocument/html/index.html new/evince-3.36.6/help/reference/libdocument/html/index.html --- old/evince-3.36.5/help/reference/libdocument/html/index.html 2020-06-11 14:08:10.000000000 +0200 +++ new/evince-3.36.6/help/reference/libdocument/html/index.html 2020-06-19 02:27:44.000000000 +0200 @@ -15,7 +15,7 @@ <div> <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Evince Document Library Reference Manual</p></th></tr></table></div> <div><p class="releaseinfo"> - For Evince version 3.36.5 + For Evince version 3.36.6 . The latest version of this documentation can be found on-line at the <a class="ulink" href="http://library.gnome.org/devel/libevdocument/index.html" target="_top">GNOME Library</a>. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/help/reference/libdocument/html/libevdocument-Version-checks.html new/evince-3.36.6/help/reference/libdocument/html/libevdocument-Version-checks.html --- old/evince-3.36.5/help/reference/libdocument/html/libevdocument-Version-checks.html 2020-06-11 14:08:10.000000000 +0200 +++ new/evince-3.36.6/help/reference/libdocument/html/libevdocument-Version-checks.html 2020-06-19 02:27:44.000000000 +0200 @@ -130,7 +130,7 @@ <hr> <div class="refsect2"> <a name="EV-MICRO-VERSION:CAPS"></a><h3>EV_MICRO_VERSION</h3> -<pre class="programlisting">#define EV_MICRO_VERSION (5) +<pre class="programlisting">#define EV_MICRO_VERSION (6) </pre> <p>The micro version number of the EV library (e.g. in version 3.1.4 this is 4).</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/help/reference/libdocument/version.xml new/evince-3.36.6/help/reference/libdocument/version.xml --- old/evince-3.36.5/help/reference/libdocument/version.xml 2020-06-11 14:06:33.000000000 +0200 +++ new/evince-3.36.6/help/reference/libdocument/version.xml 2020-06-19 02:27:28.000000000 +0200 @@ -1 +1 @@ -3.36.5 +3.36.6 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/help/reference/libview/html/index.html new/evince-3.36.6/help/reference/libview/html/index.html --- old/evince-3.36.5/help/reference/libview/html/index.html 2020-06-11 14:08:14.000000000 +0200 +++ new/evince-3.36.6/help/reference/libview/html/index.html 2020-06-19 02:27:45.000000000 +0200 @@ -15,7 +15,7 @@ <div> <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Evince View Library Reference Manual</p></th></tr></table></div> <div><p class="releaseinfo"> - For Evince version 3.36.5 + For Evince version 3.36.6 . The latest version of this documentation can be found on-line at the <a class="ulink" href="http://library.gnome.org/devel/libevview/index.html" target="_top">GNOME Library</a>. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/help/reference/libview/version.xml new/evince-3.36.6/help/reference/libview/version.xml --- old/evince-3.36.5/help/reference/libview/version.xml 2020-06-11 14:06:33.000000000 +0200 +++ new/evince-3.36.6/help/reference/libview/version.xml 2020-06-19 02:27:28.000000000 +0200 @@ -1 +1 @@ -3.36.5 +3.36.6 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/help/reference/shell/html/index.html new/evince-3.36.6/help/reference/shell/html/index.html --- old/evince-3.36.5/help/reference/shell/html/index.html 2020-06-11 14:08:24.000000000 +0200 +++ new/evince-3.36.6/help/reference/shell/html/index.html 2020-06-19 02:27:48.000000000 +0200 @@ -15,7 +15,7 @@ <div> <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Evince Programmer's Reference Manual</p></th></tr></table></div> <div><p class="releaseinfo"> - For Evince version 3.36.5 + For Evince version 3.36.6 . The latest version of this documentation can be found on-line at the <a class="ulink" href="http://library.gnome.org/devel/evince/index.html" target="_top">GNOME Library</a>. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/help/reference/shell/version.xml new/evince-3.36.6/help/reference/shell/version.xml --- old/evince-3.36.5/help/reference/shell/version.xml 2020-06-11 14:06:33.000000000 +0200 +++ new/evince-3.36.6/help/reference/shell/version.xml 2020-06-19 02:27:28.000000000 +0200 @@ -1 +1 @@ -3.36.5 +3.36.6 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/meson.build new/evince-3.36.6/meson.build --- old/evince-3.36.5/meson.build 2020-06-11 13:59:35.000000000 +0200 +++ new/evince-3.36.6/meson.build 2020-06-19 02:26:11.000000000 +0200 @@ -1,6 +1,6 @@ project( 'evince', ['c', 'cpp'], - version: '3.36.5', + version: '3.36.6', license: 'GPL2', default_options: 'buildtype=debugoptimized', meson_version: '>= 0.50.0', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evince-3.36.5/org.gnome.Evince.appdata.xml.in new/evince-3.36.6/org.gnome.Evince.appdata.xml.in --- old/evince-3.36.5/org.gnome.Evince.appdata.xml.in 2020-06-11 14:05:32.000000000 +0200 +++ new/evince-3.36.6/org.gnome.Evince.appdata.xml.in 2020-06-19 02:25:35.000000000 +0200 @@ -82,6 +82,12 @@ <content_attribute id="money-gambling">none</content_attribute> </content_rating> <releases> + <release version="3.36.6" date="2020-06-18"> + <issues> + <issue url="https://gitlab.gnome.org/GNOME/evince/issues/1426">#1426</issue> + <issue url="https://gitlab.gnome.org/GNOME/evince/issues/1429">#1429</issue> + </issues> + </release> <release version="3.36.5" date="2020-06-11" /> <release version="3.36.4" date="2020-06-09"> <issues>
