Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kxmlrpcclient5 for openSUSE:Factory 
checked in at 2022-01-11 21:16:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kxmlrpcclient5 (Old)
 and      /work/SRC/openSUSE:Factory/.kxmlrpcclient5.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kxmlrpcclient5"

Tue Jan 11 21:16:51 2022 rev:84 rq:945092 version:5.90.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kxmlrpcclient5/kxmlrpcclient5.changes    
2021-12-13 20:45:04.368490050 +0100
+++ /work/SRC/openSUSE:Factory/.kxmlrpcclient5.new.1892/kxmlrpcclient5.changes  
2022-01-11 21:19:47.704981003 +0100
@@ -1,0 +2,9 @@
+Mon Jan  3 12:48:01 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.90.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.90.0
+- No code change since 5.89.0
+
+-------------------------------------------------------------------

Old:
----
  kxmlrpcclient-5.89.0.tar.xz
  kxmlrpcclient-5.89.0.tar.xz.sig

New:
----
  kxmlrpcclient-5.90.0.tar.xz
  kxmlrpcclient-5.90.0.tar.xz.sig

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

Other differences:
------------------
++++++ kxmlrpcclient5.spec ++++++
--- /var/tmp/diff_new_pack.DUs3Lv/_old  2022-01-11 21:19:48.288981414 +0100
+++ /var/tmp/diff_new_pack.DUs3Lv/_new  2022-01-11 21:19:48.292981417 +0100
@@ -18,21 +18,21 @@
 
 %define rname kxmlrpcclient
 %define lname libKF5XmlRpcClient5
-%define _tar_path 5.89
+%define _tar_path 5.90
 # 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
+%bcond_without released
 Name:           kxmlrpcclient5
-Version:        5.89.0
+Version:        5.90.0
 Release:        0
 Summary:        Library containing simple XML-RPC Client support
 License:        BSD-2-Clause
 Group:          System/GUI/KDE
 URL:            https://www.kde.org
 Source:         %{rname}-%{version}.tar.xz
-%if %{with lang}
+%if %{with released}
 Source1:        %{rname}-%{version}.tar.xz.sig
 Source2:        frameworks.keyring
 %endif
@@ -48,9 +48,6 @@
 %package -n %{lname}
 Summary:        Library containing simple XML-RPC Client support
 Group:          Development/Libraries/KDE
-%if %{with lang}
-Recommends:     %{lname}-lang = %{version}
-%endif
 
 %description  -n %{lname}
 Library containing simple XML-RPC Client support.
@@ -76,14 +73,14 @@
 %install
 %kf5_makeinstall -C build
 
-%if %{with lang}
+%if %{with released}
 %find_lang libkxmlrpcclient5 %{name}.lang
 %endif
 
 %post -n %{lname} -p /sbin/ldconfig
 %postun -n %{lname} -p /sbin/ldconfig
 
-%if %{with lang}
+%if %{with released}
 %files -n %{lname}-lang -f %{name}.lang
 %endif
 


++++++ kxmlrpcclient-5.89.0.tar.xz -> kxmlrpcclient-5.90.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kxmlrpcclient-5.89.0/CMakeLists.txt 
new/kxmlrpcclient-5.90.0/CMakeLists.txt
--- old/kxmlrpcclient-5.89.0/CMakeLists.txt     2021-12-04 19:53:59.000000000 
+0100
+++ new/kxmlrpcclient-5.90.0/CMakeLists.txt     2022-01-01 13:38:14.000000000 
+0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.89.0") # handled by release scripts
-set(KF_DEP_VERSION "5.89.0") # handled by release scripts
+set(KF_VERSION "5.90.0") # handled by release scripts
+set(KF_DEP_VERSION "5.90.0") # handled by release scripts
 project(KXmlRpcClient VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.89.0 CONFIG )
+find_package(ECM 5.90.0 CONFIG )
 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)
 
@@ -39,8 +39,8 @@
 ########### Find packages ###########
 find_package(KF5I18n ${KF_DEP_VERSION} CONFIG REQUIRED)
 find_package(KF5KIO ${KF_DEP_VERSION} CONFIG REQUIRED)
-add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055100)
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f02)
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900)
 if(BUILD_TESTING)
    add_definitions(-DBUILD_TESTING)
 endif(BUILD_TESTING)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kxmlrpcclient-5.89.0/po/ca@valencia/libkxmlrpcclient5.po 
new/kxmlrpcclient-5.90.0/po/ca@valencia/libkxmlrpcclient5.po
--- old/kxmlrpcclient-5.89.0/po/ca@valencia/libkxmlrpcclient5.po        
2021-12-04 19:53:59.000000000 +0100
+++ new/kxmlrpcclient-5.90.0/po/ca@valencia/libkxmlrpcclient5.po        
2022-01-01 13:38:14.000000000 +0100
@@ -3,7 +3,7 @@
 # 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.
 #
-# Josep Ma. Ferrer <[email protected]>, 2007.
+# Josep M. Ferrer <[email protected]>, 2007.
 # Antoni Bella P??rez <[email protected]>, 2014.
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kxmlrpcclient-5.89.0/po/zh_CN/libkxmlrpcclient5.po 
new/kxmlrpcclient-5.90.0/po/zh_CN/libkxmlrpcclient5.po
--- old/kxmlrpcclient-5.89.0/po/zh_CN/libkxmlrpcclient5.po      2021-12-04 
19:53:59.000000000 +0100
+++ new/kxmlrpcclient-5.90.0/po/zh_CN/libkxmlrpcclient5.po      2022-01-01 
13:38:14.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-08-14 00:14+0000\n"
-"PO-Revision-Date: 2021-11-30 15:21\n"
+"PO-Revision-Date: 2021-12-22 14:06\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to