Script 'mail_helper' called by obssrc
Hello community,

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

Package is "sonnet"

Wed Jun 16 20:34:27 2021 rev:94 rq:899780 version:5.83.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes    2021-05-10 
15:37:58.949899587 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new.32437/sonnet.changes 2021-06-16 
20:36:07.471251606 +0200
@@ -1,0 +2,16 @@
+Sat Jun  5 11:59:26 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:
+  * change link order to fix compile (kde#437458)
+  * Bump required CMake version to 3.16
+  * We depend against qt5.15 so we can use compatibility cmake macro
+  * [hspell] Add back zlib dependency
+  * [hspell] Remove unused zlib dependency
+  * Fix cmake warning:
+  * Sonnet add Malayalam trigram
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ sonnet.spec ++++++
--- /var/tmp/diff_new_pack.tQnEnc/_old  2021-06-16 20:36:07.919252370 +0200
+++ /var/tmp/diff_new_pack.tQnEnc/_new  2021-06-16 20:36:07.919252370 +0200
@@ -17,14 +17,14 @@
 
 
 %define sonum   5
-%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:           sonnet
-Version:        5.82.0
+Version:        5.83.0
 Release:        0
 Summary:        KDE spell checking library
 License:        LGPL-2.1-or-later


++++++ sonnet-5.82.0.tar.xz -> sonnet-5.83.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/.gitignore new/sonnet-5.83.0/.gitignore
--- old/sonnet-5.82.0/.gitignore        2021-05-01 14:43:39.000000000 +0200
+++ new/sonnet-5.83.0/.gitignore        2021-06-05 11:27:54.000000000 +0200
@@ -25,3 +25,4 @@
 .clangd
 .idea
 /cmake-build*
+.cache
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/CMakeLists.txt 
new/sonnet-5.83.0/CMakeLists.txt
--- old/sonnet-5.82.0/CMakeLists.txt    2021-05-01 14:43:39.000000000 +0200
+++ new/sonnet-5.83.0/CMakeLists.txt    2021-06-05 11:27:54.000000000 +0200
@@ -1,10 +1,10 @@
-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(Sonnet VERSION ${KF_VERSION})
 
 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)
 
@@ -48,7 +48,6 @@
 
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00)
 ecm_install_po_files_as_qm(po)
-add_definitions(-DQT_NO_FOREACH)
 add_subdirectory(data)
 add_subdirectory(src)
 if (BUILD_TESTING)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/autotests/CMakeLists.txt 
