Hello community,

here is the log from the commit of package libkcddb for openSUSE:Factory 
checked in at 2018-08-22 14:14:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkcddb (Old)
 and      /work/SRC/openSUSE:Factory/.libkcddb.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkcddb"

Wed Aug 22 14:14:59 2018 rev:22 rq:630159 version:18.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkcddb/libkcddb.changes        2018-07-18 
22:44:49.488774114 +0200
+++ /work/SRC/openSUSE:Factory/.libkcddb.new/libkcddb.changes   2018-08-22 
14:15:02.249596064 +0200
@@ -1,0 +2,21 @@
+Thu Aug 16 22:07:10 UTC 2018 - christo...@krop.fr
+
+- Update to 18.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.0.php
+- Changes since 18.07.80:
+  * Fix tests 
+  * Fix compile warnings 
+
+-------------------------------------------------------------------
+Thu Jul 26 13:00:58 UTC 2018 - lbeltr...@kde.org
+
+- Update to 18.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.07.80.php
+- Changes since 18.04.3:
+  * None
+
+-------------------------------------------------------------------

Old:
----
  libkcddb-18.04.3.tar.xz

New:
----
  libkcddb-18.08.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libkcddb.spec ++++++
--- /var/tmp/diff_new_pack.pbDT9G/_old  2018-08-22 14:15:02.669597060 +0200
+++ /var/tmp/diff_new_pack.pbDT9G/_new  2018-08-22 14:15:02.673597069 +0200
@@ -19,11 +19,11 @@
 %bcond_without lang
 
 Name:           libkcddb
-Version:        18.04.3
+Version:        18.08.0
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
-%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
+%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 Summary:        CDDB library for KDE Applications
 License:        GPL-2.0-or-later
 Group:          System/GUI/KDE

++++++ libkcddb-18.04.3.tar.xz -> libkcddb-18.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/kcmcddb/cddbconfigwidget.h 
new/libkcddb-18.08.0/kcmcddb/cddbconfigwidget.h
--- old/libkcddb-18.04.3/kcmcddb/cddbconfigwidget.h     2017-06-02 
07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/kcmcddb/cddbconfigwidget.h     2018-07-21 
19:13:12.000000000 +0200
@@ -28,7 +28,7 @@
 
   public:
 
-    CDDBConfigWidget(QWidget * parent = 0);
+    CDDBConfigWidget(QWidget * parent = nullptr);
 
   protected Q_SLOTS:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/libkcddb/asynchttplookup.cpp 
new/libkcddb-18.08.0/libkcddb/asynchttplookup.cpp
--- old/libkcddb-18.04.3/libkcddb/asynchttplookup.cpp   2017-06-02 
07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/libkcddb/asynchttplookup.cpp   2018-07-21 
19:13:12.000000000 +0200
@@ -131,7 +131,7 @@
 
     KIO::TransferJob* job = KIO::get( cgiURL_, KIO::NoReload, 
KIO::HideProgressInfo );
 
-    if ( 0 == job )
+    if ( nullptr == job )
       return ServerError;
 
     connect( job, SIGNAL(data(KIO::Job*,QByteArray)),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/libkcddb/cddbplookup.cpp 
new/libkcddb-18.08.0/libkcddb/cddbplookup.cpp
--- old/libkcddb-18.04.3/libkcddb/cddbplookup.cpp       2017-06-02 
07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/libkcddb/cddbplookup.cpp       2018-07-21 
19:13:12.000000000 +0200
@@ -28,7 +28,7 @@
 {
   CDDBPLookup::CDDBPLookup()
     : Lookup()
-    , socket_(0)
+    , socket_(nullptr)
   {
 
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/libkcddb/client.cpp 
new/libkcddb-18.08.0/libkcddb/client.cpp
--- old/libkcddb-18.04.3/libkcddb/client.cpp    2017-06-02 07:31:07.000000000 
+0200
+++ new/libkcddb-18.08.0/libkcddb/client.cpp    2018-07-21 19:13:12.000000000 
+0200
@@ -46,8 +46,8 @@
     public:
 
       Private()
-        : cdInfoLookup(0),
-          cdInfoSubmit(0),
+        : cdInfoLookup(nullptr),
+          cdInfoSubmit(nullptr),
           block( true )
       {}
 
@@ -134,7 +134,7 @@
 
     // just in case we have an info lookup hanging around, prevent mem leakage
     delete d->cdInfoLookup;
-    d->cdInfoLookup = 0;
+    d->cdInfoLookup = nullptr;
     qDeleteAll(d->pendingLookups);
     d->pendingLookups.clear();
 
@@ -157,7 +157,7 @@
         }
 
         delete d->cdInfoLookup;
-        d->cdInfoLookup = 0L;
+        d->cdInfoLookup = nullptr;
       }
 #endif
 
@@ -181,7 +181,7 @@
         }
 
         delete d->cdInfoLookup;
