Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkeduvocdocument for 
openSUSE:Factory checked in at 2023-04-23 22:47:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkeduvocdocument (Old)
 and      /work/SRC/openSUSE:Factory/.libkeduvocdocument.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkeduvocdocument"

Sun Apr 23 22:47:03 2023 rev:99 rq:1080712 version:23.04.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkeduvocdocument/libkeduvocdocument.changes    
2023-03-03 22:30:32.215808573 +0100
+++ 
/work/SRC/openSUSE:Factory/.libkeduvocdocument.new.1533/libkeduvocdocument.changes
  2023-04-23 22:50:05.171600558 +0200
@@ -1,0 +2,20 @@
+Sat Apr 15 08:46:31 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.0/
+
+-------------------------------------------------------------------
+Fri Mar 31 16:42:37 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.03.90
+  * New feature release
+
+-------------------------------------------------------------------
+Fri Mar 17 20:44:21 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.03.80
+  * New feature release
+
+-------------------------------------------------------------------

Old:
----
  libkeduvocdocument-22.12.3.tar.xz
  libkeduvocdocument-22.12.3.tar.xz.sig

New:
----
  libkeduvocdocument-23.04.0.tar.xz
  libkeduvocdocument-23.04.0.tar.xz.sig

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

Other differences:
------------------
++++++ libkeduvocdocument.spec ++++++
--- /var/tmp/diff_new_pack.JjW1aT/_old  2023-04-23 22:50:06.571608469 +0200
+++ /var/tmp/diff_new_pack.JjW1aT/_new  2023-04-23 22:50:06.619608740 +0200
@@ -16,11 +16,9 @@
 #
 
 
-# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
-%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           libkeduvocdocument
-Version:        22.12.3
+Version:        23.04.0
 Release:        0
 Summary:        Library for KDE Education Applications
 License:        GPL-2.0-or-later


++++++ libkeduvocdocument-22.12.3.tar.xz -> libkeduvocdocument-23.04.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkeduvocdocument-22.12.3/.kde-ci.yml 
new/libkeduvocdocument-23.04.0/.kde-ci.yml
--- old/libkeduvocdocument-22.12.3/.kde-ci.yml  2023-02-25 06:19:16.000000000 
+0100
+++ new/libkeduvocdocument-23.04.0/.kde-ci.yml  2023-04-11 06:15:51.000000000 
+0200
@@ -2,9 +2,19 @@
 # SPDX-License-Identifier: CC0-1.0
 
 Dependencies:
-- 'on': ['@all']
+- 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6']
+  'require':
+    'frameworks/extra-cmake-modules': '@latest-kf6'
+    'frameworks/ki18n': '@latest-kf6'
+    'frameworks/karchive': '@latest-kf6'
+    'frameworks/kio': '@latest-kf6'
+
+- 'on': ['Linux/Qt5', 'FreeBSD/Qt5', 'Windows/Qt5']
   'require':
     'frameworks/extra-cmake-modules': '@stable'
     'frameworks/ki18n': '@stable'
     'frameworks/karchive': '@stable'
     'frameworks/kio': '@stable'
+
+Options:
+  require-passing-tests-on: [ '@all' ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkeduvocdocument-22.12.3/CMakeLists.txt 
new/libkeduvocdocument-23.04.0/CMakeLists.txt
--- old/libkeduvocdocument-22.12.3/CMakeLists.txt       2023-02-25 
06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/CMakeLists.txt       2023-04-11 
06:15:51.000000000 +0200
@@ -1,8 +1,9 @@
 cmake_minimum_required(VERSION 3.16)
-project(LibKEduVocDocument)
+
+project(LibKEduVocDocument VERSION 5.1.0)
 
 set(QT_MIN_VERSION "5.15.0")
-set(KF5_MIN_VERSION "5.90.0")
+set(KF5_MIN_VERSION "5.91.0")
 set(KDE_COMPILERSETTINGS_LEVEL "5.82")
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
@@ -11,9 +12,17 @@
 include(KDECompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 include(GenerateExportHeader)
+include(ECMDeprecationSettings)
+if (QT_MAJOR_VERSION STREQUAL "6")
+    set(QT_REQUIRED_VERSION "6.4.0")
+    set(KF_MIN_VERSION "5.240.0")
+    set(KF_MAJOR_VERSION "6")
+else()
+    set(KF_MAJOR_VERSION "5")
+endif()
 
 find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} REQUIRED NO_MODULE 
COMPONENTS Xml)
-find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS I18n Archive KIO)
+find_package(KF${KF_MAJOR_VERSION} ${KF5_MIN_VERSION} REQUIRED COMPONENTS I18n 
Archive KIO)
 
 #add_definitions( -Wall -fprofile-arcs -ftest-coverage )
 
