Hello community, here is the log from the commit of package libkexiv2 for openSUSE:Factory checked in at 2019-05-14 13:26:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkexiv2 (Old) and /work/SRC/openSUSE:Factory/.libkexiv2.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkexiv2" Tue May 14 13:26:05 2019 rev:107 rq:702315 version:19.04.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libkexiv2/libkexiv2.changes 2019-04-26 22:50:54.541445290 +0200 +++ /work/SRC/openSUSE:Factory/.libkexiv2.new.5148/libkexiv2.changes 2019-05-14 13:26:06.614694566 +0200 @@ -1,0 +2,11 @@ +Fri May 10 05:37:18 UTC 2019 - [email protected] + +- Update to 19.04.1 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.04.1.php +- Changes since 19.04.0: + * use nullptr + * make gcc happy about indentation + +------------------------------------------------------------------- Old: ---- libkexiv2-19.04.0.tar.xz New: ---- libkexiv2-19.04.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkexiv2.spec ++++++ --- /var/tmp/diff_new_pack.rRhSM5/_old 2019-05-14 13:26:07.338696172 +0200 +++ /var/tmp/diff_new_pack.rRhSM5/_new 2019-05-14 13:26:07.338696172 +0200 @@ -22,7 +22,7 @@ # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} Name: libkexiv2 -Version: 19.04.0 +Version: 19.04.1 Release: 0 Summary: Library to manipulate picture meta data License: GPL-2.0-or-later ++++++ libkexiv2-19.04.0.tar.xz -> libkexiv2-19.04.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkexiv2-19.04.0/src/kexiv2data.cpp new/libkexiv2-19.04.1/src/kexiv2data.cpp --- old/libkexiv2-19.04.0/src/kexiv2data.cpp 2018-12-30 16:39:00.000000000 +0100 +++ new/libkexiv2-19.04.1/src/kexiv2data.cpp 2019-04-14 01:05:16.000000000 +0200 @@ -35,7 +35,7 @@ { KExiv2Data::KExiv2Data() - : d(0) + : d(nullptr) { } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkexiv2-19.04.0/src/kexiv2exif.cpp new/libkexiv2-19.04.1/src/kexiv2exif.cpp --- old/libkexiv2-19.04.0/src/kexiv2exif.cpp 2018-12-30 16:39:00.000000000 +0100 +++ new/libkexiv2-19.04.1/src/kexiv2exif.cpp 2019-04-14 01:05:16.000000000 +0200 @@ -1066,7 +1066,7 @@ const Exiv2::GroupInfo* gi = Exiv2::ExifTags::groupList(); - while (gi->tagList_ != 0) + while (gi->tagList_ != nullptr) { if (QString::fromLatin1(gi->ifdName_) != QString::fromLatin1("Makernote")) { @@ -1118,7 +1118,7 @@ const Exiv2::GroupInfo* gi = Exiv2::ExifTags::groupList(); - while (gi->tagList_ != 0) + while (gi->tagList_ != nullptr) { if (QString::fromLatin1(gi->ifdName_) == QString::fromLatin1("Makernote")) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkexiv2-19.04.0/src/kexiv2iptc.cpp new/libkexiv2-19.04.1/src/kexiv2iptc.cpp --- old/libkexiv2-19.04.0/src/kexiv2iptc.cpp 2018-12-30 16:39:00.000000000 +0100 +++ new/libkexiv2-19.04.1/src/kexiv2iptc.cpp 2019-04-14 01:05:16.000000000 +0200 @@ -93,7 +93,7 @@ if (addIrbHeader) { - c2 = Exiv2::Photoshop::setIptcIrb(0, 0, iptc); + c2 = Exiv2::Photoshop::setIptcIrb(nullptr, 0, iptc); } else { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkexiv2-19.04.0/src/kexiv2previews.cpp new/libkexiv2-19.04.1/src/kexiv2previews.cpp --- old/libkexiv2-19.04.0/src/kexiv2previews.cpp 2018-12-30 16:39:00.000000000 +0100 +++ new/libkexiv2-19.04.1/src/kexiv2previews.cpp 2019-04-14 01:05:16.000000000 +0200 @@ -41,7 +41,7 @@ Private() { - manager = 0; + manager = nullptr; } ~Private() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkexiv2-19.04.0/tests/setxmpface.cpp new/libkexiv2-19.04.1/tests/setxmpface.cpp --- old/libkexiv2-19.04.0/tests/setxmpface.cpp 2018-12-30 16:39:00.000000000 +0100 +++ new/libkexiv2-19.04.1/tests/setxmpface.cpp 2019-04-14 01:05:16.000000000 +0200 @@ -170,7 +170,7 @@ else removeFaceTags(meta,bag.toLatin1().constData()); - meta.applyChanges(); + meta.applyChanges(); QString recoverName = QString::fromLatin1("Xmp.mwg-rs.Regions/mwg-rs:RegionList[1]/mwg-rs:Name");
