Hello community,

here is the log from the commit of package kpackage for openSUSE:Factory 
checked in at 2019-03-21 09:47:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kpackage (Old)
 and      /work/SRC/openSUSE:Factory/.kpackage.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kpackage"

Thu Mar 21 09:47:39 2019 rev:54 rq:686759 version:5.56.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpackage/kpackage.changes        2019-02-28 
21:31:34.293769197 +0100
+++ /work/SRC/openSUSE:Factory/.kpackage.new.28833/kpackage.changes     
2019-03-21 09:47:41.238878367 +0100
@@ -1,0 +2,12 @@
+Sun Mar 10 20:15:37 UTC 2019 - [email protected]
+
+- Update to 5.56.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.56.0.php
+- Changes since 5.55.0:
+  * It compiles fine with qt5.13
+  * extend documentation of kpackage_install_bundled_package
+  * remove kpackage_install_package deprecation warning
+
+-------------------------------------------------------------------

Old:
----
  kpackage-5.55.0.tar.xz

New:
----
  kpackage-5.56.0.tar.xz

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

Other differences:
------------------
++++++ kpackage.spec ++++++
--- /var/tmp/diff_new_pack.qbn0ns/_old  2019-03-21 09:47:41.786878240 +0100
+++ /var/tmp/diff_new_pack.qbn0ns/_new  2019-03-21 09:47:41.794878238 +0100
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.55
+%define _tar_path 5.56
 # 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:           kpackage
-Version:        5.55.0
+Version:        5.56.0
 Release:        0
 Summary:        Non-binary asset user-installable package managing framework
 License:        LGPL-2.1-or-later

++++++ kpackage-5.55.0.tar.xz -> kpackage-5.56.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.55.0/CMakeLists.txt 
new/kpackage-5.56.0/CMakeLists.txt
--- old/kpackage-5.55.0/CMakeLists.txt  2019-02-03 01:00:33.000000000 +0100
+++ new/kpackage-5.56.0/CMakeLists.txt  2019-03-02 14:45:57.000000000 +0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.55.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.55.0") # handled by release scripts
+set(KF5_VERSION "5.56.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.56.0") # handled by release scripts
 project(KPackage VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.55.0  NO_MODULE)
+find_package(ECM 5.56.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)
 
@@ -64,8 +64,7 @@
     CONFIG_CODE_VARIABLE
         PACKAGE_SETUP_AUTOMOC_VARIABLES
 )
-
-#add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
 include(KF5PackageMacros.cmake)
 
 # make package_version.h available
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.55.0/KF5PackageMacros.cmake 
new/kpackage-5.56.0/KF5PackageMacros.cmake
--- old/kpackage-5.55.0/KF5PackageMacros.cmake  2019-02-03 01:00:33.000000000 
+0100
+++ new/kpackage-5.56.0/KF5PackageMacros.cmake  2019-03-02 14:45:57.000000000 
+0100
@@ -23,10 +23,6 @@
 
 set(kpackagedir ${CMAKE_CURRENT_LIST_DIR})
 function(kpackage_install_package dir component)
-   # allow plasma_install_package to disable the warning until it is ported 
away from this
-   if (NOT ARGV4 STREQUAL NO_DEPRECATED_WARNING)
-      message(AUTHOR_WARNING "Deprecated: use 
kpackage_install_bundled_package")
-   endif()
    set(root ${ARGV2})
    set(install_dir ${ARGV3})
    if(NOT root)
@@ -90,8 +86,12 @@
 
 endfunction()
 
-#use this version instead: it compresses the contents directory
-#into a binary rcc file
+# See kpackage_install_package documentation above.
+# This function bundles the package into a Qt rcc file instead of installing
+# the individual files. Great care must be taken that the way package files are
+# accessed is actually rcc-compatible (e.g. package.fileUrl must be used and
+# manually constructed paths shouldn't treat the resources as file:// URLs
+# either).
 function(kpackage_install_bundled_package dir component)
     set(root ${ARGV2})
     set(install_dir ${ARGV3})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.55.0/po/gl/libkpackage5.po 
new/kpackage-5.56.0/po/gl/libkpackage5.po
--- old/kpackage-5.55.0/po/gl/libkpackage5.po   2019-02-03 01:00:33.000000000 
+0100
+++ new/kpackage-5.56.0/po/gl/libkpackage5.po   2019-03-02 14:45:57.000000000 
+0100
@@ -3,13 +3,13 @@
 #
 # Marce Villarino <[email protected]>, 2013, 2014.
 # Adrián Chaves Fernández <[email protected]>, 2015, 2016, 2017.
-# Adrian Chaves (Gallaecio) <[email protected]>, 2017, 2018.
+# Adrian Chaves (Gallaecio) <[email protected]>, 2017, 2018, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2019-01-10 03:03+0100\n"
-"PO-Revision-Date: 2018-12-21 21:05+0100\n"
+"PO-Revision-Date: 2019-02-16 12:54+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
 "Language: gl\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 18.12.1\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -469,6 +469,7 @@
 "Para instalar ou desinstalar, opera en paquetes instalados para todos os "
 "usuarios."
 
+# skip-rule: PT-2011_applet
 #: kpackagetool/options.h:27
 #, kde-format
 msgctxt ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.55.0/po/id/libkpackage5.po 
new/kpackage-5.56.0/po/id/libkpackage5.po
--- old/kpackage-5.55.0/po/id/libkpackage5.po   2019-02-03 01:00:33.000000000 
+0100
+++ new/kpackage-5.56.0/po/id/libkpackage5.po   2019-03-02 14:45:57.000000000 
+0100
@@ -16,7 +16,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 2.0\n"
 
 #: kpackage/package.cpp:57
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.55.0/po/zh_CN/libkpackage5.po 
new/kpackage-5.56.0/po/zh_CN/libkpackage5.po
--- old/kpackage-5.55.0/po/zh_CN/libkpackage5.po        2019-02-03 
01:00:33.000000000 +0100
+++ new/kpackage-5.56.0/po/zh_CN/libkpackage5.po        2019-03-02 
14:45:57.000000000 +0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2019-01-10 03:03+0100\n"
-"PO-Revision-Date: 2019-01-27 22:57\n"
+"PO-Revision-Date: 2019-02-20 23:15\n"
 "Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


Reply via email to