@@ -29,7 +38,7 @@
 add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
 add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
 add_definitions(-DTRANSLATION_DOMAIN=\"libkeduvocdocument\")
-
+ecm_set_disabled_deprecation_versions(KF 5.101.0 )
 add_subdirectory(keduvocdocument)
 
 configure_file( 
"${LibKEduVocDocument_SOURCE_DIR}/LibKEduVocDocumentConfig.cmake.in" 
"${LibKEduVocDocument_BINARY_DIR}/LibKEduVocDocumentConfig.cmake" @ONLY )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/keduvocdocument/CMakeLists.txt 
new/libkeduvocdocument-23.04.0/keduvocdocument/CMakeLists.txt
--- old/libkeduvocdocument-22.12.3/keduvocdocument/CMakeLists.txt       
2023-02-25 06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/keduvocdocument/CMakeLists.txt       
2023-04-11 06:15:51.000000000 +0200
@@ -7,9 +7,11 @@
 
 include(ECMSetupVersion)
 
-ecm_setup_version(5.0.0 VARIABLE_PREFIX KDEEDU
-                        VERSION_HEADER 
"${CMAKE_BINARY_DIR}/keduvocdocument/keduvocdocument_version.h"
-                        PACKAGE_VERSION_FILE 
"${CMAKE_BINARY_DIR}/KEduVocDocumentVersion.cmake")
+ecm_setup_version(PROJECT
+    VARIABLE_PREFIX KEDUVOCDOCUMENT
+    VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/keduvocdocument_version.h"
+    PACKAGE_VERSION_FILE "${CMAKE_BINARY_DIR}/KEduVocDocumentVersion.cmake"
+)
 
 include_directories(
     ${CMAKE_CURRENT_BINARY_DIR}
@@ -104,6 +106,11 @@
 )
 
 add_library(KEduVocDocument SHARED ${keduvocdocument_LIB_SRCS})
+set_target_properties(KEduVocDocument PROPERTIES
+    VERSION   ${KEDUVOCDOCUMENT_VERSION}
+    SOVERSION ${KEDUVOCDOCUMENT_SOVERSION}
+)
+
 generate_export_header(KEduVocDocument BASE_NAME KEduVocDocument)
 # vHanda: Add library alias?
 
@@ -111,17 +118,12 @@
   PUBLIC
     Qt${QT_MAJOR_VERSION}::Xml
   PRIVATE
-    KF5::I18n
-    KF5::KIOCore
-    KF5::Archive
+    KF${KF_MAJOR_VERSION}::I18n
+    KF${KF_MAJOR_VERSION}::KIOCore
+    KF${KF_MAJOR_VERSION}::Archive
 )
 
 
-# vHanda: Add Export Name?
-set_target_properties(KEduVocDocument
-    PROPERTIES VERSION   ${KDEEDU_VERSION}
-               SOVERSION ${KDEEDU_SOVERSION}
-)
 target_include_directories(KEduVocDocument INTERFACE 
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR}/libkeduvocdocument>")
 
 
@@ -131,11 +133,11 @@
 
 target_link_libraries(keduvocdocument_static
   PUBLIC
-    KF5::KIOCore
+    KF${KF_MAJOR_VERSION}::KIOCore
     Qt${QT_MAJOR_VERSION}::Xml
   PRIVATE
-    KF5::I18n
-    KF5::Archive
+    KF${KF_MAJOR_VERSION}::I18n
+    KF${KF_MAJOR_VERSION}::Archive
 )
 
 
