Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kdesignerplugin for openSUSE:Factory
checked in at 2022-01-11 21:16:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdesignerplugin (Old)
and /work/SRC/openSUSE:Factory/.kdesignerplugin.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdesignerplugin"
Tue Jan 11 21:16:13 2022 rev:99 rq:945049 version:5.90.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kdesignerplugin/kdesignerplugin.changes
2021-12-13 20:44:01.768482382 +0100
+++
/work/SRC/openSUSE:Factory/.kdesignerplugin.new.1892/kdesignerplugin.changes
2022-01-11 21:18:41.948934753 +0100
@@ -1,0 +2,10 @@
+Mon Jan 3 12:47:27 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
+- Changes since 5.89.0:
+ * Make it compile against qt6
+
+-------------------------------------------------------------------
Old:
----
kdesignerplugin-5.89.0.tar.xz
kdesignerplugin-5.89.0.tar.xz.sig
New:
----
kdesignerplugin-5.90.0.tar.xz
kdesignerplugin-5.90.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kdesignerplugin.spec ++++++
--- /var/tmp/diff_new_pack.4miV1T/_old 2022-01-11 21:18:42.548935175 +0100
+++ /var/tmp/diff_new_pack.4miV1T/_new 2022-01-11 21:18:42.556935180 +0100
@@ -16,21 +16,21 @@
#
-%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: kdesignerplugin
-Version: 5.89.0
+Version: 5.90.0
Release: 0
Summary: Framework for integration of KDE frameworks widgets with Qt
Designer
License: LGPL-2.1-or-later
Group: System/GUI/KDE
URL: https://www.kde.org
Source: %{name}-%{version}.tar.xz
-%if %{with lang}
+%if %{with released}
Source1: %{name}-%{version}.tar.xz.sig
Source2: frameworks.keyring
%endif
@@ -41,7 +41,7 @@
BuildRequires: cmake(KF5DocTools) >= %{_kf5_bugfix_version}
BuildRequires: cmake(Qt5Core) >= 5.15.0
BuildRequires: cmake(Qt5Designer) >= 5.15.0
-%if %{with lang}
+%if %{with released}
BuildRequires: cmake(Qt5LinguistTools) >= 5.15.0
%endif
@@ -76,14 +76,14 @@
%install
%kf5_makeinstall -C build
-%if %{with lang}
+%if %{with released}
%find_lang %{name} --with-qt --with-man --without-mo --all-name
%endif
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
-%if %{with lang}
+%if %{with released}
%files lang -f %{name}.lang
%endif
++++++ kdesignerplugin-5.89.0.tar.xz -> kdesignerplugin-5.90.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdesignerplugin-5.89.0/CMakeLists.txt
new/kdesignerplugin-5.90.0/CMakeLists.txt
--- old/kdesignerplugin-5.89.0/CMakeLists.txt 2021-12-04 19:35:09.000000000
+0100
+++ new/kdesignerplugin-5.90.0/CMakeLists.txt 2022-01-01 13:29:17.000000000
+0100
@@ -1,11 +1,11 @@
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(KDesignerPlugin VERSION ${KF_VERSION})
include(FeatureSummary)
-find_package(ECM 5.89.0 NO_MODULE)
+find_package(ECM 5.90.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)
@@ -18,9 +18,9 @@
set(REQUIRED_QT_VERSION 5.15.2)
-find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
-find_package(Qt5Designer ${REQUIRED_QT_VERSION} NO_MODULE)
-set_package_properties(Qt5Designer PROPERTIES
+find_package(Qt${QT_MAJOR_VERSION}Core ${REQUIRED_QT_VERSION} REQUIRED
NO_MODULE)
+find_package(Qt${QT_MAJOR_VERSION}Designer ${REQUIRED_QT_VERSION} NO_MODULE)
+set_package_properties(Qt${QT_MAJOR_VERSION}Designer PROPERTIES
PURPOSE "Required to build the Qt Designer plugins"
TYPE OPTIONAL
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdesignerplugin-5.89.0/KF5DesignerPluginMacros.cmake
new/kdesignerplugin-5.90.0/KF5DesignerPluginMacros.cmake
--- old/kdesignerplugin-5.89.0/KF5DesignerPluginMacros.cmake 2021-12-04
19:35:09.000000000 +0100
+++ new/kdesignerplugin-5.90.0/KF5DesignerPluginMacros.cmake 2022-01-01
13:29:17.000000000 +0100
@@ -8,7 +8,7 @@
# Usage:
#
# set(foo_SRCS otherfile.cpp)
-# qt5_add_resources(foo_SRCS widgeticons.qrc)
+# qt_add_resources(foo_SRCS widgeticons.qrc)
# kf5designerplugin_generate_plugin(foo_SRCS foo.widgets)
# add_library(foowidgets MODULE ${foo_SRCS})
#
@@ -59,7 +59,7 @@
# create moc file
set(moc ${CMAKE_CURRENT_BINARY_DIR}/${basename}widgets.moc)
- qt5_generate_moc(${source} ${moc} ${ARGN})
+ qt_generate_moc(${source} ${moc} ${ARGN})
set(${outvar} ${${outvar}} "${source}" "${moc}" PARENT_SCOPE)
endfunction()
@@ -73,7 +73,7 @@
if(f MATCHES "\\.widgets$")
kf5designerplugin_generate_plugin(_files "${f}" TARGET "${target}")
elseif(f MATCHES "\\.qrc$")
- qt5_add_resources(_files "${f}")
+ qt_add_resources(_files "${f}")
elseif(f MATCHES "OPTIONAL")
set(_requiredarg)
else()
@@ -81,23 +81,23 @@
endif()
endforeach()
- if(NOT Qt5Designer_FOUND)
- find_package(Qt5Designer ${REQUIRED_QT_VERSION} ${_requiredarg}
NO_MODULE)
- set_package_properties(Qt5Designer PROPERTIES
+ if(NOT TARGET Qt${QT_MAJOR_VERSION}::Designer)
+ find_package(Qt${QT_MAJOR_VERSION}Designer ${REQUIRED_QT_VERSION}
${_requiredarg} NO_MODULE)
+ set_package_properties(Qt${QT_MAJOR_VERSION}Designer PROPERTIES
PURPOSE "Required to build Qt Designer plugins"
)
endif()
if(NOT Qt5Designer_VERSION_STRING VERSION_LESS 5.5.0 AND NOT
Qt5UiPlugin_FOUND AND NOT CMAKE_VERSION VERSION_LESS 3.0.0)
- find_package(Qt5UiPlugin ${REQUIRED_QT_VERSION} ${_requiredarg}
NO_MODULE)
- set_package_properties(Qt5UiPlugin PROPERTIES
+ find_package(Qt${QT_MAJOR_VERSION}UiPlugin ${REQUIRED_QT_VERSION}
${_requiredarg} NO_MODULE)
+ set_package_properties(Qt${QT_MAJOR_VERSION}UiPlugin PROPERTIES
PURPOSE "Required to build Qt Designer plugins"
)
endif()
- if (Qt5UiPlugin_FOUND)
+ if (TARGET Qt${QT_MAJOR_VERSION}::UiPlugin)
# for some reason, Qt5UiPlugin does not set its _INCLUDE_DIRS
variable. Fill it manually
- get_target_property(Qt5UiPlugin_INCLUDE_DIRS Qt5::UiPlugin
INTERFACE_INCLUDE_DIRECTORIES)
+ get_target_property(Qt${QT_MAJOR_VERSION}UiPlugin_INCLUDE_DIRS
Qt${QT_MAJOR_VERSION}::UiPlugin INTERFACE_INCLUDE_DIRECTORIES)
endif()
- if(Qt5Designer_FOUND)
+ if(TARGET Qt${QT_MAJOR_VERSION}::Designer)
add_library(${target} MODULE ${_files})
target_include_directories(${target}
PRIVATE ${Qt5UiPlugin_INCLUDE_DIRS}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdesignerplugin-5.89.0/autotests/CMakeLists.txt
new/kdesignerplugin-5.90.0/autotests/CMakeLists.txt
--- old/kdesignerplugin-5.89.0/autotests/CMakeLists.txt 2021-12-04
19:35:09.000000000 +0100
+++ new/kdesignerplugin-5.90.0/autotests/CMakeLists.txt 2022-01-01
13:29:17.000000000 +0100
@@ -2,8 +2,8 @@
include(ECMAddTests)
-find_package(Qt5Test ${REQUIRED_QT_VERSION} CONFIG QUIET)
-find_package(Qt5Widgets ${REQUIRED_QT_VERSION} CONFIG QUIET)
+find_package(Qt${QT_MAJOR_VERSION}Test ${REQUIRED_QT_VERSION} CONFIG QUIET)
+find_package(Qt${QT_MAJOR_VERSION}Widgets ${REQUIRED_QT_VERSION} CONFIG QUIET)
if(NOT Qt5Designer_FOUND OR NOT Qt5Test_FOUND OR NOT Qt5Widgets_FOUND)
message(STATUS "Autotests will not be built, as Qt5Designer, Qt5Widgets or
Qt5Test was not found.")
return()
@@ -12,9 +12,9 @@
include(${KDesignerPlugin_SOURCE_DIR}/KF5DesignerPluginMacros.cmake)
kf5designerplugin_add_plugin(testplugin testplugin.widgets testplugin.qrc)
-target_link_libraries(testplugin PRIVATE Qt5::Widgets)
+target_link_libraries(testplugin PRIVATE Qt${QT_MAJOR_VERSION}::Widgets)
kf5designerplugin_add_plugin(minimalplugin minimal.widgets)
-target_link_libraries(minimalplugin PRIVATE Qt5::Widgets)
+target_link_libraries(minimalplugin PRIVATE Qt${QT_MAJOR_VERSION}::Widgets)
macro(kdp_add_tests)
foreach(f ${ARGN})
@@ -22,8 +22,8 @@
ecm_add_test(${f}
TEST_NAME ${_testname}
LINK_LIBRARIES
- Qt5::Test
- Qt5::Widgets
+ Qt${QT_MAJOR_VERSION}::Test
+ Qt${QT_MAJOR_VERSION}::Widgets
)
target_include_directories(${_testname}
PRIVATE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdesignerplugin-5.89.0/po/ca@valencia/kdesignerplugin5_qt.po
new/kdesignerplugin-5.90.0/po/ca@valencia/kdesignerplugin5_qt.po
--- old/kdesignerplugin-5.89.0/po/ca@valencia/kdesignerplugin5_qt.po
2021-12-04 19:35:09.000000000 +0100
+++ new/kdesignerplugin-5.90.0/po/ca@valencia/kdesignerplugin5_qt.po
2022-01-01 13:29:17.000000000 +0100
@@ -1,12 +1,12 @@
# Translation of kdesignerplugin5_qt.po to Catalan (Valencian)
-# Copyright (C) 1998-2015 This_file_is_part_of_KDE
+# Copyright (C) 1998-2020 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.
#
# Sebasti?? Pla i Sanz <[email protected]>, 1998, 1999, 2000, 2001, 2002, 2003,
2004, 2005, 2006, 2007.
-# Antoni Bella P??rez <[email protected]>, 2003, 2006, 2011, 2012, 2013,
2014, 2015.
+# Antoni Bella P??rez <[email protected]>, 2003, 2006, 2011, 2012, 2013,
2014, 2015, 2020.
# Albert Astals Cid <[email protected]>, 2004, 2005, 2007.
-# Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012,
2013, 2014.
+# Josep M. Ferrer <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012,
2013, 2014, 2020.
# Robert Millan <[email protected]>, 2009.
# Orestes Mas <[email protected]>, 2010.
msgid ""
@@ -14,8 +14,8 @@
"Project-Id-Version: kdesignerplugin\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2015-11-07 14:18+0100\n"
-"Last-Translator: Antoni Bella P??rez <[email protected]>\n"
+"PO-Revision-Date: 2020-12-09 19:25+0100\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca@valencia\n"
"MIME-Version: 1.0\n"
@@ -30,7 +30,7 @@
msgctxt "main|"
msgid "Builds Qt widget plugins from an ini style description file."
msgstr ""
-"Construeix connectors d'estri de les Qt des d'un fitxer de descripci?? "
+"Construeix connectors de giny de les Qt des d'un fitxer de descripci?? "
"d'estil ??ini??."
#: kgendesignerplugin.cpp:95
@@ -58,7 +58,7 @@
"Default widget group name to display in designer (deprecated, use "
"DefaultGroup in the input file)."
msgstr ""
-"Nom del grup de l'estri per omissi?? a mostrar al dissenyador (obsolet, useu "
+"Nom del grup del giny predeterminat a mostrar al dissenyador (obsolet, useu "
"??DefaultGroup?? en el fitxer d'entrada)."
#: kgendesignerplugin.cpp:101
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdesignerplugin-5.89.0/po/is/kdesignerplugin5_qt.po
new/kdesignerplugin-5.90.0/po/is/kdesignerplugin5_qt.po
--- old/kdesignerplugin-5.89.0/po/is/kdesignerplugin5_qt.po 2021-12-04
19:35:09.000000000 +0100
+++ new/kdesignerplugin-5.90.0/po/is/kdesignerplugin5_qt.po 2022-01-01
13:29:17.000000000 +0100
@@ -6,84 +6,72 @@
# Richard Allen <[email protected]>, 1998-2004.
# Pjetur G. Hjaltason <[email protected]>, 2003.
# Arnar Le??sson <[email protected]>, 2003, 2005.
-# Sveinn ?? Felli <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 2013.
+# Sveinn ?? Felli <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 2013,
2021.
msgid ""
msgstr ""
"Project-Id-Version: kdelibs4\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2013-05-13 22:40+0000\n"
-"Last-Translator: Sveinn ?? Felli <[email protected]>\n"
-"Language-Team: Icelandic <[email protected]>\n"
+"PO-Revision-Date: 2021-12-07 18:48+0000\n"
+"Last-Translator: Sveinn ?? Felli <[email protected]>\n"
+"Language-Team: Icelandic\n"
"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.2\n"
+"X-Generator: Lokalize 19.12.3\n"
"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Qt-Contexts: true\n"
#: kgendesignerplugin.cpp:88
-#, fuzzy
-#| msgid "Builds Qt widget plugins from an ini style description file."
msgctxt "main|"
msgid "Builds Qt widget plugins from an ini style description file."
-msgstr "B??r til Qt ??forritagr??jur ??r 'ini' l??singaskr??m."
+msgstr "B??r til Qt-vi??m??tsgr??jur ??r 'ini' l??singaskr??m."
#: kgendesignerplugin.cpp:95
-#, fuzzy
-#| msgid "Input file"
msgctxt "main|"
msgid "Input file."
-msgstr "Inntaksskr??"
+msgstr "Inntaksskr??."
#: kgendesignerplugin.cpp:96
-#, fuzzy
-#| msgid "Output file"
msgctxt "main|"
msgid "Output file."
-msgstr "??ttaksskr??"
+msgstr "??ttaksskr??."
#: kgendesignerplugin.cpp:97
-#, fuzzy
-#| msgid "Name of the plugin class to generate"
msgctxt "main|"
msgid ""
"Name of the plugin class to generate (deprecated, use PluginName in the "
"input file)."
-msgstr "Heiti ??forritah??psins sem ?? a?? b??a til"
+msgstr ""
+"Heiti ??forritah??psins sem ?? a?? b??a til (??relt, noti?? PluginName ?? "
+"inntaksskr??nni)."
#: kgendesignerplugin.cpp:98
-#, fuzzy
-#| msgid "Default widget group name to display in designer"
msgctxt "main|"
msgid ""
"Default widget group name to display in designer (deprecated, use "
"DefaultGroup in the input file)."
-msgstr "Sj??lfgefin gr??juh??pur til a?? birta ?? h??nnu??inum"
+msgstr ""
+"Sj??lfgefin gr??juh??pur til a?? birta ?? h??nnu??inum (??relt, noti??
DefaultGroup ?? "
+"inntaksskr??nni)."
#: kgendesignerplugin.cpp:101
msgctxt "kgendesignerplugin about data|"
msgid "kgendesignerplugin"
-msgstr ""
+msgstr "kgendesignerplugin"
#: kgendesignerplugin.cpp:105
-#, fuzzy
-#| msgid "(C) 2004-2005 Ian Reinhart Geiser"
msgctxt "kgendesignerplugin about data|"
msgid "(C) 2004-2005 Ian Reinhart Geiser"
msgstr "(C) 2004-2005 Ian Reinhart Geiser"
#: kgendesignerplugin.cpp:109
-#, fuzzy
-#| msgid "Ian Reinhart Geiser"
msgctxt "kgendesignerplugin about data|"
msgid "Ian Reinhart Geiser"
msgstr "Ian Reinhart Geiser"
#: kgendesignerplugin.cpp:110
-#, fuzzy
-#| msgid "Daniel Molkentin"
msgctxt "kgendesignerplugin about data|"
msgid "Daniel Molkentin"
msgstr "Daniel Molkentin"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdesignerplugin-5.89.0/po/zh_CN/kdesignerplugin5_qt.po
new/kdesignerplugin-5.90.0/po/zh_CN/kdesignerplugin5_qt.po
--- old/kdesignerplugin-5.89.0/po/zh_CN/kdesignerplugin5_qt.po 2021-12-04
19:35:09.000000000 +0100
+++ new/kdesignerplugin-5.90.0/po/zh_CN/kdesignerplugin5_qt.po 2022-01-01
13:29:17.000000000 +0100
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2021-11-30 15:21\n"
+"PO-Revision-Date: 2021-12-22 14:05\n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"