diff --git a/desktop/kde/plasma/bluedevil/pspec.xml b/desktop/kde/plasma/bluedevil/pspec.xml
index a3e87510f4..d313e0998e 100755
--- a/desktop/kde/plasma/bluedevil/pspec.xml
+++ b/desktop/kde/plasma/bluedevil/pspec.xml
@@ -13,7 +13,7 @@
app:console
KDE 5 Bluetooth Stack
Integrate the Bluetooth technology within KDE workspace and applications
- mirrors://kde/stable/plasma/5.23.2/bluedevil-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/bluedevil-5.23.3.tar.xz
qt5-base-devel
qt5-declarative-devel
@@ -68,6 +68,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/breeze-grub/pspec.xml b/desktop/kde/plasma/breeze-grub/pspec.xml
index 4cb186b1c9..192a092e5d 100755
--- a/desktop/kde/plasma/breeze-grub/pspec.xml
+++ b/desktop/kde/plasma/breeze-grub/pspec.xml
@@ -10,7 +10,7 @@
app:console
Breeze theme for GRUB.
Breeze theme for GRUB.
- mirrors://kde/stable/plasma/5.23.2/breeze-grub-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/breeze-grub-5.23.3.tar.xz
@@ -27,6 +27,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/breeze-plymouth/pspec.xml b/desktop/kde/plasma/breeze-plymouth/pspec.xml
index b134b0c36e..64f28cb41c 100755
--- a/desktop/kde/plasma/breeze-plymouth/pspec.xml
+++ b/desktop/kde/plasma/breeze-plymouth/pspec.xml
@@ -10,7 +10,7 @@
app:console
Breeze theme for Plymouth.
Breeze theme for Plymouth.
- mirrors://kde/stable/plasma/5.23.2/breeze-plymouth-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/breeze-plymouth-5.23.3.tar.xz
extra-cmake-modules
plymouth-devel
@@ -40,6 +40,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/discover/files/dc67ef22.patch b/desktop/kde/plasma/discover/files/dc67ef22.patch
new file mode 100644
index 0000000000..1d18e209a6
--- /dev/null
+++ b/desktop/kde/plasma/discover/files/dc67ef22.patch
@@ -0,0 +1,193 @@
+From dc67ef22f47b9e8b46d668b811982f33600f1aae Mon Sep 17 00:00:00 2001
+From: Aleix Pol
+Date: Wed, 10 Nov 2021 01:55:56 +0100
+Subject: [PATCH] flatpak: Do not include the resource type in the
+ FlatpakResource::Id
+
+Otherwise we couldn't make sure that idForInstalledRef() was coherent
+with FlatpakResource::uniqueId().
+In the end it's not a problem, it's not like we can have an app and
+runtime with the same name.
+
+
+(cherry picked from commit 614450b3ee9175fb16f068af505fb59ed27e6697)
+---
+ .../FlatpakBackend/FlatpakBackend.cpp | 25 ++++++++-----------
+ .../FlatpakBackend/FlatpakResource.cpp | 12 ++++-----
+ .../backends/FlatpakBackend/FlatpakResource.h | 7 +++---
+ 3 files changed, 19 insertions(+), 25 deletions(-)
+
+diff --git a/libdiscover/backends/FlatpakBackend/FlatpakBackend.cpp b/libdiscover/backends/FlatpakBackend/FlatpakBackend.cpp
+index 012817ef9..6727b0227 100644
+--- a/libdiscover/backends/FlatpakBackend/FlatpakBackend.cpp
++++ b/libdiscover/backends/FlatpakBackend/FlatpakBackend.cpp
+@@ -149,8 +149,7 @@ QDebug operator<<(QDebug debug, const FlatpakResource::Id &id)
+ QDebugStateSaver saver(debug);
+ debug.nospace() << "FlatpakResource::Id(";
+ debug.nospace() << "name:" << id.id << ',';
+- debug.nospace() << "branch:" << id.branch << ',';
+- debug.nospace() << "type:" << id.type;
++ debug.nospace() << "branch:" << id.branch;
+ debug.nospace() << ')';
+ return debug;
+ }
+@@ -162,7 +161,6 @@ static FlatpakResource::Id idForRefString(const QStringView &ref)
+ auto parts = ref.split('/');
+ // app/app.getspace.Space/x86_64/stable
+ return {
+- parts[0] == QLatin1String("app") ? FlatpakResource::DesktopApp : FlatpakResource::Runtime,
+ parts[1].toString(),
+ parts[3].toString(),
+ parts[2].toString(),
+@@ -178,7 +176,7 @@ static FlatpakResource::Id idForInstalledRef(FlatpakInstalledRef *ref, const QSt
+ const QString arch = QString::fromUtf8(flatpak_ref_get_arch(FLATPAK_REF(ref)));
+ const QString branch = QString::fromUtf8(flatpak_ref_get_branch(FLATPAK_REF(ref)));
+
+- return {appType, appId, branch, arch};
++ return {appId, branch, arch};
+ }
+
+ FlatpakBackend::FlatpakBackend(QObject *parent)
+@@ -350,25 +348,20 @@ QString refToBundleId(FlatpakRef *ref)
+
+ FlatpakResource *FlatpakBackend::getAppForInstalledRef(FlatpakInstallation *installation, FlatpakInstalledRef *ref) const
+ {
+- auto id = idForInstalledRef(ref, {});
+- for (const auto &source : m_flatpakSources) {
+- auto ret = source->m_resources.value(id);
++ const QString origin = QString::fromUtf8(flatpak_installed_ref_get_origin(ref));
++ auto source = findSource(installation, origin);
++ if (source) {
++ auto ret = source->m_resources.value(idForInstalledRef(ref, {}));
+ if (ret) {
+ return ret;
+ }
+- }
+- auto id2 = idForInstalledRef(ref, QStringLiteral(".desktop"));
+- for (const auto &source : m_flatpakSources) {
+- auto ret = source->m_resources.value(id2);
++ ret = source->m_resources.value(idForInstalledRef(ref, QStringLiteral(".desktop")));
+ if (ret) {
+ return ret;
+ }
+ }
+
+ const QLatin1String name(flatpak_ref_get_name(FLATPAK_REF(ref)));
+-
+- const QString origin = QString::fromUtf8(flatpak_installed_ref_get_origin(ref));
+- auto source = findSource(installation, origin);
+ const QString pathExports = FlatpakResource::installationPath(installation) + QLatin1String("/exports/");
+ const QString pathApps = pathExports + QLatin1String("share/applications/");
+ AppStream::Component cid;
+@@ -413,6 +406,8 @@ FlatpakResource *FlatpakBackend::getAppForInstalledRef(FlatpakInstallation *inst
+ resource->updateFromRef(FLATPAK_REF(ref));
+ resource->setState(AbstractResource::Installed);
+ source->addResource(resource);
++
++ Q_ASSERT(resource->uniqueId() == idForInstalledRef(ref, {}) || resource->uniqueId() == idForInstalledRef(ref, {".desktop"}));
+ return resource;
+ }
+
+@@ -445,7 +440,7 @@ FlatpakResource *FlatpakBackend::getRuntimeForApp(FlatpakResource *resource) con
+ for (const auto &source : m_flatpakSources) {
+ for (auto it = source->m_resources.constBegin(), itEnd = source->m_resources.constEnd(); it != itEnd; ++it) {
+ const auto &id = it.key();
+- if (id.type == FlatpakResource::Runtime && id.id == runtimeInfo.at(0) && id.branch == runtimeInfo.at(2)) {
++ if ((*it)->resourceType() == FlatpakResource::Runtime && id.id == runtimeInfo.at(0) && id.branch == runtimeInfo.at(2)) {
+ runtime = *it;
+ break;
+ }
+diff --git a/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp b/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp
+index 8f6b25575..7419dcee7 100644
+--- a/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp
++++ b/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp
+@@ -41,7 +41,7 @@ static QString iconCachePath(const AppStream::Icon &icon)
+ FlatpakResource::FlatpakResource(const AppStream::Component &component, FlatpakInstallation *installation, FlatpakBackend *parent)
+ : AbstractResource(parent)
+ , m_appdata(component)
+- , m_id({FlatpakResource::DesktopApp, component.id(), QString(), QString()})
++ , m_id({component.id(), QString(), QString()})
+ , m_downloadSize(0)
+ , m_installedSize(0)
+ , m_propertyStates({{DownloadSize, NotKnownYet}, {InstalledSize, NotKnownYet}, {RequiredRuntime, NotKnownYet}})
+@@ -122,7 +122,7 @@ QString FlatpakResource::branch() const
+
+ bool FlatpakResource::canExecute() const
+ {
+- return (m_id.type == DesktopApp && (m_state == AbstractResource::Installed || m_state == AbstractResource::Upgradeable));
++ return (m_type == DesktopApp && (m_state == AbstractResource::Installed || m_state == AbstractResource::Upgradeable));
+ }
+
+ void FlatpakResource::updateFromRef(FlatpakRef *ref)
+@@ -241,7 +241,7 @@ int FlatpakResource::installedSize() const
+
+ AbstractResource::Type FlatpakResource::type() const
+ {
+- switch (m_id.type) {
++ switch (m_type) {
+ case FlatpakResource::Runtime:
+ return Technical;
+ case FlatpakResource::Extension:
+@@ -381,12 +381,12 @@ AbstractResource::State FlatpakResource::state()
+
+ FlatpakResource::ResourceType FlatpakResource::resourceType() const
+ {
+- return m_id.type;
++ return m_type;
+ }
+
+ QString FlatpakResource::typeAsString() const
+ {
+- switch (m_id.type) {
++ switch (m_type) {
+ case FlatpakResource::Runtime:
+ case FlatpakResource::Extension:
+ return QLatin1String("runtime");
+@@ -528,7 +528,7 @@ void FlatpakResource::setState(AbstractResource::State state)
+
+ void FlatpakResource::setType(FlatpakResource::ResourceType type)
+ {
+- m_id.type = type;
++ m_type = type;
+ }
+
+ QString FlatpakResource::installationPath() const
+diff --git a/libdiscover/backends/FlatpakBackend/FlatpakResource.h b/libdiscover/backends/FlatpakBackend/FlatpakResource.h
+index 7cf0022d7..364857950 100644
+--- a/libdiscover/backends/FlatpakBackend/FlatpakResource.h
++++ b/libdiscover/backends/FlatpakBackend/FlatpakResource.h
+@@ -55,7 +55,6 @@ public:
+ Q_ENUM(FlatpakFileType)
+
+ struct Id {
+- FlatpakResource::ResourceType type;
+ const QString id;
+ QString branch;
+ QString arch;
+@@ -66,8 +65,7 @@ public:
+ bool operator==(const Id &other) const
+ {
+ return &other == this
+- || (other.type == type //
+- && other.id == id //
++ || (other.id == id //
+ && other.branch == branch //
+ && other.arch == arch //
+ );
+@@ -183,11 +181,12 @@ private:
+ AbstractResource::State m_state;
+ FlatpakInstallation *const m_installation;
+ QString m_origin;
++ FlatpakResource::ResourceType m_type = DesktopApp;
+ };
+
+ inline uint qHash(const FlatpakResource::Id &key)
+ {
+- return qHash(key.type) ^ qHash(key.id) ^ qHash(key.branch) ^ qHash(key.arch);
++ return qHash(key.id) ^ qHash(key.branch) ^ qHash(key.arch);
+ }
+
+ #endif // FLATPAKRESOURCE_H
+--
+GitLab
+
diff --git a/desktop/kde/plasma/discover/pspec.xml b/desktop/kde/plasma/discover/pspec.xml
index 0c1391876e..c838af6b97 100755
--- a/desktop/kde/plasma/discover/pspec.xml
+++ b/desktop/kde/plasma/discover/pspec.xml
@@ -12,7 +12,7 @@
app:gui
KDE and Plasma resources management GUI
KDE and Plasma resources management GUI
- mirrors://kde/stable/plasma/5.23.2/discover-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/discover-5.23.3.tar.xz
kio-devel
fwupd-devel
@@ -43,6 +43,9 @@
qt5-x11extras-devel
qt5-declarative-devel
+
+ dc67ef22.patch
+
@@ -109,6 +112,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/drkonqi/pspec.xml b/desktop/kde/plasma/drkonqi/pspec.xml
index c60fccdad5..8bd070f984 100755
--- a/desktop/kde/plasma/drkonqi/pspec.xml
+++ b/desktop/kde/plasma/drkonqi/pspec.xml
@@ -12,7 +12,7 @@
library
The KDE crash handler
The KDE crash handler
- https://download.kde.org/stable/plasma/5.23.2/drkonqi-5.23.2.tar.xz
+ https://download.kde.org/stable/plasma/5.23.3/drkonqi-5.23.3.tar.xz
extra-cmake-modules
qt5-base-devel
@@ -72,6 +72,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/kactivitymanagerd/pspec.xml b/desktop/kde/plasma/kactivitymanagerd/pspec.xml
index 7f6813449f..84dafc8329 100755
--- a/desktop/kde/plasma/kactivitymanagerd/pspec.xml
+++ b/desktop/kde/plasma/kactivitymanagerd/pspec.xml
@@ -12,7 +12,7 @@
app:console
Core components for the KDE Activity concept.
System service to manage user's activities, track the usage patterns etc.
- mirrors://kde/stable/plasma/5.23.2/kactivitymanagerd-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/kactivitymanagerd-5.23.3.tar.xz
extra-cmake-modules
boost-devel
@@ -62,6 +62,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/kdecorations/pspec.xml b/desktop/kde/plasma/kdecorations/pspec.xml
index bbf5f2f2aa..430f240566 100755
--- a/desktop/kde/plasma/kdecorations/pspec.xml
+++ b/desktop/kde/plasma/kdecorations/pspec.xml
@@ -12,7 +12,7 @@
library
Plugin based library to create window decorations
Plugin based library to create window decorations
- mirrors://kde/stable/plasma/5.23.2/kdecoration-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/kdecoration-5.23.3.tar.xz
qt5-base-devel
ki18n-devel
@@ -51,6 +51,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/kgamma5/pspec.xml b/desktop/kde/plasma/kgamma5/pspec.xml
index d74b11c1e1..02be779288 100755
--- a/desktop/kde/plasma/kgamma5/pspec.xml
+++ b/desktop/kde/plasma/kgamma5/pspec.xml
@@ -13,7 +13,7 @@
app:console
Adjust your monitor's gamma settings.
Adjust your monitor's gamma settings.
- mirrors://kde/stable/plasma/5.23.2/kgamma5-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/kgamma5-5.23.3.tar.xz
qt5-base-devel
qt5-x11extras-devel
@@ -59,6 +59,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/kscreenlocker/pspec.xml b/desktop/kde/plasma/kscreenlocker/pspec.xml
index 54e7f15bb2..ac4b1aa99b 100755
--- a/desktop/kde/plasma/kscreenlocker/pspec.xml
+++ b/desktop/kde/plasma/kscreenlocker/pspec.xml
@@ -13,7 +13,7 @@
app:console
Library and components for secure lock screen architecture.
Library and components for secure lock screen architecture.
- mirrors://kde/stable/plasma/5.23.2/kscreenlocker-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/kscreenlocker-5.23.3.tar.xz
qt5-base-devel
qt5-declarative-devel
@@ -132,6 +132,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/ksshaskpass/pspec.xml b/desktop/kde/plasma/ksshaskpass/pspec.xml
index 0f31d8ef41..22b200f508 100755
--- a/desktop/kde/plasma/ksshaskpass/pspec.xml
+++ b/desktop/kde/plasma/ksshaskpass/pspec.xml
@@ -13,7 +13,7 @@
app:console
ssh-add helper that uses kwallet and kpassworddialog
ssh-add helper that uses kwallet and kpassworddialog
- mirrors://kde/stable/plasma/5.23.2/ksshaskpass-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/ksshaskpass-5.23.3.tar.xz
qt5-base-devel
kdoctools-devel
@@ -53,6 +53,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/kwallet-pam/pspec.xml b/desktop/kde/plasma/kwallet-pam/pspec.xml
index c90aa8aa6b..9f65f13ac3 100755
--- a/desktop/kde/plasma/kwallet-pam/pspec.xml
+++ b/desktop/kde/plasma/kwallet-pam/pspec.xml
@@ -13,7 +13,7 @@
app:console
KWallet PAM integration.
KWallet PAM integration.
- mirrors://kde/stable/plasma/5.23.2/kwallet-pam-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/kwallet-pam-5.23.3.tar.xz
socat
pam-devel
@@ -41,6 +41,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/kwayland-integration/pspec.xml b/desktop/kde/plasma/kwayland-integration/pspec.xml
index 0c0ad9bb6b..7af5aafbd8 100755
--- a/desktop/kde/plasma/kwayland-integration/pspec.xml
+++ b/desktop/kde/plasma/kwayland-integration/pspec.xml
@@ -12,7 +12,7 @@
library
Provides integration plugins for various KDE frameworks for the wayland windowing system
Provides integration plugins for various KDE frameworks for the wayland windowing system
- mirrors://kde/stable/plasma/5.23.2/kwayland-integration-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/kwayland-integration-5.23.3.tar.xz
kguiaddons-devel
kwayland-devel
@@ -53,6 +53,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/kwrited/pspec.xml b/desktop/kde/plasma/kwrited/pspec.xml
index 20995a0d4e..fb4b4088bd 100755
--- a/desktop/kde/plasma/kwrited/pspec.xml
+++ b/desktop/kde/plasma/kwrited/pspec.xml
@@ -13,7 +13,7 @@
app:console
KDE5 daemon listening for wall and write messages
KDE5 daemon listening for wall and write messages
- mirrors://kde/stable/plasma/5.23.2/kwrited-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/kwrited-5.23.3.tar.xz
qt5-base-devel
ki18n-devel
@@ -46,6 +46,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/layer-shell-qt/pspec.xml b/desktop/kde/plasma/layer-shell-qt/pspec.xml
index c4c27e60a8..c1e0f80b62 100644
--- a/desktop/kde/plasma/layer-shell-qt/pspec.xml
+++ b/desktop/kde/plasma/layer-shell-qt/pspec.xml
@@ -12,7 +12,7 @@
library
Qt component to allow applications to make use of the Wayland wl-layer-shell protocol
Uygulamaların Wayland wl-layer-shell protokolünü kullanmasını sağlayan Qt bileşeni
- https://download.kde.org/stable/plasma/5.23.2/layer-shell-qt-5.23.2.tar.xz
+ https://download.kde.org/stable/plasma/5.23.3/layer-shell-qt-5.23.3.tar.xz
wayland-devel
wayland-client
@@ -59,6 +59,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/libkscreen/pspec.xml b/desktop/kde/plasma/libkscreen/pspec.xml
index 46ad934a83..80384c9199 100755
--- a/desktop/kde/plasma/libkscreen/pspec.xml
+++ b/desktop/kde/plasma/libkscreen/pspec.xml
@@ -13,7 +13,7 @@
app:console
KDE5 screen management library
Dynamic display management library for KDE
- mirrors://kde/stable/plasma/5.23.2/libkscreen-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/libkscreen-5.23.3.tar.xz
qt5-base-devel
qt5-wayland-devel
@@ -81,6 +81,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/libksysguard/pspec.xml b/desktop/kde/plasma/libksysguard/pspec.xml
index def43bc0ed..8089e43384 100755
--- a/desktop/kde/plasma/libksysguard/pspec.xml
+++ b/desktop/kde/plasma/libksysguard/pspec.xml
@@ -13,7 +13,7 @@
app:console
Task management and system monitoring library
Task management and system monitoring library
- mirrors://kde/stable/plasma/5.23.2/libksysguard-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/libksysguard-5.23.3.tar.xz
qt5-base-devel
qt5-script-devel
@@ -124,6 +124,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/milou/pspec.xml b/desktop/kde/plasma/milou/pspec.xml
index 6866787142..fb4d31fd6a 100755
--- a/desktop/kde/plasma/milou/pspec.xml
+++ b/desktop/kde/plasma/milou/pspec.xml
@@ -13,7 +13,7 @@
app:console
KDedicated search application built on top of Baloo
Dedicated search application built on top of Baloo
- mirrors://kde/stable/plasma/5.23.2/milou-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/milou-5.23.3.tar.xz
qt5-base-devel
qt5-declarative-devel
@@ -54,6 +54,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/plasma-nm/pspec.xml b/desktop/kde/plasma/plasma-nm/pspec.xml
index 8c90ad159b..2ab3f476bd 100755
--- a/desktop/kde/plasma/plasma-nm/pspec.xml
+++ b/desktop/kde/plasma/plasma-nm/pspec.xml
@@ -13,7 +13,7 @@
app:console
Plasma applet written in QML for managing network connections
Plasma applet written in QML for managing network connections
- mirrors://kde/stable/plasma/5.23.2/plasma-nm-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/plasma-nm-5.23.3.tar.xz
qt5-base-devel
qt5-declarative-devel
@@ -102,6 +102,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/plasma-pa/pspec.xml b/desktop/kde/plasma/plasma-pa/pspec.xml
index 62ed30358f..e7f2ea5f94 100755
--- a/desktop/kde/plasma/plasma-pa/pspec.xml
+++ b/desktop/kde/plasma/plasma-pa/pspec.xml
@@ -13,7 +13,7 @@
app:console
Plasma applet for audio volume management using PulseAudio.
Plasma applet for audio volume management using PulseAudio.
- mirrors://kde/stable/plasma/5.23.2/plasma-pa-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/plasma-pa-5.23.3.tar.xz
qt5-base-devel
@@ -66,6 +66,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml
index 48175e2058..3a399b9b80 100755
--- a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml
+++ b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml
@@ -14,7 +14,7 @@
app:gui
The KDE Plasma Workspace Components
The KDE Plasma Workspace Components
- mirrors://kde/stable/plasma/5.23.2/plasma-workspace-wallpapers-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/plasma-workspace-wallpapers-5.23.3.tar.xz
https://sourceforge.net/projects/pisilinux/files/source/blue.tar.gz
https://sourceforge.net/projects/pisilinux/files/source/Sweet-cat.tar.gz
https://github.com/prdsmehmetstc/pisi-crocus-ancyrensis/releases/download/v1.0/pisi-crocus-ancyrensis.tar.gz
@@ -42,6 +42,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml b/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml
index 72940bfdaf..5857174ff5 100755
--- a/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml
+++ b/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml
@@ -14,7 +14,7 @@
app:gui
The KDE Plasma Workspace Components
The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop.
- mirrors://kde/stable/plasma/5.23.2/polkit-kde-agent-1-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/polkit-kde-agent-1-5.23.3.tar.xz
qt5-base-devel
kdoctools-devel
@@ -62,6 +62,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/sddm-kcm/pspec.xml b/desktop/kde/plasma/sddm-kcm/pspec.xml
index be20f5f1b0..e8b46a3cd0 100755
--- a/desktop/kde/plasma/sddm-kcm/pspec.xml
+++ b/desktop/kde/plasma/sddm-kcm/pspec.xml
@@ -13,7 +13,7 @@
desktop.misc
KDE5 Config Module for SDDM
KDE5 Config Module for SDDM
- mirrors://kde/stable/plasma/5.23.2/sddm-kcm-5.23.2.tar.xz
+ mirrors://kde/stable/plasma/5.23.3/sddm-kcm-5.23.3.tar.xz
kcoreaddons-devel
kdoctools-devel
@@ -79,6 +79,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2
diff --git a/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml b/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml
index 06b46cacae..477abf0777 100755
--- a/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml
+++ b/desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml
@@ -12,7 +12,7 @@
library
A backend implementation for xdg-desktop-portal using Qt/KF5
A backend implementation for xdg-desktop-portal using Qt/KF5
- https://download.kde.org/stable/plasma/5.23.2/xdg-desktop-portal-kde-5.23.2.tar.xz
+ https://download.kde.org/stable/plasma/5.23.3/xdg-desktop-portal-kde-5.23.3.tar.xz
extra-cmake-modules
qt5-base-devel
@@ -70,6 +70,13 @@
+
+ 2021-11-10
+ 5.23.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-27
5.23.2