@@ -155,6 +157,7 @@
 
 install(FILES
   ${CMAKE_CURRENT_BINARY_DIR}/keduvocdocument_export.h
+  ${CMAKE_CURRENT_BINARY_DIR}/keduvocdocument_version.h
   ${KdeEdu_HEADERS}
   DESTINATION ${KDE_INSTALL_INCLUDEDIR}/libkeduvocdocument COMPONENT Devel
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/keduvocdocument/autotests/CMakeLists.txt 
new/libkeduvocdocument-23.04.0/keduvocdocument/autotests/CMakeLists.txt
--- old/libkeduvocdocument-22.12.3/keduvocdocument/autotests/CMakeLists.txt     
2023-02-25 06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/keduvocdocument/autotests/CMakeLists.txt     
2023-04-11 06:15:51.000000000 +0200
@@ -41,7 +41,7 @@
 macro(KEDUVOCDOCUMENT_NON_GUI_UNIT_TESTS staticOrAPILib)
    foreach(_testname ${ARGN})
      ecm_add_test( ${_testname} ${kvocdoc_unittests_helpers}
-       LINK_LIBRARIES ${staticOrAPILib} KF5::CoreAddons KF5::KIOCore 
Qt${QT_MAJOR_VERSION}::Test Qt${QT_MAJOR_VERSION}::Xml
+       LINK_LIBRARIES ${staticOrAPILib} KF${KF_MAJOR_VERSION}::CoreAddons 
KF${KF_MAJOR_VERSION}::KIOCore Qt${QT_MAJOR_VERSION}::Test 
Qt${QT_MAJOR_VERSION}::Xml
        TEST_NAME ${_testname}
        )
    endforeach()
@@ -50,7 +50,7 @@
 macro(KEDUVOCDOCUMENT_GUI_UNIT_TESTS staticOrAPILib)
    foreach(_testname ${ARGN})
      ecm_add_test( ${_testname} ${kvocdoc_unittests_helpers}
-       LINK_LIBRARIES ${staticOrAPILib} KF5::CoreAddons KF5::KIOCore 
Qt${QT_MAJOR_VERSION}::Test Qt${QT_MAJOR_VERSION}::Xml
+       LINK_LIBRARIES ${staticOrAPILib} KF${KF_MAJOR_VERSION}::CoreAddons 
KF${KF_MAJOR_VERSION}::KIOCore Qt${QT_MAJOR_VERSION}::Test 
Qt${QT_MAJOR_VERSION}::Xml
        TEST_NAME ${_testname}
        GUI)
    endforeach()
@@ -59,7 +59,7 @@
 macro(KEDUVOCDOCUMENT_GUI_UNIT_TESTS_STATIC staticOrAPILib)
    foreach(_testname ${ARGN})
      ecm_add_test( ${_testname} ${kvocdoc_unittests_helpers}
-       LINK_LIBRARIES ${staticOrAPILib} KF5::CoreAddons KF5::KIOCore 
Qt${QT_MAJOR_VERSION}::Test Qt${QT_MAJOR_VERSION}::Xml
+       LINK_LIBRARIES ${staticOrAPILib} KF${KF_MAJOR_VERSION}::CoreAddons 
KF${KF_MAJOR_VERSION}::KIOCore Qt${QT_MAJOR_VERSION}::Test 
Qt${QT_MAJOR_VERSION}::Xml
        TEST_NAME ${_testname}
        GUI)
        set_target_properties(${_testname} PROPERTIES COMPILE_FLAGS 
-DKEDUVOCDOCUMENT_STATIC_DEFINE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/keduvocdocument/keduvockvtmlcompability.cpp 
new/libkeduvocdocument-23.04.0/keduvocdocument/keduvockvtmlcompability.cpp
--- old/libkeduvocdocument-22.12.3/keduvocdocument/keduvockvtmlcompability.cpp  
2023-02-25 06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/keduvocdocument/keduvockvtmlcompability.cpp  
2023-04-11 06:15:51.000000000 +0200
@@ -65,7 +65,7 @@
 #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
         int selfDefinedTypeIndex = typeSubtypeString.rightRef( 
typeSubtypeString.count()-1 ).toInt() -1;
 #else
-        int selfDefinedTypeIndex = QStringView(typeSubtypeString).right( 
typeSubtypeString.count()-1 ).toInt() -1;
+        int selfDefinedTypeIndex = QStringView(typeSubtypeString).right( 
typeSubtypeString.length()-1 ).toInt() -1;
 #endif
         return 
static_cast<KEduVocWordType*>(parent->childContainer(selfDefinedTypeIndex));
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/keduvocdocument/tests/CMakeLists.txt 
new/libkeduvocdocument-23.04.0/keduvocdocument/tests/CMakeLists.txt
--- old/libkeduvocdocument-22.12.3/keduvocdocument/tests/CMakeLists.txt 
2023-02-25 06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/keduvocdocument/tests/CMakeLists.txt 
2023-04-11 06:15:51.000000000 +0200
@@ -8,7 +8,7 @@
 macro(KEDUVOCDOCUMENT_EXECUTABLE_TESTS)
    foreach(_testname ${ARGN})
       add_executable(${_testname} ${_testname}.cpp) # TODO NOGUI
-      target_link_libraries(${_testname} KEduVocDocument KF5::Archive 
KF5::CoreAddons KF5::I18n)
+      target_link_libraries(${_testname} KEduVocDocument 
KF${KF_MAJOR_VERSION}::Archive KF${KF_MAJOR_VERSION}::CoreAddons 
KF${KF_MAJOR_VERSION}::I18n)
       ecm_mark_as_test(${_testname})
    endforeach(_testname)
 endmacro()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/po/ar/libkeduvocdocument.po 
new/libkeduvocdocument-23.04.0/po/ar/libkeduvocdocument.po
--- old/libkeduvocdocument-22.12.3/po/ar/libkeduvocdocument.po  2023-02-25 
06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/po/ar/libkeduvocdocument.po  2023-04-11 
06:15:51.000000000 +0200
@@ -102,7 +102,7 @@
 
 #: keduvocdocument/keduvocdocument.cpp:840
 msgid "KDE Vocabulary Document"
-msgstr "مستند مفردات كدي"
+msgstr "مستند مفردات كِيدِي"
 
 #: keduvocdocument/keduvocdocument.cpp:841
 msgid "KWordQuiz Document"
@@ -498,7 +498,7 @@
 
 #, fuzzy
 #~ msgid "Vocabulary"
-#~ msgstr "كدي المفردات مستند"
+#~ msgstr "كِيدِي المفردات مستند"
 
 #, fuzzy
 #~ msgid ""
@@ -516,7 +516,7 @@
 
 #, fuzzy
 #~ msgid "This is not a KDE Vocabulary document."
-#~ msgstr "هذا هو ليس a كدي المفردات مستند."
+#~ msgstr "هذا هو ليس a كِيدِي المفردات مستند."
 
 #, fuzzy
 #~ msgid "missing identifier elements from identifiers tag"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/po/fr/libkeduvocdocument.po 
new/libkeduvocdocument-23.04.0/po/fr/libkeduvocdocument.po
--- old/libkeduvocdocument-22.12.3/po/fr/libkeduvocdocument.po  2023-02-25 
06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/po/fr/libkeduvocdocument.po  2023-04-11 
06:15:51.000000000 +0200
@@ -300,7 +300,7 @@
 msgid "Indefinite"
 msgstr "Indéfini"
 
-# Xavier : type  de verbe pour la conjugaison : régulier ou irrégulier
+# Xavier : type de verbe pour la conjugaison : régulier ou irrégulier
 #: keduvocdocument/keduvockvtmlcompability.cpp:50
 #: keduvocdocument/keduvockvtmlcompability.cpp:257
 #, kde-format
@@ -310,7 +310,7 @@
 msgid "Regular"
 msgstr "Régulier"
 
-# Xavier : type  de verbe pour la conjugaison : régulier ou irrégulier
+# Xavier : type de verbe pour la conjugaison : régulier ou irrégulier
 #: keduvocdocument/keduvockvtmlcompability.cpp:51
 #: keduvocdocument/keduvockvtmlcompability.cpp:260
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/po/ka/libkeduvocdocument.po 
new/libkeduvocdocument-23.04.0/po/ka/libkeduvocdocument.po
--- old/libkeduvocdocument-22.12.3/po/ka/libkeduvocdocument.po  2023-02-25 
06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/po/ka/libkeduvocdocument.po  2023-04-11 
06:15:51.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: libkeduvocdocument\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-01-04 00:40+0000\n"
-"PO-Revision-Date: 2022-11-25 12:16+0100\n"
+"PO-Revision-Date: 2022-11-27 11:30+0100\n"
 "Last-Translator: Temuri Doghonadze <[email protected]>\n"
 "Language-Team: Georgian <[email protected]>\n"
 "Language: ka\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkeduvocdocument-22.12.3/po/zh_CN/libkeduvocdocument.po 
new/libkeduvocdocument-23.04.0/po/zh_CN/libkeduvocdocument.po
--- old/libkeduvocdocument-22.12.3/po/zh_CN/libkeduvocdocument.po       
2023-02-25 06:19:16.000000000 +0100
+++ new/libkeduvocdocument-23.04.0/po/zh_CN/libkeduvocdocument.po       
2023-04-11 06:15:51.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-01-04 00:40+0000\n"
-"PO-Revision-Date: 2023-02-24 12:58\n"
+"PO-Revision-Date: 2023-04-10 14:12\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to