Hello community, here is the log from the commit of package snapper for openSUSE:Factory checked in at 2017-08-13 14:52:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/snapper (Old) and /work/SRC/openSUSE:Factory/.snapper.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "snapper" Sun Aug 13 14:52:36 2017 rev:94 rq:515202 version:0.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/snapper/snapper.changes 2017-05-20 10:11:25.238895194 +0200 +++ /work/SRC/openSUSE:Factory/.snapper.new/snapper.changes 2017-08-13 14:52:39.271816500 +0200 @@ -1,0 +2,7 @@ +Thu Aug 3 18:12:17 UTC 2017 - [email protected] + +- fixed table formatting for non-ACSII characters (bsc#1051901) + (::mbrtowc behavior has been changed in glibc-2.22) +- version 0.5.1 + +------------------------------------------------------------------- Old: ---- snapper-0.5.0.tar.bz2 New: ---- snapper-0.5.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ snapper.spec ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:40.835597086 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:40.855594280 +0200 @@ -17,7 +17,7 @@ Name: snapper -Version: 0.5.0 +Version: 0.5.1 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build Source: snapper-%{version}.tar.bz2 ++++++ debian.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/debian/changelog new/debian/changelog --- old/debian/changelog 2017-05-10 12:15:56.325559246 +0200 +++ new/debian/changelog 2017-08-08 16:28:59.727509074 +0200 @@ -1,3 +1,9 @@ +snapper (0.5.1) stable; urgency=low + + * Updated to version 0.5.1 + + -- Ladislav Slezák <[email protected]> Thu, 03 Aug 2017 20:10:49 +0200 + snapper (0.5.0-0) stable; urgency=low * Updated to version 0.5.0 ++++++ snapper-0.5.0.tar.bz2 -> snapper-0.5.1.tar.bz2 ++++++ ++++ 1616 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/snapper-0.5.0/VERSION new/snapper-0.5.1/VERSION --- old/snapper-0.5.0/VERSION 2017-05-10 12:15:56.000000000 +0200 +++ new/snapper-0.5.1/VERSION 2017-08-08 16:28:59.000000000 +0200 @@ -1 +1 @@ -0.5.0 +0.5.1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/snapper-0.5.0/client/utils/text.cc new/snapper-0.5.1/client/utils/text.cc --- old/snapper-0.5.0/client/utils/text.cc 2017-02-06 15:57:28.000000000 +0100 +++ new/snapper-0.5.1/client/utils/text.cc 2017-08-08 16:28:59.000000000 +0200 @@ -65,6 +65,9 @@ s_bytes -= c_bytes; ptr += c_bytes; + + // end of string + if (s_bytes == 0) break; } return s_cols; @@ -142,6 +145,9 @@ s_bytes -= c_bytes; ptr += c_bytes; + + // end of string + if (s_bytes == 0) break; } if (eptr == NULL) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/snapper-0.5.0/compile new/snapper-0.5.1/compile --- old/snapper-0.5.0/compile 2017-05-10 12:34:25.000000000 +0200 +++ new/snapper-0.5.1/compile 2017-08-08 16:30:10.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-10-14.11; # UTC +scriptversion=2016-01-11.22; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2017 Free Software Foundation, Inc. # Written by Tom Tromey <[email protected]>. # # This program is free software; you can redistribute it and/or modify @@ -255,7 +255,8 @@ echo "compile $scriptversion" exit $? ;; - cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ + icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac @@ -342,6 +343,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/snapper-0.5.0/missing new/snapper-0.5.1/missing --- old/snapper-0.5.0/missing 2017-05-10 12:34:25.000000000 +0200 +++ new/snapper-0.5.1/missing 2017-08-08 16:30:10.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2013-10-28.13; # UTC +scriptversion=2016-01-11.22; # UTC -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2017 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard <[email protected]>, 1996. # This program is free software; you can redistribute it and/or modify @@ -210,6 +210,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/snapper-0.5.0/po/da.po new/snapper-0.5.1/po/da.po --- old/snapper-0.5.0/po/da.po 2017-02-06 15:57:28.000000000 +0100 +++ new/snapper-0.5.1/po/da.po 2017-06-08 18:03:11.000000000 +0200 @@ -7,15 +7,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-10-09 16:24+0200\n" -"PO-Revision-Date: 2015-10-13 18:00+0200\n" -"Last-Translator: Martin Schlander <[email protected]>\n" -"Language-Team: Danish <http://10n.opensuse.org/projects/snapper/master/da/>\n" +"PO-Revision-Date: 2017-06-08 13:01+0000\n" +"Last-Translator: scootergrisen <[email protected]>\n" +"Language-Team: Danish <https://l10n.opensuse.org/projects/snapper/master/da/>" +"\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.3\n" +"X-Generator: Weblate 2.6\n" #: ../client/snapper.cc:457 msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." @@ -54,8 +55,7 @@ #: ../client/snapper.cc:1094 msgid "\t--extensions, -x <options>\tExtra options passed to the diff command." msgstr "" -"\t--extensions, -x <tilvalg>\t\tEkstra tilvalg som sendes til diff-" -"kommandoen." +"\t--extensions, -x <tilvalg>\tEkstra tilvalg som sendes til diff-kommandoen." #: ../client/snapper.cc:274 msgid "\t--fstype, -f <fstype>\t\tManually set filesystem type." @@ -99,11 +99,11 @@ #: ../client/snapper.cc:1585 msgid "\t--root, -r <path>\t\tOperate on target root (works only without DBus)." -msgstr "" +msgstr "\t--root, -r <sti>\t\tOperer på målrod (virker kun uden DBus)." #: ../client/snapper.cc:884 msgid "\t--sync, -s\t\t\tSync after deletion." -msgstr "" +msgstr "\t--sync, -s\t\t\tSynkroniser efter sletning." #: ../client/snapper.cc:1582 msgid "\t--table-style, -t <style>\tTable style (integer)." @@ -589,7 +589,7 @@ #: ../client/snapper.cc:1050 msgid "Maybe you forgot the delimiter '..' between the snapshot numbers." -msgstr "" +msgstr "Måske glemte du afgrænseren '..' mellem øjebliksbilledsnumrene." #: ../client/utils/GetOpts.cc:68 #, c-format @@ -607,7 +607,7 @@ #: ../client/misc.cc:88 msgid "Missing delimiter '..' between snapshot numbers." -msgstr "" +msgstr "Manglende afgrænser '..' mellem øjebliksbilledsnumre." #: ../client/snapper.cc:778 msgid "Missing or invalid pre-number." @@ -668,6 +668,8 @@ #: ../client/snapper.cc:1823 msgid "The config 'root' does not exist. Likely snapper is not configured." msgstr "" +"Konfigurationen 'root' findes ikke. Snapper er sandsynligvis ikke " +"konfigureret." #: ../client/snapper.cc:1694 ../client/snapper.cc:1714 #: ../client/snapper.cc:1727 ../client/utils/GetOpts.cc:61 @@ -779,7 +781,7 @@ #: ../client/snapper.cc:1693 msgid "root argument can be used only together with no-dbus." -msgstr "" +msgstr "root-argumentet kan kun bruges sammen med no-dbus." #: ../client/snapper.cc:1574 msgid "usage: snapper [--global-options] <command> [--command-options] [command-arguments]" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/snapper-0.5.0/po/lt.po new/snapper-0.5.1/po/lt.po --- old/snapper-0.5.0/po/lt.po 2017-02-06 15:57:28.000000000 +0100 +++ new/snapper-0.5.1/po/lt.po 2017-06-02 19:03:36.000000000 +0200 @@ -2,7 +2,6 @@ # Copyright (C) 2005 SUSE Linux Products GmbH. # Copyright (C) 2002 SuSE Linux AG. # Copyright (C) 2000, 2001 SuSE GmbH. -# # Jonas Gocentas <[email protected]>, 2001. # Linas Spraunius <[email protected]>, 2000. # Mindaugas Baranauskas <[email protected]>, 2009, 2010, 2011, 2013. @@ -11,17 +10,17 @@ "Project-Id-Version: LCN (@memory@)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-10-09 16:24+0200\n" -"PO-Revision-Date: 2015-10-25 13:41+0200\n" +"PO-Revision-Date: 2017-06-02 16:57+0000\n" "Last-Translator: Mindaugas Baranauskas <[email protected]>\n" "Language-Team: Lithuanian " -"<http://10n.opensuse.org/projects/snapper/master/lt/>\n" +"<https://l10n.opensuse.org/projects/snapper/master/lt/>\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"(n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 2.3\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || " +"n%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" +"X-Generator: Weblate 2.6\n" #: ../client/snapper.cc:457 msgid "\t--all-configs, -a\t\tList snapshots from all accessible configs." @@ -324,7 +323,7 @@ #: ../client/snapper.cc:1364 ../client/snapper.cc:1371 #: ../client/snapper.cc:1382 ../client/snapper.cc:1389 -#, fuzzy, c-format +#, c-format, fuzzy msgid "(Snapshot %d.)" msgstr "Rinkmena „%s“ nerasta." @@ -427,12 +426,12 @@ msgstr "Konfigūracija" #: ../client/snapper.cc:1757 -#, fuzzy, c-format +#, c-format, fuzzy msgid "Config '%s' is invalid." msgstr "Konfigūracija naudojama." #: ../client/snapper.cc:1751 -#, fuzzy, c-format +#, c-format, fuzzy msgid "Config '%s' not found." msgstr "Rinkmena „%s“ nerasta." @@ -473,7 +472,7 @@ msgstr "" #: ../client/snapper.cc:1385 -#, fuzzy, c-format +#, c-format, fuzzy msgid "Creating read-write snapshot of snapshot %d." msgstr "Klaida kuriant momentinę kopiją." @@ -495,7 +494,7 @@ msgstr "Klaida bandant pašalinti momentinę kopiją." #: ../client/commands.cc:274 -#, fuzzy, c-format +#, c-format, fuzzy msgid "Deleting snapshot from %s:" msgid_plural "Deleting snapshots from %s:" msgstr[0] "Klaida bandant pašalinti momentinę kopiją." @@ -530,7 +529,7 @@ msgstr "Nesėkmė" #: ../client/errors.cc:87 -#, fuzzy, c-format +#, c-format, fuzzy msgid "Failure (%s)." msgstr "Nesėkmė" @@ -540,12 +539,12 @@ msgstr "Rinkmena „%s“ nerasta." #: ../client/errors.cc:64 -#, fuzzy, c-format +#, c-format, fuzzy msgid "IO Error (%s)." msgstr "Skaitymo/rašymo klaida." #: ../client/snapper.cc:1793 -#, fuzzy, c-format +#, c-format, fuzzy msgid "IO error (%s)." msgstr "Skaitymo/rašymo klaida." @@ -670,7 +669,7 @@ msgstr "" #: ../client/misc.cc:55 -#, fuzzy, c-format +#, c-format, fuzzy msgid "Snapshot '%u' not found." msgstr "Rinkmena „%s“ nerasta." @@ -729,7 +728,7 @@ msgstr "Nežinomi momentinių kopijų tipai." #: ../client/snapper.cc:1676 -#, fuzzy, c-format +#, c-format, fuzzy msgid "Use an integer number from %d to %d." msgstr "Naudokite sveikąjį skaičių iš intervalo nuo %d iki %d" @@ -753,7 +752,7 @@ #: ../client/snapper.cc:384 msgid "Value" -msgstr "" +msgstr "Reikšmė" #: ../client/snapper.cc:1212 #, c-format @@ -800,7 +799,9 @@ #: ../client/snapper.cc:1574 msgid "usage: snapper [--global-options] <command> [--command-options] [command-arguments]" -msgstr "naudojimas: snapper [--visuotinės-parinktys] <komanda> [--komandos-parinktys] [komandos-argumentai]" +msgstr "" +"naudojimas: snapper [--visuotinės-parinktys] <komanda> [--komandos-parinktys]" +" [komandos-argumentai]" #~ msgid "Unknown file." #~ msgstr "Nežinoma rinkmena." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/snapper-0.5.0/test-driver new/snapper-0.5.1/test-driver --- old/snapper-0.5.0/test-driver 2017-05-10 12:34:26.000000000 +0200 +++ new/snapper-0.5.1/test-driver 2017-08-08 16:30:11.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # test-driver - basic testsuite driver script. -scriptversion=2013-07-13.22; # UTC +scriptversion=2016-01-11.22; # UTC -# Copyright (C) 2011-2014 Free Software Foundation, Inc. +# Copyright (C) 2011-2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -148,6 +148,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: ++++++ snapper-Debian_7.0.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:42.439372061 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:42.439372061 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-Debian_8.0.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:42.571353542 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:42.587351298 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-xUbuntu_14.04.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:42.675338952 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:42.679338391 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-xUbuntu_14.10.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:42.807320434 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:42.807320434 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-xUbuntu_15.04.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:42.935302477 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:42.939301915 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-xUbuntu_15.10.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:42.999293498 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:43.007292376 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-xUbuntu_16.04.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:43.163270490 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:43.167269929 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-xUbuntu_16.10.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:43.279254216 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:43.291252533 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2 ++++++ snapper-xUbuntu_17.04.dsc ++++++ --- /var/tmp/diff_new_pack.nPiBoY/_old 2017-08-13 14:52:43.487225036 +0200 +++ /var/tmp/diff_new_pack.nPiBoY/_new 2017-08-13 14:52:43.499223353 +0200 @@ -1,6 +1,6 @@ Format: 1.0 Source: snapper -Version: 0.5.0 +Version: 0.5.1 Binary: snapper Maintainer: Arvin Schnell <[email protected]> Architecture: any @@ -11,4 +11,4 @@ # 423a20ae6e882d44e65a4eff97f2269f 630905 snapper-0.2.8.tar.gz # Files: -7e22a43fa50be3402d57ab46745a5106 568609 snapper-0.5.0.tar.bz2 +609b6d3ee1d6acda52864bed2a1bd4d8 572455 snapper-0.5.1.tar.bz2
