Hello community,

here is the log from the commit of package kpackage for openSUSE:Factory 
checked in at 2020-05-11 13:29:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kpackage (Old)
 and      /work/SRC/openSUSE:Factory/.kpackage.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kpackage"

Mon May 11 13:29:15 2020 rev:68 rq:802105 version:5.70.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpackage/kpackage.changes        2020-04-15 
20:03:52.581995762 +0200
+++ /work/SRC/openSUSE:Factory/.kpackage.new.2738/kpackage.changes      
2020-05-11 13:31:20.603858523 +0200
@@ -1,0 +2,10 @@
+Sun May  3 09:40:08 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.70.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.70.0
+- Changes since 5.69.0:
+  * Fix testpackage-appstream: XDG_DATA_DIRS needs to be explicitly extended
+
+-------------------------------------------------------------------

Old:
----
  kpackage-5.69.0.tar.xz
  kpackage-5.69.0.tar.xz.sig

New:
----
  kpackage-5.70.0.tar.xz
  kpackage-5.70.0.tar.xz.sig

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

Other differences:
------------------
++++++ kpackage.spec ++++++
--- /var/tmp/diff_new_pack.5bLfoN/_old  2020-05-11 13:31:21.723860871 +0200
+++ /var/tmp/diff_new_pack.5bLfoN/_new  2020-05-11 13:31:21.723860871 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.69
+%define _tar_path 5.70
 # 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.69.0
+Version:        5.70.0
 Release:        0
 Summary:        Non-binary asset user-installable package managing framework
 License:        LGPL-2.1-or-later


++++++ kpackage-5.69.0.tar.xz -> kpackage-5.70.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.69.0/CMakeLists.txt 
new/kpackage-5.70.0/CMakeLists.txt
--- old/kpackage-5.69.0/CMakeLists.txt  2020-04-05 01:02:59.000000000 +0200
+++ new/kpackage-5.70.0/CMakeLists.txt  2020-05-03 00:21:34.000000000 +0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.69.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.69.0") # handled by release scripts
+set(KF5_VERSION "5.70.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.70.0") # handled by release scripts
 project(KPackage VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.69.0  NO_MODULE)
+find_package(ECM 5.70.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.69.0/autotests/CMakeLists.txt 
new/kpackage-5.70.0/autotests/CMakeLists.txt
--- old/kpackage-5.69.0/autotests/CMakeLists.txt        2020-04-05 
01:02:59.000000000 +0200
+++ new/kpackage-5.70.0/autotests/CMakeLists.txt        2020-05-03 
00:21:34.000000000 +0200
@@ -36,7 +36,11 @@
                                                       
-Doutput=${CMAKE_CURRENT_SOURCE_DIR}/data/${testname}/${testname}.testappdataxml
                                                       -P 
${CMAKE_CURRENT_SOURCE_DIR}/kpackagetoolappstreamtest.cmake
     )
-    set_property(TEST ${testname}-appstream PROPERTY ENVIRONMENT 
"XDG_DATA_DIRS=${CMAKE_SOURCE_DIR}/src/kpackage/data:$XDG_DATA_DIRS")
+    set(XDG_DATA_DIRS "$ENV{XDG_DATA_DIRS}")
+    if(NOT XDG_DATA_DIRS)
+        set(XDG_DATA_DIRS "/usr/local/share:/usr/share")
+    endif()
+    set_property(TEST ${testname}-appstream PROPERTY ENVIRONMENT 
"XDG_DATA_DIRS=${CMAKE_SOURCE_DIR}/src/kpackage/data:${XDG_DATA_DIRS}")
 endfunction()
 
 foreach(var "testfallbackpackage" "testpackage" "testpackage-nodisplay" 
"testjsonmetadatapackage" "testpackagesdep" "testpackagesdepinvalid") # 
"customcontent" "simplecontent"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.69.0/po/en_GB/libkpackage5.po 
new/kpackage-5.70.0/po/en_GB/libkpackage5.po
--- old/kpackage-5.69.0/po/en_GB/libkpackage5.po        2020-04-05 
01:02:59.000000000 +0200
+++ new/kpackage-5.70.0/po/en_GB/libkpackage5.po        2020-05-03 
00:21:34.000000000 +0200
@@ -12,7 +12,7 @@
 "POT-Creation-Date: 2020-01-04 03:07+0100\n"
 "PO-Revision-Date: 2019-03-24 19:18+0000\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
-"Language-Team: British English <kde-i18n-...@kde.org>\n"
+"Language-Team: British English <kde-l10n-en...@kde.org>\n"
 "Language: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.69.0/po/ko/libkpackage5.po 
new/kpackage-5.70.0/po/ko/libkpackage5.po
--- old/kpackage-5.69.0/po/ko/libkpackage5.po   2020-04-05 01:02:59.000000000 
+0200
+++ new/kpackage-5.70.0/po/ko/libkpackage5.po   2020-05-03 00:21:34.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: plasmapkg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-01-04 03:07+0100\n"
-"PO-Revision-Date: 2020-04-04 15:04+0200\n"
+"PO-Revision-Date: 2020-04-21 00:25+0200\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <kde...@kde.org>\n"
 "Language: ko\n"
@@ -166,7 +166,7 @@
 #: kpackage/private/packagejobthread.cpp:335
 #, kde-format
 msgid "Package plugin name %1 contains invalid characters"
-msgstr "패키지 플러그인 이름 %1에 잘못된 글자가 포함되어 있음"
+msgstr "패키지 플러그인 이름 %1에 잘못된 글자가 들어 있음"
 
 #: kpackage/private/packagejobthread.cpp:351
 #, kde-format
@@ -490,7 +490,7 @@
 #: kpackagetool/options.h:58
 #, kde-format
 msgid "List installed packages"
-msgstr "설치한 패키지 목록 보이기"
+msgstr "설치한 패키지 목록 표시"
 
 #: kpackagetool/options.h:65
 #, kde-format


Reply via email to