Hello community,

here is the log from the commit of package kbookmarks for openSUSE:Factory 
checked in at 2019-11-12 11:42:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kbookmarks (Old)
 and      /work/SRC/openSUSE:Factory/.kbookmarks.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kbookmarks"

Tue Nov 12 11:42:23 2019 rev:72 rq:747089 version:5.64.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kbookmarks/kbookmarks.changes    2019-10-14 
13:34:21.190515379 +0200
+++ /work/SRC/openSUSE:Factory/.kbookmarks.new.2990/kbookmarks.changes  
2019-11-12 11:43:33.602608752 +0100
@@ -1,0 +2,10 @@
+Sun Nov  3 15:46:49 UTC 2019 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.64.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.64.0.php
+- Changes since 5.63.0:
+  * Use ECMGenerateExportHeader to manage deprecated API better
+
+-------------------------------------------------------------------

Old:
----
  kbookmarks-5.63.0.tar.xz
  kbookmarks-5.63.0.tar.xz.sig

New:
----
  kbookmarks-5.64.0.tar.xz
  kbookmarks-5.64.0.tar.xz.sig

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

Other differences:
------------------
++++++ kbookmarks.spec ++++++
--- /var/tmp/diff_new_pack.RU4T51/_old  2019-11-12 11:43:34.154609333 +0100
+++ /var/tmp/diff_new_pack.RU4T51/_new  2019-11-12 11:43:34.158609337 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Bookmarks5
-%define _tar_path 5.63
+%define _tar_path 5.64
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:           kbookmarks
-Version:        5.63.0
+Version:        5.64.0
 Release:        0
 Summary:        Framework for manipulating bookmarks in XBEL format
 License:        LGPL-2.1-or-later


++++++ kbookmarks-5.63.0.tar.xz -> kbookmarks-5.64.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/CMakeLists.txt 
new/kbookmarks-5.64.0/CMakeLists.txt
--- old/kbookmarks-5.63.0/CMakeLists.txt        2019-10-06 11:42:32.000000000 
+0200
+++ new/kbookmarks-5.64.0/CMakeLists.txt        2019-11-02 13:52:34.000000000 
+0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.63.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.63.0") # handled by release scripts
+set(KF5_VERSION "5.64.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.64.0") # handled by release scripts
 project(KBookmarks VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.63.0  NO_MODULE)
