plasma-5.23.3
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDE 5 Bluetooth Stack</Summary>
|
||||
<Description>Integrate the Bluetooth technology within KDE workspace and applications</Description>
|
||||
<Archive sha1sum="9ed0b087e39327642d1584d46c5e19864a5d1fe8" type="tarxz">mirrors://kde/stable/plasma/5.23.2/bluedevil-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="1830e8407cc08a971da9a1067848acfcb910efcc" type="tarxz">mirrors://kde/stable/plasma/5.23.3/bluedevil-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-declarative-devel</Dependency>
|
||||
@@ -68,6 +68,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Breeze theme for GRUB.</Summary>
|
||||
<Description>Breeze theme for GRUB.</Description>
|
||||
<Archive sha1sum="e8d1970b86db163b2d5a3ea4c7bf3ccd67122a23" type="tarxz">mirrors://kde/stable/plasma/5.23.2/breeze-grub-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="f5e88c8e371e5f5cbc24563b9df71b956240a4a9" type="tarxz">mirrors://kde/stable/plasma/5.23.3/breeze-grub-5.23.3.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -27,6 +27,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="52">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="51">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Breeze theme for Plymouth.</Summary>
|
||||
<Description>Breeze theme for Plymouth.</Description>
|
||||
<Archive type="tarxz" sha1sum="19d7f39b659cd019e3857d3f6d3a288e123b6a8e">mirrors://kde/stable/plasma/5.23.2/breeze-plymouth-5.23.2.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="ba09173a29718e3fa552ed77069194c47f89af19">mirrors://kde/stable/plasma/5.23.3/breeze-plymouth-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>plymouth-devel</Dependency>
|
||||
@@ -40,6 +40,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -0,0 +1,193 @@
|
||||
From dc67ef22f47b9e8b46d668b811982f33600f1aae Mon Sep 17 00:00:00 2001
|
||||
From: Aleix Pol <aleixpol@kde.org>
|
||||
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
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>KDE and Plasma resources management GUI</Summary>
|
||||
<Description>KDE and Plasma resources management GUI</Description>
|
||||
<Archive sha1sum="41f295de6475f439542f6109865960f067cdd6d5" type="tarxz">mirrors://kde/stable/plasma/5.23.2/discover-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="17b659d370e8c818e67b24d8d5e6af5aca9ba864" type="tarxz">mirrors://kde/stable/plasma/5.23.3/discover-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>kio-devel</Dependency>
|
||||
<Dependency>fwupd-devel</Dependency>
|
||||
@@ -43,6 +43,9 @@
|
||||
<Dependency versionFrom="5.7.1">qt5-x11extras-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-declarative-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">dc67ef22.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -109,6 +112,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="56">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="55">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>The KDE crash handler</Summary>
|
||||
<Description>The KDE crash handler</Description>
|
||||
<Archive sha1sum="4bb96a778d0a41051fbf2b4d65ca1a190d1ab7e4" type="tarxz">https://download.kde.org/stable/plasma/5.23.2/drkonqi-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="6086f938243d7f8665ad3e0f21eee8a486776f88" type="tarxz">https://download.kde.org/stable/plasma/5.23.3/drkonqi-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency versionFrom="5.7.0">qt5-base-devel</Dependency>
|
||||
@@ -72,6 +72,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="56">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="55">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Core components for the KDE Activity concept.</Summary>
|
||||
<Description>System service to manage user's activities, track the usage patterns etc.</Description>
|
||||
<Archive type="tarxz" sha1sum="ff0f27f37cbdd374d31bfb0464833c3c5e5ea1d7">mirrors://kde/stable/plasma/5.23.2/kactivitymanagerd-5.23.2.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="08517507b985561e49f29107fd972064a600d830">mirrors://kde/stable/plasma/5.23.3/kactivitymanagerd-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
@@ -62,6 +62,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Plugin based library to create window decorations</Summary>
|
||||
<Description>Plugin based library to create window decorations</Description>
|
||||
<Archive sha1sum="ee819ad1102a2f7e8964b5087b3ef8d0febf025b" type="tarxz">mirrors://kde/stable/plasma/5.23.2/kdecoration-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="b74822bba7051d001629492e1caf04156747d3e6" type="tarxz">mirrors://kde/stable/plasma/5.23.3/kdecoration-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.30">ki18n-devel</Dependency>
|
||||
@@ -51,6 +51,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Adjust your monitor's gamma settings.</Summary>
|
||||
<Description>Adjust your monitor's gamma settings.</Description>
|
||||
<Archive sha1sum="7dd282365749770d6050d527ab3e1ed3684536aa" type="tarxz">mirrors://kde/stable/plasma/5.23.2/kgamma5-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="5f8e0c98a19d2b741c4bb88c82c84d3d8463c4dc" type="tarxz">mirrors://kde/stable/plasma/5.23.3/kgamma5-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-x11extras-devel</Dependency>
|
||||
@@ -59,6 +59,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Library and components for secure lock screen architecture.</Summary>
|
||||
<Description>Library and components for secure lock screen architecture.</Description>
|
||||
<Archive sha1sum="e24dfa9787681650f0e4f000d4357335a808644c" type="tarxz">mirrors://kde/stable/plasma/5.23.2/kscreenlocker-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="bdb220dd2b6915d6097948f14cd7fca24473bd52" type="tarxz">mirrors://kde/stable/plasma/5.23.3/kscreenlocker-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-declarative-devel</Dependency>
|
||||
@@ -132,6 +132,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="55">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="54">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>ssh-add helper that uses kwallet and kpassworddialog</Summary>
|
||||
<Description>ssh-add helper that uses kwallet and kpassworddialog</Description>
|
||||
<Archive sha1sum="424143ae5a5c36eb596c6ac2bd7a9032be1a7b0a" type="tarxz">mirrors://kde/stable/plasma/5.23.2/ksshaskpass-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="d0abc7d3b5e56ad8b48310154a792aeb426a7a44" type="tarxz">mirrors://kde/stable/plasma/5.23.3/ksshaskpass-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
@@ -53,6 +53,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KWallet PAM integration.</Summary>
|
||||
<Description>KWallet PAM integration.</Description>
|
||||
<Archive sha1sum="1b5b044505f492c7dd5efe9c5e69601867d61ce8" type="tarxz">mirrors://kde/stable/plasma/5.23.2/kwallet-pam-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="e5d9614f5a551f4075b611153a364ee26b104fa2" type="tarxz">mirrors://kde/stable/plasma/5.23.3/kwallet-pam-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>socat</Dependency>
|
||||
<Dependency>pam-devel</Dependency>
|
||||
@@ -41,6 +41,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Provides integration plugins for various KDE frameworks for the wayland windowing system</Summary>
|
||||
<Description>Provides integration plugins for various KDE frameworks for the wayland windowing system</Description>
|
||||
<Archive sha1sum="86c826c144ae09a63ee547b6aa482071f4980515" type="tarxz">mirrors://kde/stable/plasma/5.23.2/kwayland-integration-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="45588ec18036be942f94e22987c2b3452c613350" type="tarxz">mirrors://kde/stable/plasma/5.23.3/kwayland-integration-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>kguiaddons-devel</Dependency>
|
||||
<Dependency>kwayland-devel</Dependency>
|
||||
@@ -53,6 +53,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDE5 daemon listening for wall and write messages</Summary>
|
||||
<Description>KDE5 daemon listening for wall and write messages</Description>
|
||||
<Archive sha1sum="32453950def302f75c9ddf6ebc5171b4d0b09d28" type="tarxz">mirrors://kde/stable/plasma/5.23.2/kwrited-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="f8f2cc1da3fe13e98fd28cc3a4e8c62ab68e0d46" type="tarxz">mirrors://kde/stable/plasma/5.23.3/kwrited-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
@@ -46,6 +46,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Qt component to allow applications to make use of the Wayland wl-layer-shell protocol</Summary>
|
||||
<Description>Uygulamaların Wayland wl-layer-shell protokolünü kullanmasını sağlayan Qt bileşeni</Description>
|
||||
<Archive sha1sum="5473c835a17241d4c1a65a31b65980e7a25c6247" type="tarxz">https://download.kde.org/stable/plasma/5.23.2/layer-shell-qt-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="8864add606b2bf9233afb708685ee8f0c2cdce41" type="tarxz">https://download.kde.org/stable/plasma/5.23.3/layer-shell-qt-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>wayland-devel</Dependency>
|
||||
<Dependency>wayland-client</Dependency>
|
||||
@@ -59,6 +59,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDE5 screen management library</Summary>
|
||||
<Description>Dynamic display management library for KDE</Description>
|
||||
<Archive sha1sum="a8597ef1f90daa714789dadb557ecf5541bd5745" type="tarxz">mirrors://kde/stable/plasma/5.23.2/libkscreen-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="ffa32e4aa9779edf5d618d439a576f422c702b37" type="tarxz">mirrors://kde/stable/plasma/5.23.3/libkscreen-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-wayland-devel</Dependency>
|
||||
@@ -81,6 +81,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Task management and system monitoring library</Summary>
|
||||
<Description>Task management and system monitoring library</Description>
|
||||
<Archive sha1sum="00954dd09e6c4fe77f4e17194d9c277a708b0e65" type="tarxz">mirrors://kde/stable/plasma/5.23.2/libksysguard-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="beaf66ba0e7710a777738add8857ca4cb3bfba72" type="tarxz">mirrors://kde/stable/plasma/5.23.3/libksysguard-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-script-devel</Dependency>
|
||||
@@ -124,6 +124,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDedicated search application built on top of Baloo</Summary>
|
||||
<Description>Dedicated search application built on top of Baloo</Description>
|
||||
<Archive sha1sum="c1b128292c9dcbd14252663b34723476cd674175" type="tarxz">mirrors://kde/stable/plasma/5.23.2/milou-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="6ae8165614e6a06743f058595b76699af7b37a93" type="tarxz">mirrors://kde/stable/plasma/5.23.3/milou-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-declarative-devel</Dependency>
|
||||
@@ -54,6 +54,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Plasma applet written in QML for managing network connections</Summary>
|
||||
<Description>Plasma applet written in QML for managing network connections</Description>
|
||||
<Archive sha1sum="a9ad35f21c36a4c84d8137467ae82c95ed9c0f45" type="tarxz">mirrors://kde/stable/plasma/5.23.2/plasma-nm-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="c2a12feb7035f2e33deb8b06bd7b221bad8adfc5" type="tarxz">mirrors://kde/stable/plasma/5.23.3/plasma-nm-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-declarative-devel</Dependency>
|
||||
@@ -102,6 +102,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="57">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="56">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Plasma applet for audio volume management using PulseAudio.</Summary>
|
||||
<Description>Plasma applet for audio volume management using PulseAudio.</Description>
|
||||
<Archive sha1sum="9b091613cb6c5571566bf35d00767a3aded5bcab" type="tarxz">mirrors://kde/stable/plasma/5.23.2/plasma-pa-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="1ef4eadca996cb5a4c31d06a78234c81fd3a93bb" type="tarxz">mirrors://kde/stable/plasma/5.23.3/plasma-pa-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||
<!--<Dependency>qt5-quick1-devel</Dependency>--><!--no longer available-->
|
||||
@@ -66,6 +66,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>The KDE Plasma Workspace Components</Summary>
|
||||
<Description>The KDE Plasma Workspace Components</Description>
|
||||
<Archive sha1sum="6fc5be8cc58d9e59b99b763d76bb1cec02adb3bf" type="tarxz">mirrors://kde/stable/plasma/5.23.2/plasma-workspace-wallpapers-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="9f5cfda5e8eab630e762c7a95bab1d10f67db811" type="tarxz">mirrors://kde/stable/plasma/5.23.3/plasma-workspace-wallpapers-5.23.3.tar.xz</Archive>
|
||||
<Archive sha1sum="ff3ab698ac1db38ec7700b7b2950040bbd2d1135" type="binary">https://sourceforge.net/projects/pisilinux/files/source/blue.tar.gz</Archive>
|
||||
<Archive sha1sum="d45da9f75145efb3cfb2481653fb11944a6bca14" type="targz">https://sourceforge.net/projects/pisilinux/files/source/Sweet-cat.tar.gz</Archive>
|
||||
<Archive sha1sum="53703a4ea034992a797c1312ab0ae9efafe6d8f9" type="targz">https://github.com/prdsmehmetstc/pisi-crocus-ancyrensis/releases/download/v1.0/pisi-crocus-ancyrensis.tar.gz</Archive>
|
||||
@@ -42,6 +42,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>The KDE Plasma Workspace Components</Summary>
|
||||
<Description>The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop.</Description>
|
||||
<Archive sha1sum="c6e39be5c218270696e69fd950ba73afd3d83c33" type="tarxz">mirrors://kde/stable/plasma/5.23.2/polkit-kde-agent-1-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="f1e8fcf53acf958e938d877bff44569c85e53cdd" type="tarxz">mirrors://kde/stable/plasma/5.23.3/polkit-kde-agent-1-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
@@ -62,6 +62,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="53">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="52">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<PartOf>desktop.misc</PartOf>
|
||||
<Summary>KDE5 Config Module for SDDM</Summary>
|
||||
<Description>KDE5 Config Module for SDDM</Description>
|
||||
<Archive sha1sum="4f93053abc699d6873e9b4a6657ea241fed55270" type="tarxz">mirrors://kde/stable/plasma/5.23.2/sddm-kcm-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="fe93d47eb36b63282857cd75422794bf704070cd" type="tarxz">mirrors://kde/stable/plasma/5.23.3/sddm-kcm-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
@@ -79,6 +79,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>A backend implementation for xdg-desktop-portal using Qt/KF5</Summary>
|
||||
<Description>A backend implementation for xdg-desktop-portal using Qt/KF5</Description>
|
||||
<Archive sha1sum="0ac5d1cbb6ae4a50ed73574f5921327a82f78a41" type="tarxz">https://download.kde.org/stable/plasma/5.23.2/xdg-desktop-portal-kde-5.23.2.tar.xz</Archive>
|
||||
<Archive sha1sum="7c9c9aaca18c386aa58ef8d255a97d0ac7a9d816" type="tarxz">https://download.kde.org/stable/plasma/5.23.3/xdg-desktop-portal-kde-5.23.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||
@@ -70,6 +70,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="43">
|
||||
<Date>2021-11-10</Date>
|
||||
<Version>5.23.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="42">
|
||||
<Date>2021-10-27</Date>
|
||||
<Version>5.23.2</Version>
|
||||
|
||||
Reference in New Issue
Block a user