Hello community,

here is the log from the commit of package kpackage for openSUSE:Factory 
checked in at 2018-08-24 16:55:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kpackage (Old)
 and      /work/SRC/openSUSE:Factory/.kpackage.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kpackage"

Fri Aug 24 16:55:03 2018 rev:46 rq:630627 version:5.49.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpackage/kpackage.changes        2018-07-21 
10:14:36.175109413 +0200
+++ /work/SRC/openSUSE:Factory/.kpackage.new/kpackage.changes   2018-08-24 
16:55:04.457430113 +0200
@@ -1,0 +2,10 @@
+Sun Aug 19 09:19:18 UTC 2018 - [email protected]
+
+- Update to 5.49.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.49.0.php
+- Changes since 5.48.0:
+  * Honor BUILD_TESTING
+
+-------------------------------------------------------------------

Old:
----
  kpackage-5.48.0.tar.xz

New:
----
  kpackage-5.49.0.tar.xz

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

Other differences:
------------------
++++++ kpackage.spec ++++++
--- /var/tmp/diff_new_pack.yZEUqZ/_old  2018-08-24 16:55:06.801432880 +0200
+++ /var/tmp/diff_new_pack.yZEUqZ/_new  2018-08-24 16:55:06.805432884 +0200
@@ -16,15 +16,21 @@
 #
 
 
-%bcond_without lang
-%define _tar_path 5.48
+%define _tar_path 5.49
 # 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.48.0
+Version:        5.49.0
 Release:        0
+Summary:        Manage user installable packages of non-binary assets
+License:        LGPL-2.1-or-later
+Group:          System/GUI/KDE
+URL:            http://www.kde.org
+Source:         
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
+Source1:        baselibs.conf
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
@@ -39,13 +45,6 @@
 %if %{with lang}
 Recommends:     %{name}-lang
 %endif
-Summary:        Manage user installable packages of non-binary assets
-License:        LGPL-2.1-or-later
-Group:          System/GUI/KDE
-Url:            http://www.kde.org
-Source:         
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
-Source1:        baselibs.conf
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
 This framework lets applications to manage user installable packages of 
non-binary assets.
@@ -62,6 +61,7 @@
 Development files.
 
 %lang_package
+
 %prep
 %setup -q
 
@@ -77,7 +77,6 @@
 %endif
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %if %{with lang}
@@ -85,8 +84,8 @@
 %endif
 
 %files
-%defattr(-,root,root)
-%doc COPYING* README*
+%license COPYING*
+%doc README*
 %{_kf5_bindir}/kpackagetool*
 %{_kf5_libdir}/libKF5Package.so.*
 %dir %{_kf5_servicetypesdir}
