Hello community, here is the log from the commit of package kdav for openSUSE:Factory checked in at 2018-09-13 23:55:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdav (Old) and /work/SRC/openSUSE:Factory/.kdav.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdav" Thu Sep 13 23:55:32 2018 rev:18 rq:633912 version:18.08.1 Changes: -------- --- /work/SRC/openSUSE:Factory/kdav/kdav.changes 2018-08-22 14:12:41.033261322 +0200 +++ /work/SRC/openSUSE:Factory/.kdav.new/kdav.changes 2018-09-13 23:55:35.730219526 +0200 @@ -1,0 +2,11 @@ +Thu Sep 06 18:42:59 UTC 2018 - [email protected] + +- Update to 18.08.1 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-18.08.1.php +- Changes since 18.08.0: + * need for static_cast to fix the test. + * Fix noMatchingMime test. + +------------------------------------------------------------------- Old: ---- kdav-18.08.0.tar.xz New: ---- kdav-18.08.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdav.spec ++++++ --- /var/tmp/diff_new_pack.Y5I7Ig/_old 2018-09-13 23:55:36.454218972 +0200 +++ /var/tmp/diff_new_pack.Y5I7Ig/_new 2018-09-13 23:55:36.458218969 +0200 @@ -19,7 +19,7 @@ %bcond_without lang Name: kdav -Version: 18.08.0 +Version: 18.08.1 Release: 0 Summary: DAV protocol implementation License: GPL-2.0-only ++++++ kdav-18.08.0.tar.xz -> kdav-18.08.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-18.08.0/CMakeLists.txt new/kdav-18.08.1/CMakeLists.txt --- old/kdav-18.08.0/CMakeLists.txt 2018-08-10 02:15:46.000000000 +0200 +++ new/kdav-18.08.1/CMakeLists.txt 2018-09-04 03:08:28.000000000 +0200 @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.0) -set(PIM_VERSION "5.9.0") +set(PIM_VERSION "5.9.1") project(libkdav VERSION ${PIM_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-18.08.0/autotests/davitemslistjobtest.cpp new/kdav-18.08.1/autotests/davitemslistjobtest.cpp --- old/kdav-18.08.0/autotests/davitemslistjobtest.cpp 2018-08-03 18:40:51.000000000 +0200 +++ new/kdav-18.08.1/autotests/davitemslistjobtest.cpp 2018-08-17 07:12:29.000000000 +0200 @@ -22,6 +22,7 @@ #include <KDAV/DavItemsListJob> #include <KDAV/DavUrl> #include <KDAV/EtagCache> +#include <KDAV/DavError> #include <QTest> @@ -31,13 +32,14 @@ QUrl url(QStringLiteral("http://localhost/collection")); KDAV::DavUrl davUrl(url, KDAV::CardDav); + KDAV::Error error(KDAV::ErrorNumber::ERR_ITEMLIST_NOMIMETYPE, 0, QString(), 0); auto job = new KDAV::DavItemsListJob(davUrl, cache); job->setContentMimeTypes(QStringList() << QStringLiteral("mime/invalid1") << QStringLiteral("mime/invalid2")); job->exec(); - QCOMPARE(job->error(), 431); - QCOMPARE(job->errorText(), QStringLiteral("There was a problem with the request. The requested mimetypes are not supported.")); + QCOMPARE(job->error(), static_cast<int>(KDAV::ErrorNumber::ERR_ITEMLIST_NOMIMETYPE)); + QCOMPARE(job->errorText(), error.errorText()); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-18.08.0/po/ko/libkdav.po new/kdav-18.08.1/po/ko/libkdav.po --- old/kdav-18.08.0/po/ko/libkdav.po 2018-08-10 02:15:46.000000000 +0200 +++ new/kdav-18.08.1/po/ko/libkdav.po 2018-09-04 03:08:27.000000000 +0200 @@ -1,15 +1,15 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Shinjo Park <[email protected]>, 2013, 2014, 2015, 2016, 2017. +# Shinjo Park <[email protected]>, 2013, 2014, 2015, 2016, 2017, 2018. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-04-21 03:40+0200\n" -"PO-Revision-Date: 2017-12-03 22:15+0100\n" +"PO-Revision-Date: 2018-08-15 12:26+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" -"Language-Team: Korean <[email protected]>\n" +"Language-Team: Korean <[email protected]>\n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,10 +150,7 @@ msgstr "요청에 문제가 있습니다." #: common/daverror.cpp:144 -#, fuzzy, kde-format -#| msgid "" -#| "There was a problem with the request. The requested mimetypes are not " -#| "supported." +#, kde-format msgid "" "There was a problem with the request. The requested MIME types are not " "supported." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-18.08.0/po/zh_CN/libkdav.po new/kdav-18.08.1/po/zh_CN/libkdav.po --- old/kdav-18.08.0/po/zh_CN/libkdav.po 2018-08-10 02:15:46.000000000 +0200 +++ new/kdav-18.08.1/po/zh_CN/libkdav.po 2018-09-04 03:08:28.000000000 +0200 @@ -8,8 +8,8 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-04-21 03:40+0200\n" -"PO-Revision-Date: 2018-07-24 08:46\n" -"Last-Translator: guoyunhebrave <[email protected]>\n" +"PO-Revision-Date: 2018-08-30 13:16\n" +"Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n"