-        d->cdInfoLookup = 0L;
+        d->cdInfoLookup = nullptr;
       }
 
       return r;
@@ -239,7 +239,7 @@
     if ( d->cdInfoLookup ) // in case someone called lookup() while finished() 
was being processed, and deleted cdInfoLookup.
     {
       d->cdInfoLookup->deleteLater();
-      d->cdInfoLookup = 0L;
+      d->cdInfoLookup = nullptr;
     }
 
     if ( Success == r )
@@ -260,7 +260,7 @@
     emit finished( r );
 
     d->cdInfoSubmit->deleteLater();
-    d->cdInfoSubmit=0L;
+    d->cdInfoSubmit=nullptr;
   }
 
     Result
@@ -334,7 +334,7 @@
     if ( blockingMode() )
     {
       delete d->cdInfoSubmit;
-      d->cdInfoSubmit = 0L;
+      d->cdInfoSubmit = nullptr;
     }
 
     return r;
@@ -353,7 +353,7 @@
       if ( Success != r )
       {
         delete d->cdInfoLookup;
-        d->cdInfoLookup = 0L;
+        d->cdInfoLookup = nullptr;
       }
 
       return r;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkcddb-18.04.3/libkcddb/musicbrainz/asyncmusicbrainzlookup.cpp 