@@ -97,7 +96,6 @@
 %{_kf5_debugdir}/*.categories
 
 %files devel
-%defattr(-,root,root)
 %{_kf5_libdir}/libKF5Package.so
 %{_kf5_libdir}/cmake/KF5Package/
 %{_kf5_includedir}/

++++++ kpackage-5.48.0.tar.xz -> kpackage-5.49.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.48.0/CMakeLists.txt 
new/kpackage-5.49.0/CMakeLists.txt
--- old/kpackage-5.48.0/CMakeLists.txt  2018-07-08 00:32:12.000000000 +0200
+++ new/kpackage-5.49.0/CMakeLists.txt  2018-08-04 13:00:24.000000000 +0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.48.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.48.0") # handled by release scripts
+set(KF5_VERSION "5.49.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.49.0") # handled by release scripts
 project(KPackage VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.48.0  NO_MODULE)
+find_package(ECM 5.49.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)
 
@@ -87,7 +87,9 @@
 endif()
 
 add_subdirectory(src)
-add_subdirectory(autotests)
+if (BUILD_TESTING)
+    add_subdirectory(autotests)
+endif()
 
 ################ create PackageConfig.cmake and install it ####################
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.48.0/po/da/libkpackage5.po 
new/kpackage-5.49.0/po/da/libkpackage5.po
--- old/kpackage-5.48.0/po/da/libkpackage5.po   2018-07-08 00:32:12.000000000 
+0200
+++ new/kpackage-5.49.0/po/da/libkpackage5.po   2018-08-04 13:00:24.000000000 
+0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Martin Schlander <[email protected]>, 2014, 2015, 2016, 2017.
+# Martin Schlander <[email protected]>, 2014, 2015, 2016, 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-19 03:21+0100\n"
-"PO-Revision-Date: 2017-10-28 20:30+0100\n"
+"PO-Revision-Date: 2018-07-12 09:54+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
 "Language: da\n"
@@ -40,7 +40,7 @@
 #: kpackage/packageloader.cpp:60
 #, kde-format
 msgid "Date and Time"
-msgstr "Dato og tid"
+msgstr "Dato og klokkeslæt"
 
 #: kpackage/packageloader.cpp:61
 #, kde-format
@@ -387,37 +387,32 @@
 #: kpackagetool/kpackagetool.cpp:697
 #, kde-format
 msgid "Generating %1%2"
-msgstr ""
+msgstr "Genererer %1 %2"
 
 #: kpackagetool/kpackagetool.cpp:699
-#, fuzzy, kde-format
-#| msgid "Generating %1/kpluginindex.json"
+#, kde-format
 msgid "Didn't write %1%2"
-msgstr "Genererer %1/kpluginindex.json"
+msgstr "Skrev ikke %1%2"
 
 #: kpackagetool/kpackagetool.cpp:710
 #, kde-format
 msgid "Generating %1/%2"
-msgstr ""
+msgstr "Genererer %1/%2"
 
 #: kpackagetool/kpackagetool.cpp:712
-#, fuzzy, kde-format
-#| msgid "Generating %1/kpluginindex.json"
+#, kde-format
 msgid "Cannot write %1/%2"
-msgstr "Genererer %1/kpluginindex.json"
+msgstr "Kan ikke skrive %1/%2"
 
 #: kpackagetool/kpackagetool.cpp:730 kpackagetool/kpackagetool.cpp:744
-#, fuzzy, kde-format
-#| msgid "Could not open package file: %1"
+#, kde-format
 msgid "Could not remove index file %1"
-msgstr "Kunne ikke åbne pakkefilen: %1"
+msgstr "Kunne ikke fjerne indeksfilen %1"
 
 #: kpackagetool/kpackagetool.cpp:732 kpackagetool/kpackagetool.cpp:746
-#, fuzzy, kde-format
-#| msgctxt "@title:window %1 is the name of the containment"
-#| msgid "Remove %1"
+#, kde-format
 msgid "Removed %1"
-msgstr "Fjern %1"
+msgstr "Fjernede %1"
 
 #: kpackagetool/kpackagetool.cpp:757
 #, kde-format
@@ -535,17 +530,13 @@
 "brugermappen medmindre -g bruges"
 
 #: kpackagetool/options.h:65
-#, fuzzy, kde-format
-#| msgid ""
-#| "Recreate the plugin index. To be used in: conjunction with either the "
-#| "option -t or -g. Recreates the index for the given type or package root. "
-#| "Operates in the user directory, unless -g is used"
+#, kde-format
 msgid ""
 "Remove the plugin index. To be used in: conjunction with either the option -"
 "t or -g. Recreates the index for the given type or package root. Operates in "
 "the user directory, unless -g is used"
 msgstr ""
-"Genskab plugin-indekset. Skal bruges sammen med tilvalget -t eller -g. "
+"Fjern plugin-indekset. Skal bruges sammen med tilvalget -t eller -g. "
 "Genskaber indekset for den angivne type eller pakkerod. Arbejder i "
 "brugermappen medmindre -g bruges"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.48.0/po/id/libkpackage5.po 
new/kpackage-5.49.0/po/id/libkpackage5.po
--- old/kpackage-5.48.0/po/id/libkpackage5.po   2018-07-08 00:32:12.000000000 
+0200
+++ new/kpackage-5.49.0/po/id/libkpackage5.po   2018-08-04 13:00:24.000000000 
+0200
@@ -9,8 +9,8 @@
 "Project-Id-Version: plasmapkg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-19 03:21+0100\n"
-"PO-Revision-Date: 2018-06-30 00:27+0700\n"
-"Last-Translator: Wantoyo <[email protected]>\n"
+"PO-Revision-Date: 2018-07-23 06:27+0700\n"
+"Last-Translator: wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
 "MIME-Version: 1.0\n"
@@ -144,7 +144,7 @@
 #: kpackage/private/packagejobthread.cpp:260
 #, kde-format
 msgid "Could not open package file, unsupported archive format: %1 %2"
-msgstr "Tidak dapat membuka file paket, format arsip tak didukung: %1 %2"
+msgstr "Tidak dapat membuka file paket, format arsip tidak didukung: %1 %2"
 
 #: kpackage/private/packagejobthread.cpp:268
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.48.0/po/uk/libkpackage5.po 
new/kpackage-5.49.0/po/uk/libkpackage5.po
--- old/kpackage-5.48.0/po/uk/libkpackage5.po   2018-07-08 00:32:12.000000000 
+0200
+++ new/kpackage-5.49.0/po/uk/libkpackage5.po   2018-08-04 13:00:24.000000000 
+0200
@@ -1,5 +1,5 @@
 # Translation of libkpackage5.po to Ukrainian
-# Copyright (C) 2014-2017 This_file_is_part_of_KDE
+# Copyright (C) 2018 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpackage-5.48.0/po/zh_CN/libkpackage5.po 
new/kpackage-5.49.0/po/zh_CN/libkpackage5.po
--- old/kpackage-5.48.0/po/zh_CN/libkpackage5.po        2018-07-08 
00:32:12.000000000 +0200
+++ new/kpackage-5.49.0/po/zh_CN/libkpackage5.po        2018-08-04 
13:00:24.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-19 03:21+0100\n"
-"PO-Revision-Date: 2018-07-03 17:34\n"
+"PO-Revision-Date: 2018-07-24 08:40\n"
 "Last-Translator: guoyunhebrave <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


Reply via email to