Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kirigami-gallery for
openSUSE:Factory checked in at 2021-08-16 10:10:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kirigami-gallery (Old)
and /work/SRC/openSUSE:Factory/.kirigami-gallery.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kirigami-gallery"
Mon Aug 16 10:10:14 2021 rev:35 rq:911684 version:21.08.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kirigami-gallery/kirigami-gallery.changes
2021-07-10 00:01:29.067523623 +0200
+++
/work/SRC/openSUSE:Factory/.kirigami-gallery.new.1899/kirigami-gallery.changes
2021-08-16 10:15:36.702801505 +0200
@@ -1,0 +2,31 @@
+Fri Aug 6 09:38:56 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.08.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/gear/21.08.0
+- No code change since 21.07.90
+
+-------------------------------------------------------------------
+Fri Jul 30 10:05:04 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.07.90
+ * New feature release
+- No code change since 21.07.80
+
+-------------------------------------------------------------------
+Sat Jul 17 20:06:10 UTC 2021 - Christophe Giboudeaux <[email protected]>
+
+- Update to 21.07.80
+ * New feature release
+- Changes since 21.04.3:
+ * Remove unneeded check
+ * Use C++17
+ * Make CMake code consistent
+ * Require CMake 3.16
+ * Fix missing text in button
+ * Use qqc2-desktop-style by default
+ * Set nicer window title
+ * CMake cleanup
+
+-------------------------------------------------------------------
Old:
----
kirigami-gallery-21.04.3.tar.xz
kirigami-gallery-21.04.3.tar.xz.sig
New:
----
kirigami-gallery-21.08.0.tar.xz
kirigami-gallery-21.08.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kirigami-gallery.spec ++++++
--- /var/tmp/diff_new_pack.tm6tZB/_old 2021-08-16 10:15:37.098801029 +0200
+++ /var/tmp/diff_new_pack.tm6tZB/_new 2021-08-16 10:15:37.102801024 +0200
@@ -18,7 +18,7 @@
%bcond_without lang
Name: kirigami-gallery
-Version: 21.04.3
+Version: 21.08.0
Release: 0
Summary: Gallery application built using Kirigami
License: LGPL-2.0-or-later
@@ -45,7 +45,6 @@
Requires: kitemmodels-imports
Requires: libqt5-qtgraphicaleffects
Requires: libqt5-qtquickcontrols2
-Recommends: %{name}-lang
%description
Example application which uses all features from kirigami,
++++++ kirigami-gallery-21.04.3.tar.xz -> kirigami-gallery-21.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kirigami-gallery-21.04.3/CMakeLists.txt
new/kirigami-gallery-21.08.0/CMakeLists.txt
--- old/kirigami-gallery-21.04.3/CMakeLists.txt 2021-07-06 07:29:42.000000000
+0200
+++ new/kirigami-gallery-21.08.0/CMakeLists.txt 2021-08-06 02:25:30.000000000
+0200
@@ -1,51 +1,40 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.16)
-set(KF5_VERSION "5.47.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.47.0") # handled by release scripts
+# KDE Release Service Version, managed by release script
+set (RELEASE_SERVICE_VERSION_MAJOR "21")
+set (RELEASE_SERVICE_VERSION_MINOR "08")
+set (RELEASE_SERVICE_VERSION_MICRO "0")
+set (RELEASE_SERVICE_VERSION
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
-project(kirigami2gallery VERSION ${KF5_VERSION})
+project(kirigami2gallery VERSION ${RELEASE_SERVICE_VERSION})
-set(REQUIRED_QT_VERSION 5.8.0)
+set(REQUIRED_QT_VERSION "5.15.0")
+set(KF5_DEP_VERSION "5.79.0")
-SET(CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD 17)
-################# Disallow in-source build #################
+find_package(ECM ${KF5_DEP_VERSION} REQUIRED)
-if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
- message(FATAL_ERROR "kirigami gallery requires an out of source build.
Please create a separate build directory and run 'cmake path_to_kirigami
[options]' there.")
-endif()
-
-# Make CPack available to easy generate binary packages
-include(CPack)
-include(FeatureSummary)
+# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is
checked
+set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
find_package(Qt5 ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE COMPONENTS Core
Quick Gui Svg QuickControls2)
-set(CMAKE_AUTOMOC ON)
-set(AUTOMOC_MOC_OPTIONS -Muri=org.kde.kirigami)
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-################# set KDE specific information #################
-
-find_package(ECM 5.47.0 NO_MODULE)
-set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake
Modules." URL
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules")
+find_package(KF5 ${KF5_DEP_VERSION} REQUIRED COMPONENTS Kirigami2 ItemModels)
option(ENABLE_QML_PROFILING "Enable QML profiler support" ON)
-# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is
checked
-set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
-
+include(FeatureSummary)
include(KDEInstallDirs)
include(KDECMakeSettings)
include(KDECompilerSettings NO_POLICY_SCOPE)
include(ECMPoQmTools)
include(ECMQMLModules)
-if(CMAKE_SYSTEM_NAME STREQUAL "Android")
+if(ANDROID)
find_package(Qt5AndroidExtras ${REQUIRED_QT_VERSION} REQUIRED)
endif()
-
ecm_find_qmlmodule(QtGraphicalEffects 1.0)
ecm_find_qmlmodule(org.kde.kitemmodels 1.0)
@@ -53,9 +42,7 @@
add_subdirectory(src)
-if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
- ecm_install_po_files_as_qm(po)
-endif()
+ecm_install_po_files_as_qm(po)
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES
FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kirigami-gallery-21.04.3/org.kde.kirigami2.gallery.appdata.xml
new/kirigami-gallery-21.08.0/org.kde.kirigami2.gallery.appdata.xml
--- old/kirigami-gallery-21.04.3/org.kde.kirigami2.gallery.appdata.xml
2021-07-05 21:24:47.000000000 +0200
+++ new/kirigami-gallery-21.08.0/org.kde.kirigami2.gallery.appdata.xml
2021-08-05 00:10:15.000000000 +0200
@@ -146,9 +146,9 @@
<value
key="KDE::google_play">https://play.google.com/store/apps/details?id=org.kde.kirigamigallery</value>
</custom>
<releases>
+ <release version="21.08.0" date="2021-08-12"/>
<release version="5.47.0" date="2021-07-08"/>
<release version="5.47.0" date="2021-06-10"/>
<release version="5.47.0" date="2021-05-13"/>
- <release version="5.47.0" date="2021-04-22"/>
</releases>
</component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kirigami-gallery-21.04.3/poqm/pa/kirigamigallery_qt.po
new/kirigami-gallery-21.08.0/poqm/pa/kirigamigallery_qt.po
--- old/kirigami-gallery-21.04.3/poqm/pa/kirigamigallery_qt.po 2021-07-06
07:29:42.000000000 +0200
+++ new/kirigami-gallery-21.08.0/poqm/pa/kirigamigallery_qt.po 2021-08-06
02:25:30.000000000 +0200
@@ -2,8 +2,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2021-01-01 13:05-0800\n"
-"Last-Translator: A S Alam <[email protected]>\n"
+"PO-Revision-Date: 2021-04-25 13:00-0700\n"
+"Last-Translator: A S Alam <[email protected]>\n"
"Language-Team: Punjabi <[email protected]>\n"
"Language: pa\n"
"MIME-Version: 1.0\n"
@@ -332,7 +332,6 @@
msgstr ""
#: contents/ui/gallery/InlineMessagesGallery.qml:35
-#, fuzzy
msgctxt "InlineMessagesGallery|"
msgid "Info"
msgstr "?????????????????????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kirigami-gallery-21.04.3/poqm/sk/kirigamigallery_qt.po
new/kirigami-gallery-21.08.0/poqm/sk/kirigamigallery_qt.po
--- old/kirigami-gallery-21.04.3/poqm/sk/kirigamigallery_qt.po 2021-07-06
07:29:42.000000000 +0200
+++ new/kirigami-gallery-21.08.0/poqm/sk/kirigamigallery_qt.po 2021-08-06
02:25:30.000000000 +0200
@@ -1,9 +1,9 @@
# Roman Paholik <[email protected]>, 2018, 2019.
-# Matej Mrenica <[email protected]>, 2019, 2020.
+# Matej Mrenica <[email protected]>, 2019, 2020, 2021.
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2020-02-18 19:35+0100\n"
+"PO-Revision-Date: 2021-04-11 18:20+0200\n"
"Last-Translator: Matej Mrenica <[email protected]>\n"
"Language-Team: Slovak <[email protected]>\n"
"Language: sk\n"
@@ -11,7 +11,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 19.12.2\n"
+"X-Generator: Lokalize 21.03.90\n"
"X-Qt-Contexts: true\n"
#: contents/ui/gallery/ActionToolBarGallery.qml:35
@@ -176,10 +176,10 @@
"used, the title and icon in the banner property shouldn't be used. If a "
"custom footer is used (which is discouraged), actions shouldn't be used."
msgstr ""
-"Je mo??n?? prisp??sobi?? vzh??ad kariet, ak nie je potrebn?? okolie
hlavi??iek. "
-"Toto sa oby??ajne neodpor????a na dosiahnutie lep??ej konzistencie, ale v "
-"niektor??ch pr??padoch dizajn vy??aduje lep???? vzh??ad, ako je vidno v tomto
"
-"pr??klade karty. Ak sa pou??ije vlastn?? hlavi??ka, titulok a ikona vo "
+"Je mo??n?? prisp??sobi?? vzh??ad a dojem kariet, ak nie je potrebn?? okolie "
+"hlavi??iek. Toto sa oby??ajne neodpor????a na dosiahnutie lep??ej
konzistencie, "
+"ale v niektor??ch pr??padoch dizajn vy??aduje lep???? vzh??ad, ako je vidno v
"
+"tomto pr??klade karty. Ak sa pou??ije vlastn?? hlavi??ka, titulok a ikona vo "
"vlastnosti bannera by sa nemala pou??i??. Ak sa pou??ije vlastn?? p??ta (??o
sa "
"neodpor????a), nemali by sa pou??i?? akcie."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kirigami-gallery-21.04.3/poqm/zh_CN/kirigamigallery_qt.po
new/kirigami-gallery-21.08.0/poqm/zh_CN/kirigamigallery_qt.po
--- old/kirigami-gallery-21.04.3/poqm/zh_CN/kirigamigallery_qt.po
2021-07-06 07:29:42.000000000 +0200
+++ new/kirigami-gallery-21.08.0/poqm/zh_CN/kirigamigallery_qt.po
2021-08-06 02:25:30.000000000 +0200
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2021-06-20 07:38\n"
+"PO-Revision-Date: 2021-07-26 13:50\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/kirigami-gallery-21.04.3/src/CMakeLists.txt
new/kirigami-gallery-21.08.0/src/CMakeLists.txt
--- old/kirigami-gallery-21.04.3/src/CMakeLists.txt 2021-07-05
21:24:47.000000000 +0200
+++ new/kirigami-gallery-21.08.0/src/CMakeLists.txt 2021-08-05
00:10:15.000000000 +0200
@@ -3,21 +3,6 @@
add_definitions(-DQT_QML_DEBUG)
endif()
-set(kirigami2gallery_SRCS
- main.cpp
- InfoData.cpp
- )
-
-qt5_add_resources(RESOURCES resources.qrc)
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Android")
- find_package(KF5Kirigami2 ${KF5_DEP_VERSION})
- find_package(KF5ItemModels ${KF5_DEP_VERSION})
- set(kirigami2gallery_EXTRA_LIBS Qt5::AndroidExtras
- #FIXME: we shouldn't have to link to it but otherwise the lib won't be
packaged on Android
- Qt5::QuickControls2 KF5::Kirigami2 KF5::ItemModels)
-endif()
-
find_program(kpackagetool_cmd kpackagetool5)
if (kpackagetool_cmd)
set(component org.kde.kirigami2.gallery)
@@ -42,13 +27,16 @@
message(WARNING "KPackage components should be specified in reverse domain
notation. Appstream information won't be generated for ${component}.")
endif()
-add_executable(kirigami2gallery ${kirigami2gallery_SRCS} ${RESOURCES})
-target_link_libraries(kirigami2gallery Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg
${kirigami2gallery_EXTRA_LIBS})
-
-install(TARGETS kirigami2gallery ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
-install(FILES data/metadata.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} RENAME
org.kde.kirigami2.gallery.desktop)
+add_executable(kirigami2gallery
+ main.cpp
+ InfoData.cpp
+ resources.qrc)
+target_link_libraries(kirigami2gallery Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg
Qt5::QuickControls2 KF5::Kirigami2 KF5::ItemModels)
-if (CMAKE_SYSTEM_NAME STREQUAL "Android")
- find_package(KF5Kirigami2 REQUIRED)
+if (ANDROID)
+ target_link_libraries(kirigami2gallery Qt5::AndroidExtras)
kirigami_package_breeze_icons(ICONS applications-graphics view-list-icons
folder-sync view-list-details configure document-edit dialog-information
dialog-positive dialog-warning dialog-error dialog-cancel document-decrypt
system-run mail-reply-sender bookmarks folder media-record-symbolic
add-placemark address-book-new-symbolic view-right-new view-right-close
documentinfo go-home)
endif()
+
+install(TARGETS kirigami2gallery ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
+install(FILES data/metadata.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} RENAME
org.kde.kirigami2.gallery.desktop)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kirigami-gallery-21.04.3/src/data/contents/ui/gallery/ActionToolBarGallery.qml
new/kirigami-gallery-21.08.0/src/data/contents/ui/gallery/ActionToolBarGallery.qml
---
old/kirigami-gallery-21.04.3/src/data/contents/ui/gallery/ActionToolBarGallery.qml
2021-07-05 21:24:47.000000000 +0200
+++
new/kirigami-gallery-21.08.0/src/data/contents/ui/gallery/ActionToolBarGallery.qml
2021-08-05 00:10:15.000000000 +0200
@@ -137,7 +137,7 @@
anchors.fill: parent
alignment: page.alignment
actions: [
- Action { text: "Action 1"; displayComponent:
Controls.Button { text: kirigamiAction.text } },
+ Action { id: kirigamiAction; text: "Action 1";
displayComponent: Controls.Button { text: kirigamiAction.text } },
Action {
text: "Action 2";
displayComponent: Controls.TextField {
placeholderText: kirigamiAction.text; Layout.fillWidth: true;
Layout.maximumWidth: 350 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kirigami-gallery-21.04.3/src/main.cpp
new/kirigami-gallery-21.08.0/src/main.cpp
--- old/kirigami-gallery-21.04.3/src/main.cpp 2021-07-05 21:24:47.000000000
+0200
+++ new/kirigami-gallery-21.08.0/src/main.cpp 2021-08-05 00:10:15.000000000
+0200
@@ -18,6 +18,7 @@
*/
#include <QQmlApplicationEngine>
+#include <QQuickStyle>
#include <QtQml>
#include <QUrl>
#include <QColor>
@@ -26,7 +27,6 @@
#ifdef Q_OS_ANDROID
#include <QtAndroid>
#include <QGuiApplication>
-#include <QQuickStyle>
// WindowManager.LayoutParams
#define FLAG_TRANSLUCENT_STATUS 0x04000000
@@ -43,11 +43,16 @@
{
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
+ QGuiApplication::setApplicationDisplayName(QStringLiteral("Kirigami
Gallery"));
//The desktop QQC2 style needs it to be a QApplication
#ifdef Q_OS_ANDROID
QGuiApplication app(argc, argv);
QQuickStyle::setStyle(QStringLiteral("Material"));
#else
+ // Default to org.kde.desktop style unless the user forces another style
+ if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) {
+ QQuickStyle::setStyle(QStringLiteral("org.kde.desktop"));
+ }
QApplication app(argc, argv);
#endif