Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lxqt-panel for openSUSE:Factory checked in at 2021-04-17 23:25:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxqt-panel (Old) and /work/SRC/openSUSE:Factory/.lxqt-panel.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxqt-panel" Sat Apr 17 23:25:08 2021 rev:22 rq:886283 version:0.17.1 Changes: -------- --- /work/SRC/openSUSE:Factory/lxqt-panel/lxqt-panel.changes 2021-04-17 00:02:12.997636788 +0200 +++ /work/SRC/openSUSE:Factory/.lxqt-panel.new.12324/lxqt-panel.changes 2021-04-17 23:25:15.885624691 +0200 @@ -1,0 +2,6 @@ +Fri Apr 16 18:31:18 UTC 2021 - Andreas Stieger <[email protected]> + +- lxqt-panel-0.17.1: + * Fix compilation against Qt < 5.15 + +------------------------------------------------------------------- Old: ---- lxqt-panel-0.17.0.tar.xz lxqt-panel-0.17.0.tar.xz.asc New: ---- lxqt-panel-0.17.1.tar.xz lxqt-panel-0.17.1.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxqt-panel.spec ++++++ --- /var/tmp/diff_new_pack.6KOcyn/_old 2021-04-17 23:25:16.301625400 +0200 +++ /var/tmp/diff_new_pack.6KOcyn/_new 2021-04-17 23:25:16.305625406 +0200 @@ -17,12 +17,11 @@ Name: lxqt-panel -Version: 0.17.0 +Version: 0.17.1 Release: 0 Summary: Desktop Panel for LXQt -# FIXME: use correct group or remove it, see "https://en.opensuse.org/openSUSE:Package_group_guidelines" License: GPL-2.0-or-later -Group: System/GUI/LXQt +Group: System/GUI/Other URL: http://www.lxqt.org Source: https://github.com/lxqt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz Source1: https://github.com/lxqt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz.asc @@ -93,7 +92,7 @@ %files %license LICENSE -%doc AUTHORS +%doc AUTHORS CHANGELOG %{_bindir}/%{name} %dir %{_datadir}/desktop-directories/ %dir %{_datadir}/lxqt @@ -110,9 +109,11 @@ %{_datadir}/lxqt/panel.conf %files devel +%license LICENSE %{_includedir}/lxqt %files lang -f %{name}.lang +%license LICENSE %dir %{_datadir}/lxqt/translations/ %{_datadir}/lxqt/translations/%{name} ++++++ lxqt-panel-0.17.0.tar.xz -> lxqt-panel-0.17.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-panel-0.17.0/CHANGELOG new/lxqt-panel-0.17.1/CHANGELOG --- old/lxqt-panel-0.17.0/CHANGELOG 2021-04-15 07:57:34.000000000 +0200 +++ new/lxqt-panel-0.17.1/CHANGELOG 2021-04-16 15:00:00.000000000 +0200 @@ -1,3 +1,7 @@ +lxqt-panel-0.17.1 / 2021-04-16 +============================== + * Fixed compilation against Qt < 5.15. + lxqt-panel-0.17.0 / 2021-04-15 ============================== * Fixed the popup of grouped task button in a special case. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-panel-0.17.0/CMakeLists.txt new/lxqt-panel-0.17.1/CMakeLists.txt --- old/lxqt-panel-0.17.0/CMakeLists.txt 2021-04-15 07:57:34.000000000 +0200 +++ new/lxqt-panel-0.17.1/CMakeLists.txt 2021-04-16 15:00:00.000000000 +0200 @@ -44,7 +44,7 @@ find_package(lxqt-globalkeys-ui ${LXQT_GLOBALKEYS_MINIMUM_VERSION} REQUIRED) # Patch Version -set(LXQT_PANEL_PATCH_VERSION 0) +set(LXQT_PANEL_PATCH_VERSION 1) set(LXQT_PANEL_VERSION ${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_PANEL_PATCH_VERSION}) add_definitions("-DLXQT_PANEL_VERSION=\"${LXQT_PANEL_VERSION}\"") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-panel-0.17.0/plugin-directorymenu/directorymenu.cpp new/lxqt-panel-0.17.1/plugin-directorymenu/directorymenu.cpp --- old/lxqt-panel-0.17.0/plugin-directorymenu/directorymenu.cpp 2021-04-15 07:57:34.000000000 +0200 +++ new/lxqt-panel-0.17.1/plugin-directorymenu/directorymenu.cpp 2021-04-16 15:00:00.000000000 +0200 @@ -59,9 +59,10 @@ connect(mOpenTerminalSignalMapper, &QSignalMapper::mappedString, this, &DirectoryMenu::openInTerminal); connect(mMenuSignalMapper, &QSignalMapper::mappedString, this, &DirectoryMenu::addMenu); #else - connect(mOpenDirectorySignalMapper, QOverload<const QString &->::of(&QSignalMapper::mapped), this, &DirectoryMenu::openDirectory); - connect(mOpenTerminalSignalMapper, QOverload<const QString &->::of(&QSignalMapper::mapped), this, &DirectoryMenu::openInTerminal); - connect(mMenuSignalMapper, QOverload<const QString &->::of(&QSignalMapper::mapped), this, &DirectoryMenu::addMenu); + connect(&mButton, SIGNAL(clicked()), this, SLOT(showMenu())); + connect(mOpenDirectorySignalMapper, SIGNAL(mapped(QString)), this, SLOT(openDirectory(QString))); + connect(mOpenTerminalSignalMapper, SIGNAL(mapped(QString)), this, SLOT(openInTerminal(QString))); + connect(mMenuSignalMapper, SIGNAL(mapped(QString)), this, SLOT(addMenu(QString))); #endif settingsChanged(); @@ -130,11 +131,19 @@ mPathStrings.push_back(path); QAction* openDirectoryAction = menu->addAction(XdgIcon::fromTheme(QStringLiteral("folder")), tr("Open")); +#if (QT_VERSION >= QT_VERSION_CHECK(5,15,0)) connect(openDirectoryAction, &QAction::triggered, mOpenDirectorySignalMapper, [this] { mOpenDirectorySignalMapper->map(); } ); +#else + connect(openDirectoryAction, SIGNAL(triggered()), mOpenDirectorySignalMapper, SLOT(map())); +#endif mOpenDirectorySignalMapper->setMapping(openDirectoryAction, mPathStrings.back()); QAction* openTerminalAction = menu->addAction(XdgIcon::fromTheme(QStringLiteral("folder")), tr("Open in terminal")); +#if (QT_VERSION >= QT_VERSION_CHECK(5,15,0)) connect(openTerminalAction, &QAction::triggered, mOpenTerminalSignalMapper, [this] { mOpenTerminalSignalMapper->map(); } ); +#else + connect(openTerminalAction, SIGNAL(triggered()), mOpenTerminalSignalMapper, SLOT(map())); +#endif mOpenTerminalSignalMapper->setMapping(openTerminalAction, mPathStrings.back()); menu->addSeparator(); @@ -150,7 +159,11 @@ QMenu* subMenu = menu->addMenu(XdgIcon::fromTheme(QStringLiteral("folder")), mPathStrings.back()); +#if (QT_VERSION >= QT_VERSION_CHECK(5,15,0)) connect(subMenu, &QMenu::aboutToShow, mMenuSignalMapper, [this] { mMenuSignalMapper->map(); } ); +#else + connect(subMenu, SIGNAL(aboutToShow()), mMenuSignalMapper, SLOT(map())); +#endif mMenuSignalMapper->setMapping(subMenu, entry.absoluteFilePath()); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-panel-0.17.0/plugin-volume/alsaengine.cpp new/lxqt-panel-0.17.1/plugin-volume/alsaengine.cpp --- old/lxqt-panel-0.17.0/plugin-volume/alsaengine.cpp 2021-04-15 07:57:34.000000000 +0200 +++ new/lxqt-panel-0.17.1/plugin-volume/alsaengine.cpp 2021-04-16 15:00:00.000000000 +0200 @@ -181,7 +181,7 @@ #if (QT_VERSION >= QT_VERSION_CHECK(5,15,0)) connect(notifier, &QSocketNotifier::activated, this, [this] (QSocketDescriptor socket, QSocketNotifier::Type) { this->driveAlsaEventHandling(socket); }); #else - connect(notifier, QOverload<int>::of(&QSocketNotifier::activated), this, [=](int socket){ this->driveAlsaEventHandling(socket); }); + connect(notifier, SIGNAL(activated(int)), this, SLOT(driveAlsaEventHandling(int))); #endif m_mixerMap.insert(pfd.fd, mixer); }