+find_package(ECM 5.64.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -17,15 +17,15 @@
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
-
-include(GenerateExportHeader)
-
+include(ECMGenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
 include(ECMAddQch)
 include(ECMPoQmTools)
 
+set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of 
deprecated API excluded from the build [default=0].")
+
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
@@ -55,6 +55,7 @@
 endif()
 add_definitions(-DQT_NO_FOREACH)
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
+add_definitions(-DQT_DEPRECATED_WARNINGS_SINCE=0x060000)
 
 add_subdirectory(src)
 if (BUILD_TESTING)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/docs/Doxyfile.local 
new/kbookmarks-5.64.0/docs/Doxyfile.local
--- old/kbookmarks-5.63.0/docs/Doxyfile.local   1970-01-01 01:00:00.000000000 
+0100
+++ new/kbookmarks-5.64.0/docs/Doxyfile.local   2019-11-02 13:52:34.000000000 
+0100
@@ -0,0 +1,7 @@
+### KApiDox Project-specific Overrides File
+
+# define so that deprecated API is not skipped
+PREDEFINED += \
+    "KBOOKMARKS_ENABLE_DEPRECATED_SINCE(x, y)=1" \
+    "KBOOKMARKS_BUILD_DEPRECATED_SINCE(x, y)=1" \
+    "KBOOKMARKS_DEPRECATED_VERSION(x, y, t)="
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/po/et/kbookmarks5_qt.po 
new/kbookmarks-5.64.0/po/et/kbookmarks5_qt.po
--- old/kbookmarks-5.63.0/po/et/kbookmarks5_qt.po       2019-10-06 
11:42:32.000000000 +0200
+++ new/kbookmarks-5.64.0/po/et/kbookmarks5_qt.po       2019-11-02 
13:52:34.000000000 +0100
@@ -7,20 +7,20 @@
 # Marek Laane <[email protected]>, 2003-2009.
 # Peeter Russak <[email protected]>, 2005.
 # Hasso Tepper <[email protected]>, 2005.
-# Marek Laane <[email protected]>, 2009, 2010, 2011, 2012, 2016.
+# Marek Laane <[email protected]>, 2009, 2010, 2011, 2012, 2016, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: kio4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-28 02:03+0000\n"
-"PO-Revision-Date: 2016-09-09 00:37+0300\n"
+"PO-Revision-Date: 2019-10-31 12:15+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
-"Language-Team: Estonian <[email protected]>\n"
+"Language-Team: Estonian <[email protected]>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 19.08.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Qt-Contexts: true\n"
 
@@ -226,6 +226,9 @@
 "\n"
 "Most likely you do not have keditbookmarks currently installed"
 msgstr ""
+"keditbookmarks'i käivitamine nurjus.\n"
+"\n"
+"Tõenäoliselt ei ole keditbookmarks veel paigaldatud"
 
 #: kbookmarkmanager.cpp:491
 #, qt-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/po/id/kbookmarks5_qt.po 
new/kbookmarks-5.64.0/po/id/kbookmarks5_qt.po
--- old/kbookmarks-5.63.0/po/id/kbookmarks5_qt.po       2019-10-06 
11:42:32.000000000 +0200
+++ new/kbookmarks-5.64.0/po/id/kbookmarks5_qt.po       2019-11-02 
13:52:34.000000000 +0100
@@ -10,7 +10,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.04.2\n"
 "X-Qt-Contexts: true\n"
 
 #: kbookmark.cpp:316
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/po/zh_CN/kbookmarks5_qt.po 
new/kbookmarks-5.64.0/po/zh_CN/kbookmarks5_qt.po
--- old/kbookmarks-5.63.0/po/zh_CN/kbookmarks5_qt.po    2019-10-06 
11:42:32.000000000 +0200
+++ new/kbookmarks-5.64.0/po/zh_CN/kbookmarks5_qt.po    2019-11-02 
13:52:34.000000000 +0100
@@ -14,7 +14,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2019-09-05 09:24\n"
+"PO-Revision-Date: 2019-10-09 09:45\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/src/CMakeLists.txt 
new/kbookmarks-5.64.0/src/CMakeLists.txt
--- old/kbookmarks-5.63.0/src/CMakeLists.txt    2019-10-06 11:42:32.000000000 
+0200
+++ new/kbookmarks-5.64.0/src/CMakeLists.txt    2019-11-02 13:52:34.000000000 
+0100
@@ -25,8 +25,15 @@
 ecm_qt_declare_logging_category(kbookmarks_SRCS HEADER kbookmarks_debug.h 
IDENTIFIER KBOOKMARKS_LOG CATEGORY_NAME kf5.kbookmarks)
 
 add_library(KF5Bookmarks ${kbookmarks_SRCS})
-generate_export_header(KF5Bookmarks BASE_NAME KBookmarks)
 add_library(KF5::Bookmarks ALIAS KF5Bookmarks)
+ecm_generate_export_header(KF5Bookmarks
+    BASE_NAME KBookmarks
+    GROUP_BASE_NAME KF
+    VERSION ${KF5_VERSION}
+    DEPRECATED_BASE_VERSION 0
+    DEPRECATION_VERSIONS 5.0
+    EXCLUDE_DEPRECATED_BEFORE_AND_AT ${EXCLUDE_DEPRECATED_BEFORE_AND_AT}
+)
 
 target_include_directories(KF5Bookmarks INTERFACE 
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/KBookmarks>")
 
@@ -103,6 +110,7 @@
             KBOOKMARKS_EXPORT
             KBOOKMARKS_DEPRECATED
             KBOOKMARKS_DEPRECATED_EXPORT
+            "KBOOKMARKS_DEPRECATED_VERSION(x, y, t)"
         TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR}
         QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR}
         COMPONENT Devel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/src/kbookmarkowner.h 
new/kbookmarks-5.64.0/src/kbookmarkowner.h
--- old/kbookmarks-5.63.0/src/kbookmarkowner.h  2019-10-06 11:42:32.000000000 
+0200
+++ new/kbookmarks-5.64.0/src/kbookmarkowner.h  2019-11-02 13:52:34.000000000 
+0100
@@ -31,7 +31,7 @@
  * The KBookmarkMenu and KBookmarkBar classes gives the user
  * the ability to either edit bookmarks or add their own.  In the
  * first case, the app may want to open the bookmark in a special way.
- * In the second case, the app <em>must</em> supply the name and the
+ * In the second case, the app @em must supply the name and the
  * URL for the bookmark.
  *
  * This class gives the app this callback-like ability.
@@ -41,9 +41,9 @@
  * bookmarks, then you don't need to overload this class at all.
  * Rather, just use something like:
  *
- * <CODE>
- * bookmarks = new KBookmarkMenu(manager, 0, menu, actionCollection);
- * </CODE>
+ * @code
+ * bookmarks = new KBookmarkMenu(manager, nullptr, menu, actionCollection);
+ * @endcode
  *
  * If you wish to use your own editor or allow the user to add
  * bookmarks, you must overload this class.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-5.63.0/src/konqbookmarkmenu.h 
new/kbookmarks-5.64.0/src/konqbookmarkmenu.h
--- old/kbookmarks-5.63.0/src/konqbookmarkmenu.h        2019-10-06 
11:42:32.000000000 +0200
+++ new/kbookmarks-5.64.0/src/konqbookmarkmenu.h        2019-11-02 
13:52:34.000000000 +0100
@@ -24,9 +24,12 @@
 #include "kbookmarkmenu.h"
 #include "kbookmarkactionmenu.h"
 #include "kbookmarkcontextmenu.h"
+
+#if KBOOKMARKS_ENABLE_DEPRECATED_SINCE(5, 0)
 #include "kbookmarkowner.h" // for SC reasons
 
 typedef KBookmarkOwner KonqBookmarkOwner; // KF5: KonqBookmarkOwner is 
deprecated, use KBookmarkOwner
+#endif
 
 class KBOOKMARKS_EXPORT KonqBookmarkMenu : public KBookmarkMenu
 {


Reply via email to