Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package solid for openSUSE:Factory checked in at 2021-06-16 20:34:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/solid (Old) and /work/SRC/openSUSE:Factory/.solid.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "solid" Wed Jun 16 20:34:26 2021 rev:96 rq:899779 version:5.83.0 Changes: -------- --- /work/SRC/openSUSE:Factory/solid/solid.changes 2021-05-10 15:37:57.957903512 +0200 +++ /work/SRC/openSUSE:Factory/.solid.new.32437/solid.changes 2021-06-16 20:36:06.531250002 +0200 @@ -1,0 +2,11 @@ +Sat Jun 5 11:59:25 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: + * Bump required CMake version to 3.16 + * Ensure inherited PIMPL instances are properly destructed + +------------------------------------------------------------------- Old: ---- solid-5.82.0.tar.xz solid-5.82.0.tar.xz.sig New: ---- solid-5.83.0.tar.xz solid-5.83.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ solid.spec ++++++ --- /var/tmp/diff_new_pack.DlG3gd/_old 2021-06-16 20:36:07.031250855 +0200 +++ /var/tmp/diff_new_pack.DlG3gd/_new 2021-06-16 20:36:07.031250855 +0200 @@ -17,10 +17,10 @@ %define lname libKF5Solid5 -%define _tar_path 5.82 +%define _tar_path 5.83 %bcond_without lang Name: solid -Version: 5.82.0 +Version: 5.83.0 Release: 0 Summary: KDE Desktop hardware abstraction License: LGPL-2.1-or-later ++++++ solid-5.82.0.tar.xz -> solid-5.83.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/.gitignore new/solid-5.83.0/.gitignore --- old/solid-5.82.0/.gitignore 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/.gitignore 2021-06-05 11:27:40.000000000 +0200 @@ -25,3 +25,4 @@ .clangd .idea /cmake-build* +.cache diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/CMakeLists.txt new/solid-5.83.0/CMakeLists.txt --- old/solid-5.82.0/CMakeLists.txt 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/CMakeLists.txt 2021-06-05 11:27:40.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(Solid 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) @@ -82,7 +82,6 @@ remove_definitions(-DQT_NO_CAST_FROM_ASCII) remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY) -add_definitions(-DQT_NO_FOREACH) add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00) ecm_install_po_files_as_qm(po) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/cmake/FindUDev.cmake new/solid-5.83.0/cmake/FindUDev.cmake --- old/solid-5.82.0/cmake/FindUDev.cmake 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/cmake/FindUDev.cmake 1970-01-01 01:00:00.000000000 +0100 @@ -1,62 +0,0 @@ -#.rst: -# FindUDev -# -------- -# -# Try to find the UDev library, once done this will define: -# -# ``UDev_FOUND`` -# System has UDev. -# -# ``UDev_INCLUDE_DIRS`` -# The libudev include directory. -# -# ``UDev_LIBRARIES`` -# The libudev libraries. -# -# ``UDev_VERSION`` -# The libudev version. -# -# If ``UDev_FOUND`` is TRUE, the following imported target -# will be available: -# -# ``UDev::UDev`` -# The UDev library - -#============================================================================= -# SPDX-FileCopyrightText: 2010 Rafael Fern??ndez L??pez <[email protected]> -# SPDX-FileCopyrightText: 2019 Volker Krause <[email protected]> -# -# SPDX-License-Identifier: BSD-3-Clause -#============================================================================= - -find_package(PkgConfig QUIET) -pkg_check_modules(PC_UDEV QUIET libudev) - -find_path(UDev_INCLUDE_DIRS NAMES libudev.h HINTS ${PC_UDEV_INCLUDE_DIRS}) -find_library(UDev_LIBRARIES NAMES udev HINTS ${PC_UDEV_LIBRARY_DIRS}) - -set(UDev_VERSION ${PC_UDEV_VERSION}) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(UDev - FOUND_VAR UDev_FOUND - REQUIRED_VARS UDev_INCLUDE_DIRS UDev_LIBRARIES - VERSION_VAR UDev_VERSION -) - -mark_as_advanced(UDev_INCLUDE_DIRS UDev_LIBRARIES) - -if(UDev_FOUND AND NOT TARGET UDev::UDev) - add_library(UDev::UDev UNKNOWN IMPORTED) - set_target_properties(UDev::UDev PROPERTIES - IMPORTED_LOCATION "${UDev_LIBRARIES}" - INTERFACE_INCLUDE_DIRECTORIES "${UDev_INCLUDE_DIRS}" - INTERFACE_COMPILE_DEFINITIONS "${PC_UDEV_CFLAGS_OTHER}" - ) -endif() - -include(FeatureSummary) -set_package_properties(UDev PROPERTIES - DESCRIPTION "API for enumerating and introspecting local devices (part of systemd)" - URL "https://freedesktop.org/wiki/Software/systemd/" -) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/po/ko/solid5_qt.po new/solid-5.83.0/po/ko/solid5_qt.po --- old/solid-5.82.0/po/ko/solid5_qt.po 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/po/ko/solid5_qt.po 2021-06-05 11:27:40.000000000 +0200 @@ -1,13 +1,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# Shinjo Park <[email protected]>, 2009, 2010, 2011, 2013, 2014, 2017, 2019, 2020. +# Shinjo Park <[email protected]>, 2009, 2010, 2011, 2013, 2014, 2017, 2019, 2020, 2021. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-01 01:49+0000\n" -"PO-Revision-Date: 2020-04-04 01:24+0200\n" +"PO-Revision-Date: 2021-05-16 21:34+0200\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" "Language: ko\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Qt-Contexts: true\n" -"X-Generator: Lokalize 19.04.3\n" +"X-Generator: Lokalize 20.12.3\n" #: solid/devices/backends/fstab/fstabdevice.cpp:60 #, qt-format @@ -426,23 +426,17 @@ #: solid/devices/backends/imobile/imobiledevice.cpp:90 msgctxt "imobiledevice|Company name" msgid "Apple" -msgstr "" +msgstr "??????" #: solid/devices/backends/imobile/imobilemanager.cpp:60 -#, fuzzy -#| msgctxt "Solid::Backends::UDev::UDevManager|" -#| msgid "Devices" msgctxt "Solid::Backends::IMobile::Manager|" msgid "iDevice" -msgstr "??????" +msgstr "iDevice" #: solid/devices/backends/imobile/imobilemanager.cpp:61 -#, fuzzy -#| msgctxt "Solid::Backends::UDisks2::Manager|" -#| msgid "Storage devices" msgctxt "Solid::Backends::IMobile::Manager|" msgid "iOS devices" -msgstr "????????? ??????" +msgstr "iOS ??????" #: solid/devices/backends/udev/udevdevice.cpp:99 msgctxt "Solid::Backends::UDev::UDevDevice|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/po/ta/solid5_qt.po new/solid-5.83.0/po/ta/solid5_qt.po --- old/solid-5.82.0/po/ta/solid5_qt.po 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/po/ta/solid5_qt.po 2021-06-05 11:27:40.000000000 +0200 @@ -1,15 +1,14 @@ -# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # +# Kishore G <[email protected]>, 2021. msgid "" msgstr "" "Project-Id-Version: solid_qt\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-01 01:49+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2021-05-22 20:13+0530\n" +"Last-Translator: Kishore G <[email protected]>\n" "Language-Team: Tamil <[email protected]>\n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -17,6 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Qt-Contexts: true\n" +"X-Generator: Lokalize 21.04.1\n" #: solid/devices/backends/fstab/fstabdevice.cpp:60 #, qt-format @@ -975,12 +975,12 @@ #: solid/devices/backends/upower/upowerdevice.cpp:145 msgctxt "Solid::Backends::UPower::UPowerDevice|battery technology" msgid "Unknown" -msgstr "" +msgstr "???????????????????????????" #: solid/devices/backends/upower/upowermanager.cpp:67 msgctxt "Solid::Backends::UPower::UPowerManager|" msgid "Power Management" -msgstr "" +msgstr "?????????????????? ????????????????????????" #: solid/devices/backends/upower/upowermanager.cpp:68 msgctxt "Solid::Backends::UPower::UPowerManager|" @@ -1010,22 +1010,22 @@ #: solid/devices/backends/win/windevice.cpp:170 msgctxt "Solid::Backends::Win::WinDevice|battery technology" msgid "Unknown" -msgstr "" +msgstr "???????????????????????????" #: solid/devices/frontend/deviceinterface.cpp:53 msgctxt "Solid::DeviceInterface|Unknown device type" msgid "Unknown" -msgstr "" +msgstr "???????????????????????????" #: solid/devices/frontend/deviceinterface.cpp:55 msgctxt "Solid::DeviceInterface|Generic Interface device type" msgid "Generic Interface" -msgstr "" +msgstr "????????????????????? ??????????????????????????????" #: solid/devices/frontend/deviceinterface.cpp:57 msgctxt "Solid::DeviceInterface|Processor device type" msgid "Processor" -msgstr "" +msgstr "?????????????????????" #: solid/devices/frontend/deviceinterface.cpp:59 msgctxt "Solid::DeviceInterface|Block device type" @@ -1040,7 +1040,7 @@ #: solid/devices/frontend/deviceinterface.cpp:63 msgctxt "Solid::DeviceInterface|Storage Drive device type" msgid "Storage Drive" -msgstr "" +msgstr "???????????????????????? ???????????????" #: solid/devices/frontend/deviceinterface.cpp:65 msgctxt "Solid::DeviceInterface|Optical Drive device type" @@ -1060,22 +1060,22 @@ #: solid/devices/frontend/deviceinterface.cpp:71 msgctxt "Solid::DeviceInterface|Camera device type" msgid "Camera" -msgstr "" +msgstr "???????????????????????????" #: solid/devices/frontend/deviceinterface.cpp:73 msgctxt "Solid::DeviceInterface|Portable Media Player device type" msgid "Portable Media Player" -msgstr "" +msgstr "?????????????????????????????? ????????? ??????????????????" #: solid/devices/frontend/deviceinterface.cpp:75 msgctxt "Solid::DeviceInterface|Battery device type" msgid "Battery" -msgstr "" +msgstr "????????????????????????" #: solid/devices/frontend/deviceinterface.cpp:77 msgctxt "Solid::DeviceInterface|Network Share device type" msgid "Network Share" -msgstr "" +msgstr "????????????????????? ?????????????????????" #: tools/solid-hardware/solid-hardware.cpp:218 #: tools/solid-hardware/solid-hardware.cpp:326 @@ -1160,17 +1160,17 @@ #: tools/solid-hardware/solid-hardware.cpp:289 msgctxt "solid-hardware|" msgid "Command to execute" -msgstr "" +msgstr "??????????????? ????????????????????? ??????????????????" #: tools/solid-hardware/solid-hardware.cpp:291 msgctxt "solid-hardware|" msgid "Show available commands" -msgstr "" +msgstr "????????????????????????????????? ????????????????????????????????? ??????????????????" #: tools/solid-hardware/solid-hardware.cpp:313 msgctxt "solid-hardware|" msgid "Show device details" -msgstr "" +msgstr "???????????? ????????????????????????????????? ??????????????????" #: tools/solid-hardware/solid-hardware.cpp:314 msgctxt "solid-hardware|" @@ -1204,7 +1204,7 @@ #, qt-format msgctxt "SolidHardware|" msgid "Error: %1" -msgstr "" +msgstr "?????????????????????: %1" #: tools/solid-power/main.cpp:22 msgctxt "solid-power|" @@ -1214,7 +1214,7 @@ #: tools/solid-power/main.cpp:24 msgctxt "solid-power|" msgid "Command to execute" -msgstr "" +msgstr "??????????????? ????????????????????? ??????????????????" #: tools/solid-power/main.cpp:26 msgctxt "solid-power|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/po/zh_CN/solid5_qt.po new/solid-5.83.0/po/zh_CN/solid5_qt.po --- old/solid-5.82.0/po/zh_CN/solid5_qt.po 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/po/zh_CN/solid5_qt.po 2021-06-05 11:27:40.000000000 +0200 @@ -9,7 +9,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/solid-5.82.0/src/solid/CMakeLists.txt new/solid-5.83.0/src/solid/CMakeLists.txt --- old/solid-5.82.0/src/solid/CMakeLists.txt 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/src/solid/CMakeLists.txt 2021-06-05 11:27:40.000000000 +0200 @@ -37,7 +37,7 @@ target_link_libraries(KF5Solid PRIVATE Qt5::DBus) endif() -set_target_properties(KF5Solid PROPERTIES VERSION ${SOLID_VERSION_STRING} +set_target_properties(KF5Solid PROPERTIES VERSION ${SOLID_VERSION} SOVERSION ${SOLID_SOVERSION} EXPORT_NAME Solid ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/src/solid/devices/backends/hal/haldevice.cpp new/solid-5.83.0/src/solid/devices/backends/hal/haldevice.cpp --- old/solid-5.82.0/src/solid/devices/backends/hal/haldevice.cpp 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/src/solid/devices/backends/hal/haldevice.cpp 2021-06-05 11:27:40.000000000 +0200 @@ -508,16 +508,16 @@ } if ((mediumTypes & Solid::OpticalDrive::Dvdr) && (mediumTypes & Solid::OpticalDrive::Dvdplusr)) { if (mediumTypes & Solid::OpticalDrive::Dvdplusdl) { - second = trUtf8("/DVD??R DL", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??R DL", "Second item of %1%2 Drive sentence"); } else { - second = trUtf8("/DVD??R", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??R", "Second item of %1%2 Drive sentence"); } } if ((mediumTypes & Solid::OpticalDrive::Dvdrw) && (mediumTypes & Solid::OpticalDrive::Dvdplusrw)) { if ((mediumTypes & Solid::OpticalDrive::Dvdplusdl) || (mediumTypes & Solid::OpticalDrive::Dvdplusdlrw)) { - second = trUtf8("/DVD??RW DL", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??RW DL", "Second item of %1%2 Drive sentence"); } else { - second = trUtf8("/DVD??RW", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??RW", "Second item of %1%2 Drive sentence"); } } if (mediumTypes & Solid::OpticalDrive::Bd) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/src/solid/devices/backends/udisks2/udisksdevice.cpp new/solid-5.83.0/src/solid/devices/backends/udisks2/udisksdevice.cpp --- old/solid-5.82.0/src/solid/devices/backends/udisks2/udisksdevice.cpp 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/src/solid/devices/backends/udisks2/udisksdevice.cpp 2021-06-05 11:27:40.000000000 +0200 @@ -297,16 +297,16 @@ } if ((mediumTypes & Solid::OpticalDrive::Dvdr) && (mediumTypes & Solid::OpticalDrive::Dvdplusr)) { if (mediumTypes & Solid::OpticalDrive::Dvdplusdl) { - second = trUtf8("/DVD??R DL", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??R DL", "Second item of %1%2 Drive sentence"); } else { - second = trUtf8("/DVD??R", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??R", "Second item of %1%2 Drive sentence"); } } if ((mediumTypes & Solid::OpticalDrive::Dvdrw) && (mediumTypes & Solid::OpticalDrive::Dvdplusrw)) { if ((mediumTypes & Solid::OpticalDrive::Dvdplusdl) || (mediumTypes & Solid::OpticalDrive::Dvdplusdlrw)) { - second = trUtf8("/DVD??RW DL", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??RW DL", "Second item of %1%2 Drive sentence"); } else { - second = trUtf8("/DVD??RW", "Second item of %1%2 Drive sentence"); + second = tr("/DVD??RW", "Second item of %1%2 Drive sentence"); } } if (mediumTypes & Solid::OpticalDrive::Bd) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-5.82.0/src/solid/power/job_p.h new/solid-5.83.0/src/solid/power/job_p.h --- old/solid-5.82.0/src/solid/power/job_p.h 2021-05-01 14:43:25.000000000 +0200 +++ new/solid-5.83.0/src/solid/power/job_p.h 2021-06-05 11:27:40.000000000 +0200 @@ -17,6 +17,7 @@ { public: JobPrivate(); + virtual ~JobPrivate() = default; Job *q_ptr; int error;