new/libkcddb-18.08.0/libkcddb/musicbrainz/asyncmusicbrainzlookup.cpp
--- old/libkcddb-18.04.3/libkcddb/musicbrainz/asyncmusicbrainzlookup.cpp        
2017-06-02 07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/libkcddb/musicbrainz/asyncmusicbrainzlookup.cpp        
2018-07-21 19:13:12.000000000 +0200
@@ -29,7 +29,7 @@
   class LookupThread : public QThread
   {
   public:
-    void run()
+    void run() override
     {
       MusicBrainzLookup lookup;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkcddb-18.04.3/libkcddb/musicbrainz/asyncmusicbrainzlookup.h 
new/libkcddb-18.08.0/libkcddb/musicbrainz/asyncmusicbrainzlookup.h
--- old/libkcddb-18.04.3/libkcddb/musicbrainz/asyncmusicbrainzlookup.h  
2017-06-02 07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/libkcddb/musicbrainz/asyncmusicbrainzlookup.h  
2018-07-21 19:13:12.000000000 +0200
@@ -36,7 +36,7 @@
       AsyncMusicBrainzLookup();
       virtual ~AsyncMusicBrainzLookup();
 
-      Result lookup( const QString &, uint, const TrackOffsetList & );
+      Result lookup( const QString &, uint, const TrackOffsetList & ) override;
 
       CDInfoList lookupResponse() const;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkcddb-18.04.3/libkcddb/musicbrainz/musicbrainzlookup.cpp 
new/libkcddb-18.08.0/libkcddb/musicbrainz/musicbrainzlookup.cpp
--- old/libkcddb-18.04.3/libkcddb/musicbrainz/musicbrainzlookup.cpp     
2017-06-02 07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/libkcddb/musicbrainz/musicbrainzlookup.cpp     
2018-07-21 19:13:12.000000000 +0200
@@ -157,7 +157,7 @@
                     // where the title on the credits of track 18 are
                     // "Bara om min älskade väntar", but the recording
                     // has title "Men bara om min älskade"
-                    if(Recording && Track->ArtistCredit() == 0)
+                    if(Recording && Track->ArtistCredit() == nullptr)
                       track.set(Artist, 
artistFromCreditList(Recording->ArtistCredit()));
                     else
                       track.set(Artist, 
artistFromCreditList(Track->ArtistCredit()));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkcddb-18.04.3/libkcddb/musicbrainz/musicbrainzlookup.h 
new/libkcddb-18.08.0/libkcddb/musicbrainz/musicbrainzlookup.h
--- old/libkcddb-18.04.3/libkcddb/musicbrainz/musicbrainzlookup.h       
2017-06-02 07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/libkcddb/musicbrainz/musicbrainzlookup.h       
2018-07-21 19:13:12.000000000 +0200
@@ -42,7 +42,7 @@
       virtual ~MusicBrainzLookup();
 
       // FIXME Only freedb lookup needs the first two arguments (host/port)
-      virtual Result lookup( const QString &, uint, const TrackOffsetList & );
+      Result lookup( const QString &, uint, const TrackOffsetList & ) override;
 
       static CDInfoList cacheFiles(const TrackOffsetList &, const Config& );
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/libkcddb/synchttplookup.cpp 
new/libkcddb-18.08.0/libkcddb/synchttplookup.cpp
--- old/libkcddb-18.04.3/libkcddb/synchttplookup.cpp    2017-06-02 
07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/libkcddb/synchttplookup.cpp    2018-07-21 
19:13:12.000000000 +0200
@@ -109,7 +109,7 @@
 
     KIO::TransferJob* job = KIO::get( cgiURL_, KIO::NoReload, 
KIO::HideProgressInfo );
 
-    if ( 0 == job )
+    if ( nullptr == job )
       return ServerError;
 
     QObject::connect( job, &KIO::TransferJob::data, [&](KIO::Job *, const 
QByteArray &data){ data_ += data; } );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/cs/libkcddb.po 
new/libkcddb-18.08.0/po/cs/libkcddb.po
--- old/libkcddb-18.04.3/po/cs/libkcddb.po      2018-07-10 02:09:18.000000000 
+0200
+++ new/libkcddb-18.08.0/po/cs/libkcddb.po      2018-08-10 02:08:41.000000000 
+0200
@@ -914,7 +914,7 @@
 #: libkcddb/genres.cpp:91
 #, kde-format
 msgid "Power Ballad"
-msgstr ""
+msgstr "Power Ballad"
 
 #: libkcddb/genres.cpp:92
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/da/kcmcddb.po 
new/libkcddb-18.08.0/po/da/kcmcddb.po
--- old/libkcddb-18.04.3/po/da/kcmcddb.po       2018-07-10 02:09:18.000000000 
+0200
+++ new/libkcddb-18.08.0/po/da/kcmcddb.po       2018-08-10 02:08:41.000000000 
+0200
@@ -147,7 +147,7 @@
 #: cddbconfigwidget.ui:161
 #, kde-format
 msgid "Email address:"
-msgstr "E-mail-adresse:"
+msgstr "E-mailadresse:"
 
 #. i18n: ectx: property (title), widget (QGroupBox, kcfg_FreedbSubmitTransport)
 #: cddbconfigwidget.ui:173
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/da/libkcddb.po 
new/libkcddb-18.08.0/po/da/libkcddb.po
--- old/libkcddb-18.04.3/po/da/libkcddb.po      2018-07-10 02:09:18.000000000 
+0200
+++ new/libkcddb-18.08.0/po/da/libkcddb.po      2018-08-10 02:08:41.000000000 
+0200
@@ -150,7 +150,7 @@
 #: kcmcddb/cddbconfigwidget.ui:161
 #, kde-format
 msgid "Email address:"
-msgstr "E-mail-adresse:"
+msgstr "E-mailadresse:"
 
 #. i18n: ectx: property (title), widget (QGroupBox, kcfg_FreedbSubmitTransport)
 #: kcmcddb/cddbconfigwidget.ui:173
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/nn/kcmcddb.po 
new/libkcddb-18.08.0/po/nn/kcmcddb.po
--- old/libkcddb-18.04.3/po/nn/kcmcddb.po       2018-07-10 02:09:19.000000000 
+0200
+++ new/libkcddb-18.08.0/po/nn/kcmcddb.po       2018-08-10 02:08:41.000000000 
+0200
@@ -1,21 +1,21 @@
 # Translation of kcmcddb to Norwegian Nynorsk
 #
 # Gaute Hvoslef Kvalnes <ga...@verdsveven.com>, 2004, 2005.
-# Karl Ove Hufthammer <k...@huftis.org>, 2005, 2007, 2008.
+# Karl Ove Hufthammer <k...@huftis.org>, 2005, 2007, 2008, 2018.
 # Eirik U. Birkeland <eir...@gmail.com>, 2008, 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: kcmcddb\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:16+0100\n"
-"PO-Revision-Date: 2009-06-17 00:09+0200\n"
-"Last-Translator: Eirik U. Birkeland <eir...@gmail.com>\n"
+"PO-Revision-Date: 2018-07-15 14:46+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
 "Language: nn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 0.3\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
@@ -24,7 +24,7 @@
 #: cddbconfigwidget.cpp:52
 #, kde-format
 msgid "Cache Locations"
-msgstr "Mellomlagerstader"
+msgstr "Mellomlagerstadar"
 
 #: cddbconfigwidget.cpp:87
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/zh_CN/kcmcddb.po 
new/libkcddb-18.08.0/po/zh_CN/kcmcddb.po
--- old/libkcddb-18.04.3/po/zh_CN/kcmcddb.po    2018-07-10 02:09:19.000000000 
+0200
+++ new/libkcddb-18.08.0/po/zh_CN/kcmcddb.po    2018-08-10 02:08:42.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:16+0100\n"
-"PO-Revision-Date: 2018-07-03 17:39\n"
+"PO-Revision-Date: 2018-07-24 08:45\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/zh_CN/libkcddb.po 
new/libkcddb-18.08.0/po/zh_CN/libkcddb.po
--- old/libkcddb-18.04.3/po/zh_CN/libkcddb.po   2018-07-10 02:09:19.000000000 
+0200
+++ new/libkcddb-18.08.0/po/zh_CN/libkcddb.po   2018-08-10 02:08:42.000000000 
+0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-21 03:04+0100\n"
-"PO-Revision-Date: 2018-07-03 17:39\n"
+"PO-Revision-Date: 2018-07-24 08:45\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/zh_TW/kcmcddb.po 
new/libkcddb-18.08.0/po/zh_TW/kcmcddb.po
--- old/libkcddb-18.04.3/po/zh_TW/kcmcddb.po    2018-07-10 02:09:19.000000000 
+0200
+++ new/libkcddb-18.08.0/po/zh_TW/kcmcddb.po    2018-08-10 02:08:42.000000000 
+0200
@@ -213,6 +213,3 @@
 #, kde-format
 msgid "Incorrect Email Settings"
 msgstr "錯誤的電子郵件設定"
-
-#~ msgid "&Port:"
-#~ msgstr "埠號(&P):"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/po/zh_TW/libkcddb.po 
new/libkcddb-18.08.0/po/zh_TW/libkcddb.po
--- old/libkcddb-18.04.3/po/zh_TW/libkcddb.po   2018-07-10 02:09:19.000000000 
+0200
+++ new/libkcddb-18.08.0/po/zh_TW/libkcddb.po   2018-08-10 02:08:42.000000000 
+0200
@@ -1173,9 +1173,3 @@
 #, kde-format
 msgid "%1 (disc %2)"
 msgstr "%1(碟片 %2)"
-
-#~ msgid "Ok"
-#~ msgstr "確定"
-
-#~ msgid "Cancel"
-#~ msgstr "取消"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/tests/asynccddblookuptest.cpp 
new/libkcddb-18.08.0/tests/asynccddblookuptest.cpp
--- old/libkcddb-18.04.3/tests/asynccddblookuptest.cpp  2017-06-02 
07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/tests/asynccddblookuptest.cpp  2018-07-21 
19:13:12.000000000 +0200
@@ -63,7 +63,7 @@
 
   // If revision doesn't match, test probably needs to be updated
   // See: http://www.freedb.org/freedb/jazz/a1107d0a for updated data
-  QCOMPARE(m_info.get(QString::fromUtf8("revision")).toInt(), 7);
+  QCOMPARE(m_info.get(QString::fromUtf8("revision")).toInt(), 8);
 
   QCOMPARE(m_info.get(Artist).toString(),QString::fromUtf8("Kruder & 
Dorfmeister"));
   QCOMPARE(m_info.get(Title).toString(),QString::fromUtf8("The K&D Sessions 
(Part One)"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-18.04.3/tests/asynchttplookuptest.cpp 
new/libkcddb-18.08.0/tests/asynchttplookuptest.cpp
--- old/libkcddb-18.04.3/tests/asynchttplookuptest.cpp  2017-06-02 
07:31:07.000000000 +0200
+++ new/libkcddb-18.08.0/tests/asynchttplookuptest.cpp  2018-07-21 
19:13:12.000000000 +0200
@@ -64,7 +64,7 @@
 
   // If revision doesn't match, test probably needs to be updated
   // See: http://www.freedb.org/freedb/jazz/a1107d0a for updated data
-  QCOMPARE(m_info.get(QString::fromUtf8("revision")).toInt(), 7);
+  QCOMPARE(m_info.get(QString::fromUtf8("revision")).toInt(), 8);
 
   QCOMPARE(m_info.get(Artist).toString(),QString::fromUtf8("Kruder & 
Dorfmeister"));
   QCOMPARE(m_info.get(Title).toString(),QString::fromUtf8("The K&D Sessions 
(Part One)"));


Reply via email to