Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ki18n for openSUSE:Factory checked 
in at 2021-06-16 20:33:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ki18n (Old)
 and      /work/SRC/openSUSE:Factory/.ki18n.new.32437 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ki18n"

Wed Jun 16 20:33:57 2021 rev:95 rq:899738 version:5.83.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ki18n/ki18n.changes      2021-05-10 
15:37:09.538091510 +0200
+++ /work/SRC/openSUSE:Factory/.ki18n.new.32437/ki18n.changes   2021-06-16 
20:35:30.971189320 +0200
@@ -1,0 +2,12 @@
+Sat Jun  5 11:58:52 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.83.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.83.0
+- Changes since 5.82.0:
+  * ki18n_wrap_ui: catch alias targets before failing internally
+  * Bump required CMake version to 3.16
+  * Call ki18n_install() unconditionally
+
+-------------------------------------------------------------------

Old:
----
  ki18n-5.82.0.tar.xz
  ki18n-5.82.0.tar.xz.sig

New:
----
  ki18n-5.83.0.tar.xz
  ki18n-5.83.0.tar.xz.sig

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

Other differences:
------------------
++++++ ki18n.spec ++++++
--- /var/tmp/diff_new_pack.APuk0x/_old  2021-06-16 20:35:31.427190098 +0200
+++ /var/tmp/diff_new_pack.APuk0x/_new  2021-06-16 20:35:31.431190105 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5I18n5
-%define _tar_path 5.82
+%define _tar_path 5.83
 # 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:           ki18n
-Version:        5.82.0
+Version:        5.83.0
 Release:        0
 Summary:        KDE Gettext-based UI text internationalization
 License:        LGPL-2.1-or-later


++++++ ki18n-5.82.0.tar.xz -> ki18n-5.83.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.82.0/.gitignore new/ki18n-5.83.0/.gitignore
--- old/ki18n-5.82.0/.gitignore 2021-05-01 14:34:37.000000000 +0200
+++ new/ki18n-5.83.0/.gitignore 2021-06-05 11:18:40.000000000 +0200
@@ -26,3 +26,4 @@
 .clangd
 .idea
 /cmake-build*
+.cache
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.82.0/CMakeLists.txt 
new/ki18n-5.83.0/CMakeLists.txt
--- old/ki18n-5.82.0/CMakeLists.txt     2021-05-01 14:34:37.000000000 +0200
+++ new/ki18n-5.83.0/CMakeLists.txt     2021-06-05 11:18:40.000000000 +0200
@@ -1,11 +1,11 @@
-cmake_minimum_required(VERSION 3.5)
+cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.82.0") # handled by release scripts
+set(KF_VERSION "5.83.0") # handled by release scripts
 project(KI18n VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.82.0  NO_MODULE)
+find_package(ECM 5.83.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)
 
@@ -74,11 +74,8 @@
 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)")
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00)
-add_definitions(-DQT_NO_FOREACH)
 
-if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
-    ki18n_install(po)
-endif()
+ki18n_install(po)
 add_subdirectory(src)
 if (BUILD_TESTING)
     add_subdirectory(autotests)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.82.0/autotests/ki18n_install/CMakeLists.txt 
new/ki18n-5.83.0/autotests/ki18n_install/CMakeLists.txt
--- old/ki18n-5.82.0/autotests/ki18n_install/CMakeLists.txt     2021-05-01 
14:34:37.000000000 +0200
+++ new/ki18n-5.83.0/autotests/ki18n_install/CMakeLists.txt     2021-06-05 
11:18:40.000000000 +0200
@@ -1,5 +1,4 @@
 project(ki18n_install)
-cmake_minimum_required(VERSION 3.0)
 
 find_package(KF5I18n)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.82.0/cmake/KF5I18nMacros.cmake.in 
new/ki18n-5.83.0/cmake/KF5I18nMacros.cmake.in
--- old/ki18n-5.82.0/cmake/KF5I18nMacros.cmake.in       2021-05-01 
14:34:37.000000000 +0200
+++ new/ki18n-5.83.0/cmake/KF5I18nMacros.cmake.in       2021-06-05 
11:18:40.000000000 +0200
@@ -20,7 +20,7 @@
 
 # Creates the implementation files from the ui files and adds them to the list 