new/sonnet-5.83.0/autotests/CMakeLists.txt
--- old/sonnet-5.82.0/autotests/CMakeLists.txt  2021-05-01 14:43:39.000000000 
+0200
+++ new/sonnet-5.83.0/autotests/CMakeLists.txt  2021-06-05 11:27:54.000000000 
+0200
@@ -7,17 +7,17 @@
 ########### unittests ###############
 
 ecm_add_tests(
- test_filter
- test_core
- test_suggest
- test_settings
- test_autodetect
+ test_filter.cpp
+ test_core.cpp
+ test_suggest.cpp
+ test_settings.cpp
+ test_autodetect.cpp
  NAME_PREFIX "sonnet-"
  LINK_LIBRARIES KF5::SonnetCore Qt5::Test
 )
 
 ecm_add_tests(
- test_highlighter
+ test_highlighter.cpp
  NAME_PREFIX "sonnet-"
  LINK_LIBRARIES KF5::SonnetUi KF5::SonnetCore Qt5::Test
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/data/trigrams/ml_IN 
new/sonnet-5.83.0/data/trigrams/ml_IN
--- old/sonnet-5.82.0/data/trigrams/ml_IN       1970-01-01 01:00:00.000000000 
+0100
+++ new/sonnet-5.83.0/data/trigrams/ml_IN       2021-06-05 11:27:54.000000000 
+0200
@@ -0,0 +1,300 @@
+?????????                      0
+?????????                      1
+?????????                      2
+?????????                      3
+?????????                      4
+?????????                      5
+?????????                      6
+?????????                      7
+?????????                      8
+?????????                      9
+?????????                      10
+?????????                      11
+?????????                      12
+?????????                      13
+?????????                      14
+?????????                      15
+?????????                      16
+?????????                      17
+?????????                      18
+?????????                      19
+?????????                      20
+?????????                      21
+?????????                      22
+?????????                      23
+?????????                      24
+?????????                      25
+?????????                      26
+?????????                      27
+?????????                      28
+?????????                      29
+?????????                      30
+?????????                      31
+?????????                      32
+?????????                      33
+?????????                      34
+?????????                      35
+?????????                      36
+?????????                      37
+?????????                      38
+?????????                      39
+?????????                      40
+?????????                      41
+?????????                      42
+?????????                      43
+?????????                      44
+?????????                      45
+?????????                      46
+?????????                      47
+?????????                      48
+?????????                      49
+?????????                      50
+?????????                      51
+?????????                      52
+?????????                      53
+?????????                      54
+?????????                      55
+?????????                      56
+?????????                      57
+?????????                      58
+?????????                      59
+?????????                      60
+?????????                      61
+?????????                      62
+?????????                      63
+?????????                      64
+?????????                      65
+?????????                      66
+?????????                      67
+?????????                      68
+?????????                      69
+?????????                      70
+?????????                      71
+?????????                      72
+?????????                      73
+?????????                      74
+?????????                      75
+?????????                      76
+?????????                      77
+?????????                      78
+?????????                      79
+?????????                      80
+?????????                      81
+?????????                      82
+?????????                      83
+?????????                      84
+?????????                      85
+?????????                      86
+?????????                      87
+?????????                      88
+?????????                      89
+?????????                      90
+?????????                      91
+?????????                      92
+?????????                      93
+?????????                      94
+?????????                      95
+?????????                      96
+?????????                      97
+?????????                      98
+?????????                      99
+?????????                      100
+?????????                      101
+?????????                      102
+?????????                      103
+?????????                      104
+?????????                      105
+?????????                      106
+?????????                      107
+?????????                      108
+?????????                      109
+?????????                      110
+?????????                      111
+?????????                      112
+?????????                      113
+?????????                      114
+?????????                      115
+?????????                      116
+?????????                      117
+?????????                      118
+?????????                      119
+?????????                      120
+?????????                      121
+?????????                      122
+?????????                      123
+?????????                      124
+?????????                      125
+?????????                      126
+?????????                      127
+?????????                      128
+?????????                      129
+?????????                      130
+?????????                      131
+?????????                      132
+?????????                      133
+?????????                      134
+?????????                      135
+?????????                      136
+?????????                      137
+?????????                      138
+?????????                      139
+?????????                      140
+?????????                      141
+?????????                      142
+?????????                      143
+?????????                      144
+?????????                      145
+?????????                      146
+?????????                      147
+?????????                      148
+?????????                      149
+?????????                      150
+?????????                      151
+?????????                      152
+?????????                      153
+?????????                      154
+?????????                      155
+?????????                      156
+?????????                      157
+?????????                      158
+?????????                      159
+?????????                      160
+?????????                      161
+?????????                      162
+?????????                      163
+?????????                      164
+?????????                      165
+?????????                      166
+?????????                      167
+?????????                      168
+?????????                      169
+?????????                      170
+?????????                      171
+?????????                      172
+?????????                      173
+?????????                      174
+?????????                      175
+?????????                      176
+?????????                      177
+?????????                      178
+?????????                      179
+?????????                      180
+?????????                      181
+?????????                      182
+?????????                      183
+?????????                      184
+?????????                      185
+?????????                      186
+?????????                      187
+?????????                      188
+?????????                      189
+?????????                      190
+?????????                      191
+?????????                      192
+?????????                      193
+?????????                      194
+?????????                      195
+?????????                      196
+?????????                      197
+?????????                      198
+?????????                      199
+?????????                      200
+?????????                      201
+?????????                      202
+?????????                      203
+?????????                      204
+?????????                      205
+?????????                      206
+?????????                      207
+?????????                      208
+?????????                      209
+?????????                      210
+?????????                      211
+?????????                      212
+?????????                      213
+?????????                      214
+?????????                      215
+?????????                      216
+?????????                      217
+?????????                      218
+?????????                      219
+?????????                      220
+?????????                      221
+?????????                      222
+?????????                      223
+?????????                      224
+?????????                      225
+?????????                      226
+?????????                      227
+?????????                      228
+?????????                      229
+?????????                      230
+?????????                      231
+?????????                      232
+?????????                      233
+?????????                      234
+?????????                      235
+?????????                      236
+?????????                      237
+?????????                      238
+?????????                      239
+?????????                      240
+?????????                      241
+?????????                      242
+?????????                      243
+?????????                      244
+?????????                      245
+?????????                      246
+?????????                      247
+?????????                      248
+?????????                      249
+?????????                      250
+?????????                      251
+?????????                      252
+?????????                      253
+?????????                      254
+?????????                      255
+?????????                      256
+?????????                      257
+?????????                      258
+?????????                      259
+?????????                      260
+?????????                      261
+?????????                      262
+?????????                      263
+?????????                      264
+?????????                      265
+?????????                      266
+?????????                      267
+?????????                      268
+?????????                      269
+?????????                      270
+?????????                      271
+?????????                      272
+?????????                      273
+?????????                      274
+?????????                      275
+?????????                      276
+?????????                      277
+?????????                      278
+?????????                      279
+?????????                      280
+?????????                      281
+?????????                      282
+?????????                      283
+?????????                      284
+?????????                      285
+?????????                      286
+?????????                      287
+?????????                      288
+?????????                      289
+?????????                      290
+?????????                      291
+?????????                      292
+?????????                      293
+?????????                      294
+?????????                      295
+?????????                      296
+?????????                      297
+?????????                      298
+?????????                      299
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/po/zh_CN/sonnet5_qt.po 
new/sonnet-5.83.0/po/zh_CN/sonnet5_qt.po
--- old/sonnet-5.82.0/po/zh_CN/sonnet5_qt.po    2021-05-01 14:43:39.000000000 
+0200
+++ new/sonnet-5.83.0/po/zh_CN/sonnet5_qt.po    2021-06-05 11:27:54.000000000 
+0200
@@ -14,7 +14,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2021-04-24 15:43\n"
+"PO-Revision-Date: 2021-06-03 16:06\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/src/core/CMakeLists.txt 
new/sonnet-5.83.0/src/core/CMakeLists.txt
--- old/sonnet-5.82.0/src/core/CMakeLists.txt   2021-05-01 14:43:39.000000000 
+0200
+++ new/sonnet-5.83.0/src/core/CMakeLists.txt   2021-06-05 11:27:54.000000000 
+0200
@@ -1,5 +1,3 @@
-project(sonnetcore)
-
 set(sonnetcore_SRCS
    loader.cpp
    client.cpp
@@ -19,7 +17,7 @@
     add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/data/trigrams.map"
                        COMMAND KF5::parsetrigrams 
"${CMAKE_SOURCE_DIR}/data/trigrams" > "${CMAKE_BINARY_DIR}/data/trigrams.map")
     configure_file(${CMAKE_SOURCE_DIR}/data/trigrams.qrc.in 
${CMAKE_BINARY_DIR}/data/trigrams.qrc @ONLY)
-    qt5_add_resources(sonnetcore_SRCS "${CMAKE_BINARY_DIR}/data/trigrams.qrc")
+    qt_add_resources(sonnetcore_SRCS "${CMAKE_BINARY_DIR}/data/trigrams.qrc")
 endif()
 
 ecm_qt_declare_logging_category(sonnetcore_SRCS
@@ -60,7 +58,7 @@
 
 target_link_libraries(KF5SonnetCore PUBLIC Qt5::Core)
 
-set_target_properties(KF5SonnetCore PROPERTIES VERSION ${SONNET_VERSION_STRING}
+set_target_properties(KF5SonnetCore PROPERTIES VERSION ${SONNET_VERSION}
                                                SOVERSION ${SONNET_SOVERSION}
                                                EXPORT_NAME SonnetCore
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/src/plugins/hspell/CMakeLists.txt 
new/sonnet-5.83.0/src/plugins/hspell/CMakeLists.txt
--- old/sonnet-5.82.0/src/plugins/hspell/CMakeLists.txt 2021-05-01 
14:43:39.000000000 +0200
+++ new/sonnet-5.83.0/src/plugins/hspell/CMakeLists.txt 2021-06-05 
11:27:54.000000000 +0200
@@ -1,11 +1,11 @@
+include_directories(${HSPELL_INCLUDE_DIR})
+
 find_package(ZLIB)
 set_package_properties(ZLIB PROPERTIES DESCRIPTION "Support for gzip 
compressed files and data streams"
                        URL "http://www.zlib.net";
                        TYPE REQUIRED
                        PURPOSE "Required by the hspell sonnet plugin"
-                      )
-
-include_directories(${HSPELL_INCLUDE_DIR})
+                       )
 
 
 ########### next target ###############
@@ -23,7 +23,7 @@
 
 add_library(sonnet_hspell MODULE ${sonnet_hspell_PART_SRCS})
 
-target_link_libraries(sonnet_hspell PRIVATE KF5::SonnetCore 
${HSPELL_LIBRARIES} ${ZLIB_LIBRARY})
+target_link_libraries(sonnet_hspell PRIVATE KF5::SonnetCore 
${HSPELL_LIBRARIES} ZLIB::ZLIB)
 
 install(TARGETS sonnet_hspell  DESTINATION 
${KDE_INSTALL_PLUGINDIR}/kf5/sonnet/)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.82.0/src/ui/CMakeLists.txt 
new/sonnet-5.83.0/src/ui/CMakeLists.txt
--- old/sonnet-5.82.0/src/ui/CMakeLists.txt     2021-05-01 14:43:39.000000000 
+0200
+++ new/sonnet-5.83.0/src/ui/CMakeLists.txt     2021-06-05 11:27:54.000000000 
+0200
@@ -1,5 +1,3 @@
-project(sonnetui)
-
 ecm_create_qm_loader(sonnet_QM_LOADER sonnet5_qt)
 
 set(sonnetui_SRCS
@@ -40,7 +38,7 @@
   REQUIRED_HEADERS SonnetUi_HEADERS
 )
 
-qt5_wrap_ui(sonnetui_SRCS ${sonnetui_UI})
+qt_wrap_ui(sonnetui_SRCS ${sonnetui_UI})
 
 add_library(KF5SonnetUi ${sonnetui_SRCS})
 ecm_generate_export_header(KF5SonnetUi
@@ -59,7 +57,7 @@
     PRIVATE KF5::SonnetCore
 )
 
-set_target_properties(KF5SonnetUi PROPERTIES VERSION ${SONNET_VERSION_STRING}
+set_target_properties(KF5SonnetUi PROPERTIES VERSION ${SONNET_VERSION}
                                              SOVERSION ${SONNET_SOVERSION}
                                              EXPORT_NAME SonnetUi
 )

Reply via email to