Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kiconthemes for openSUSE:Factory checked in at 2022-03-14 19:34:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kiconthemes (Old) and /work/SRC/openSUSE:Factory/.kiconthemes.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kiconthemes" Mon Mar 14 19:34:31 2022 rev:106 rq:961250 version:5.92.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kiconthemes/kiconthemes.changes 2022-02-24 18:21:49.890684299 +0100 +++ /work/SRC/openSUSE:Factory/.kiconthemes.new.25692/kiconthemes.changes 2022-03-14 19:35:56.690045700 +0100 @@ -1,0 +2,14 @@ +Mon Mar 7 09:26:56 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 5.92.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.92.0 +- Changes since 5.91.0: + * Add Qt6 Android CI + * Make the BUILD_DESIGNERPLUGIN option dependent on not cross-compiling + * Fix pixelated icons in item views (kde#450336) + * [KIconEngine] Create high-dpi pixmap in paint + * Read the reference icon already scaled + +------------------------------------------------------------------- Old: ---- kiconthemes-5.91.0.tar.xz kiconthemes-5.91.0.tar.xz.sig New: ---- kiconthemes-5.92.0.tar.xz kiconthemes-5.92.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kiconthemes.spec ++++++ --- /var/tmp/diff_new_pack.rbZV6j/_old 2022-03-14 19:35:57.254046377 +0100 +++ /var/tmp/diff_new_pack.rbZV6j/_new 2022-03-14 19:35:57.258046382 +0100 @@ -17,14 +17,14 @@ %define lname libKF5IconThemes5 -%define _tar_path 5.91 +%define _tar_path 5.92 # 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 released Name: kiconthemes -Version: 5.91.0 +Version: 5.92.0 Release: 0 Summary: Icon GUI utilities License: LGPL-2.1-or-later AND GPL-2.0-or-later ++++++ kiconthemes-5.91.0.tar.xz -> kiconthemes-5.92.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/.gitlab-ci.yml new/kiconthemes-5.92.0/.gitlab-ci.yml --- old/kiconthemes-5.91.0/.gitlab-ci.yml 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/.gitlab-ci.yml 2022-03-05 14:01:35.000000000 +0100 @@ -6,3 +6,4 @@ - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/CMakeLists.txt new/kiconthemes-5.92.0/CMakeLists.txt --- old/kiconthemes-5.91.0/CMakeLists.txt 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/CMakeLists.txt 2022-03-05 14:01:35.000000000 +0100 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.91.0") # handled by release scripts -set(KF_DEP_VERSION "5.91.0") # handled by release scripts +set(KF_VERSION "5.92.0") # handled by release scripts +set(KF_DEP_VERSION "5.92.0") # handled by release scripts project(KIconThemes VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.91.0 NO_MODULE) +find_package(ECM 5.92.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) @@ -23,13 +23,14 @@ include(ECMMarkNonGuiExecutable) include(ECMQtDeclareLoggingCategory) include(ECMAddQch) +include(CMakeDependentOption) set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of deprecated API excluded from the build [default=0].") 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)") -option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON) +cmake_dependent_option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" ON "NOT CMAKE_CROSSCOMPILING" OFF) add_feature_info(DESIGNERPLUGIN ${BUILD_DESIGNERPLUGIN} "Build plugin for Qt Designer") ecm_setup_version(PROJECT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/autotests/kiconengine_scaled_unittest.cpp new/kiconthemes-5.92.0/autotests/kiconengine_scaled_unittest.cpp --- old/kiconthemes-5.91.0/autotests/kiconengine_scaled_unittest.cpp 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/autotests/kiconengine_scaled_unittest.cpp 2022-03-05 14:01:35.000000000 +0100 @@ -4,6 +4,7 @@ SPDX-License-Identifier: LGPL-2.0-or-later */ +#include <QImageReader> #include <QStandardPaths> #include <QTest> @@ -38,12 +39,12 @@ QCOMPARE(image.devicePixelRatio(), 2.0); QCOMPARE(image.size(), QSize(44, 44)); - QImage unscaled; - QVERIFY(unscaled.load(QStringLiteral(":/test-22x22.png"))); + QImageReader reader(QStringLiteral(":/test-22x22.png")); + reader.setScaledSize(QSize(44, 44)); + QImage unscaled = reader.read(); QVERIFY(!unscaled.isNull()); - QCOMPARE(unscaled.size(), QSize(22, 22)); + QCOMPARE(unscaled.size(), QSize(44, 44)); unscaled.setDevicePixelRatio(2.0); - unscaled = unscaled.convertToFormat(image.format()).scaled(44, 44, Qt::KeepAspectRatio, Qt::SmoothTransformation); QCOMPARE(image, unscaled); // center vertically diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/po/pl/kiconthemes5.po new/kiconthemes-5.92.0/po/pl/kiconthemes5.po --- old/kiconthemes-5.91.0/po/pl/kiconthemes5.po 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/po/pl/kiconthemes5.po 2022-03-05 14:01:35.000000000 +0100 @@ -15,20 +15,20 @@ # Robert Gomulka <[email protected]>, 2007, 2008. # Marta Rybczy??ska <[email protected]>, 2007, 2008, 2009, 2010, 2011. # Artur Ch??ond <[email protected]>, 2010. -# ??ukasz Wojni??owicz <[email protected]>, 2011, 2012, 2014, 2016, 2018, 2021. +# ??ukasz Wojni??owicz <[email protected]>, 2011, 2012, 2014, 2016, 2018, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-11-30 00:41+0000\n" -"PO-Revision-Date: 2021-08-01 07:32+0200\n" +"PO-Revision-Date: 2022-02-19 21:15+0100\n" "Last-Translator: ??ukasz Wojni??owicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.12.1\n" +"X-Generator: Lokalize 22.03.70\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" @@ -62,7 +62,7 @@ #: kicondialog.cpp:319 msgid "Mimetypes" -msgstr "Typy MIME" +msgstr "Rodzaje MIME" #: kicondialog.cpp:320 msgid "Places" @@ -70,7 +70,7 @@ #: kicondialog.cpp:321 msgid "Status" -msgstr "Stan" +msgstr "Stany" #: kicondialog.cpp:345 #, kde-format @@ -86,18 +86,18 @@ #: kicondialog.cpp:594 #, kde-format msgid "No icons matching the search" -msgstr "Brak ikon pasuj??cych do szukanej" +msgstr "??adna z ikon nie odpowiada tej szukanej" #: kicondialog.cpp:596 #, kde-format msgid "No icons in this category" -msgstr "Brak ikon w tej kategorii" +msgstr "Nie ma ??adnej ikony w tej kategorii" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) #: kicondialog.cpp:676 kicondialog.ui:14 #, kde-format msgid "Select Icon" -msgstr "Wybierz ikon??" +msgstr "Wyb??r ikony" #: kicondialog.cpp:676 #, kde-format @@ -110,7 +110,7 @@ #: kicondialog.ui:24 #, kde-format msgid "Icon category" -msgstr "Kategoria ikony" +msgstr "Kategoria ikon" #. i18n: ectx: property (placeholderText), widget (QLineEdit, searchLine) #: kicondialog.ui:44 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/po/ro/kiconthemes5.po new/kiconthemes-5.92.0/po/ro/kiconthemes5.po --- old/kiconthemes-5.91.0/po/ro/kiconthemes5.po 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/po/ro/kiconthemes5.po 2022-03-05 14:01:35.000000000 +0100 @@ -5,14 +5,14 @@ # Claudiu Costin <[email protected]>, 2002, 2003, 2004, 2005, 2006. # Claudiu Costin <[email protected]>, 2002. # Sergiu Bivol <[email protected]>, 2008, 2009. -# Sergiu Bivol <[email protected]>, 2010, 2012, 2013, 2020. +# Sergiu Bivol <[email protected]>, 2010, 2012, 2013, 2020, 2022. # Cristian One?? <[email protected]>, 2010, 2011, 2012, 2013. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-11-30 00:41+0000\n" -"PO-Revision-Date: 2020-09-16 01:03+0100\n" +"PO-Revision-Date: 2022-02-05 19:41+0000\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian\n" "Language: ro\n" @@ -21,7 +21,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Lokalize 19.12.3\n" +"X-Generator: Lokalize 21.12.2\n" #: kicondialog.cpp:312 msgid "All" @@ -64,28 +64,25 @@ msgstr "Stare" #: kicondialog.cpp:345 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Other" +#, kde-format msgctxt "Other icons" msgid "Other" msgstr "Altele" #: kicondialog.cpp:392 -#, fuzzy, kde-format -#| msgid "&Browse..." +#, kde-format msgid "Browse???" -msgstr "&R??sfoire..." +msgstr "R??sfoie??te???" #: kicondialog.cpp:594 #, kde-format msgid "No icons matching the search" -msgstr "" +msgstr "Nicio pictogram?? care s?? se potriveasc?? c??ut??rii" #: kicondialog.cpp:596 #, kde-format msgid "No icons in this category" -msgstr "" +msgstr "Nicio pictogram?? ??n aceast?? categorie" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) #: kicondialog.cpp:676 kicondialog.ui:14 @@ -105,11 +102,10 @@ #: kicondialog.ui:24 #, kde-format msgid "Icon category" -msgstr "" +msgstr "Categorie pictograme" #. i18n: ectx: property (placeholderText), widget (QLineEdit, searchLine) #: kicondialog.ui:44 -#, fuzzy, kde-format -#| msgid "Small Icons" +#, kde-format msgid "Search Icons..." -msgstr "Iconi??e mici" +msgstr "Caut?? pictograme???" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/po/ru/kiconthemes5.po new/kiconthemes-5.92.0/po/ru/kiconthemes5.po --- old/kiconthemes-5.91.0/po/ru/kiconthemes5.po 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/po/ru/kiconthemes5.po 2022-03-05 14:01:35.000000000 +0100 @@ -15,19 +15,20 @@ # Inga Barinova <[email protected]>, 2012. # Julia Dronova <[email protected]>, 2012. # Alexander Lakhin <[email protected]>, 2013. +# Alexander Yavorsky <[email protected]>, 2022. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-11-30 00:41+0000\n" -"PO-Revision-Date: 2018-09-15 00:01+0300\n" -"Last-Translator: Alexander Potashev <[email protected]>\n" +"PO-Revision-Date: 2022-02-07 11:03+0300\n" +"Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Environment: kde\n" @@ -75,28 +76,25 @@ msgstr "??????????????????" #: kicondialog.cpp:345 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Other" +#, kde-format msgctxt "Other icons" msgid "Other" msgstr "?????? ??????????????????" #: kicondialog.cpp:392 -#, fuzzy, kde-format -#| msgid "&Browse..." +#, kde-format msgid "Browse???" -msgstr "&????????????????..." +msgstr "???????????????????" #: kicondialog.cpp:594 #, kde-format msgid "No icons matching the search" -msgstr "" +msgstr "???? ?????????????? ???? ???????????? ????????????, ???????????????????????????????? ???????????????? ????????????." #: kicondialog.cpp:596 #, kde-format msgid "No icons in this category" -msgstr "" +msgstr "???? ?????????????? ???? ???????????? ???????????? ???????? ??????????????????" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) #: kicondialog.cpp:676 kicondialog.ui:14 @@ -115,11 +113,10 @@ #: kicondialog.ui:24 #, kde-format msgid "Icon category" -msgstr "" +msgstr "??????????????????" #. i18n: ectx: property (placeholderText), widget (QLineEdit, searchLine) #: kicondialog.ui:44 -#, fuzzy, kde-format -#| msgid "Select Icon" +#, kde-format msgid "Search Icons..." -msgstr "???????????????? ????????????" +msgstr "?????????? ???????????????" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/po/sk/kiconthemes5.po new/kiconthemes-5.92.0/po/sk/kiconthemes5.po --- old/kiconthemes-5.91.0/po/sk/kiconthemes5.po 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/po/sk/kiconthemes5.po 2022-03-05 14:01:35.000000000 +0100 @@ -10,19 +10,20 @@ # Richard Fri?? <[email protected]>, 2012. # Roman Pahol??k <[email protected]>, 2012, 2016. # Mthw <[email protected]>, 2019. +# Matej Mrenica <[email protected]>, 2022. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-11-30 00:41+0000\n" -"PO-Revision-Date: 2019-01-28 12:50+0100\n" -"Last-Translator: Mthw <[email protected]>\n" -"Language-Team: Slovak <[email protected]>\n" +"PO-Revision-Date: 2022-02-14 19:52+0100\n" +"Last-Translator: Matej Mrenica <[email protected]>\n" +"Language-Team: Slovak <[email protected]>\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 18.12.1\n" +"X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: kicondialog.cpp:312 @@ -66,28 +67,25 @@ msgstr "Stav" #: kicondialog.cpp:345 -#, fuzzy, kde-format -#| msgctxt "@item:inmenu" -#| msgid "Other" +#, kde-format msgctxt "Other icons" msgid "Other" msgstr "In??" #: kicondialog.cpp:392 -#, fuzzy, kde-format -#| msgid "&Browse..." +#, kde-format msgid "Browse???" msgstr "&Prech??dza??..." #: kicondialog.cpp:594 #, kde-format msgid "No icons matching the search" -msgstr "" +msgstr "Vyh??ad??vaniu nezodpovedaj?? ??iadne ikony" #: kicondialog.cpp:596 #, kde-format msgid "No icons in this category" -msgstr "" +msgstr "V tejto kateg??rii nie s?? ??iadne ikony" #. i18n: ectx: property (windowTitle), widget (QWidget, IconDialog) #: kicondialog.cpp:676 kicondialog.ui:14 @@ -106,11 +104,10 @@ #: kicondialog.ui:24 #, kde-format msgid "Icon category" -msgstr "" +msgstr "Kateg??ria ikona" #. i18n: ectx: property (placeholderText), widget (QLineEdit, searchLine) #: kicondialog.ui:44 -#, fuzzy, kde-format -#| msgid "Select Icon" +#, kde-format msgid "Search Icons..." -msgstr "Vyberte ikonu" +msgstr "H??ada?? ikony..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/po/zh_CN/kiconthemes5.po new/kiconthemes-5.92.0/po/zh_CN/kiconthemes5.po --- old/kiconthemes-5.91.0/po/zh_CN/kiconthemes5.po 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/po/zh_CN/kiconthemes5.po 2022-03-05 14:01:35.000000000 +0100 @@ -17,7 +17,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-11-30 00:41+0000\n" -"PO-Revision-Date: 2022-01-08 15:22\n" +"PO-Revision-Date: 2022-02-26 05:16\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiconthemes-5.91.0/src/kiconengine.cpp new/kiconthemes-5.92.0/src/kiconengine.cpp --- old/kiconthemes-5.91.0/src/kiconengine.cpp 2022-02-05 22:24:25.000000000 +0100 +++ new/kiconthemes-5.92.0/src/kiconengine.cpp 2022-03-05 14:01:35.000000000 +0100 @@ -78,7 +78,8 @@ } const qreal dpr = painter->device()->devicePixelRatioF(); - painter->drawPixmap(rect, pixmap(rect.size() * dpr, mode, state)); + const QPixmap pix = createPixmap(rect.size() * dpr, dpr, mode, state); + painter->drawPixmap(rect, pix); } QPixmap KIconEngine::createPixmap(const QSize &size, qreal scale, QIcon::Mode mode, QIcon::State state)