of sources,
 # either to the variable of the given name or, since KF 5.62, if the given 
argument is
-# a target, to the list of private sources of that target.
+# a target (must not be an alias), to the list of private sources of that 
target.
 #
 #   ki18n_wrap_ui(<sources_var_name(|target (since 5.62))>
 #      [<ui_file> [...]]
@@ -35,6 +35,12 @@
    if(NOT TARGET Qt5::uic)
       message(FATAL_ERROR "Qt5Widgets should be found before calling 
ki18n_wrap_ui(). Please add find_package(Qt5Widgets ...)")
    endif()
+   if (TARGET ${_sources})
+      get_target_property(aliased_target ${_sources} ALIASED_TARGET)
+      if(aliased_target)
+         message(FATAL_ERROR "Target argument passed to ki18n_wrap_ui must not 
be an alias: ${_sources}")
+      endif()
+   endif()
 
    foreach (_current_FILE ${ARGN})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.82.0/po/zh_CN/ki18n5.po 
new/ki18n-5.83.0/po/zh_CN/ki18n5.po
--- old/ki18n-5.82.0/po/zh_CN/ki18n5.po 2021-05-01 14:34:37.000000000 +0200
+++ new/ki18n-5.83.0/po/zh_CN/ki18n5.po 2021-06-05 11:18:40.000000000 +0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-03-04 02:22+0100\n"
-"PO-Revision-Date: 2021-04-24 15:42\n"
+"PO-Revision-Date: 2021-06-03 16:05\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ki18n-5.82.0/src/CMakeLists.txt 
new/ki18n-5.83.0/src/CMakeLists.txt
--- old/ki18n-5.82.0/src/CMakeLists.txt 2021-05-01 14:34:37.000000000 +0200
+++ new/ki18n-5.83.0/src/CMakeLists.txt 2021-06-05 11:18:40.000000000 +0200
@@ -1,4 +1,7 @@
-set(libki18n_SRCS
+add_library(KF5I18n)
+add_library(KF5::I18n ALIAS KF5I18n)
+
+target_sources(KF5I18n PRIVATE
     klocalizedstring.cpp
     klocalizedtranslator.cpp
     kcatalog.cpp
@@ -8,7 +11,7 @@
     main.cpp
 )
 
-ecm_qt_declare_logging_category(libki18n_SRCS
+ecm_qt_declare_logging_category(KF5I18n
     HEADER ki18n_logging.h
     IDENTIFIER KI18N
     CATEGORY_NAME kf.i18n
@@ -17,7 +20,7 @@
     EXPORT KI18N
 )
 
-ecm_qt_declare_logging_category(libki18n_SRCS
+ecm_qt_declare_logging_category(KF5I18n
     HEADER ki18n_logging_kuit.h
     IDENTIFIER KI18N_KUIT
     CATEGORY_NAME kf.i18n.kuit
@@ -26,8 +29,6 @@
     EXPORT KI18N
 )
 
-add_library(KF5I18n ${libki18n_SRCS})
-add_library(KF5::I18n ALIAS KF5I18n)
 ecm_generate_export_header(KF5I18n
     BASE_NAME KI18n
     GROUP_BASE_NAME KF
@@ -45,7 +46,7 @@
 target_link_libraries(KF5I18n PRIVATE ${LibIntl_LIBRARIES})
 target_compile_options(KF5I18n PRIVATE -DTRANSLATION_DOMAIN=\"ki18n5\")
 
-set_target_properties(KF5I18n PROPERTIES VERSION   ${KI18N_VERSION_STRING}
+set_target_properties(KF5I18n PROPERTIES VERSION   ${KI18N_VERSION}
                                          SOVERSION ${KI18N_SOVERSION}
                                          EXPORT_NAME I18n
 )
@@ -97,11 +98,12 @@
 ### ktranscript plugin
 if (BUILD_WITH_QML)
 
-set(ktranscript_LIB_SRCS
+add_library(ktranscript MODULE)
+
+target_sources(ktranscript PRIVATE
     ktranscript.cpp
     common_helpers.cpp
 )
-add_library(ktranscript MODULE ${ktranscript_LIB_SRCS})
 generate_export_header(ktranscript BASE_NAME KTranscript)
 target_link_libraries(ktranscript PRIVATE Qt5::Qml Qt5::Core)
 

Reply via email to