-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84542 from petabyteboy/feature/plasma-5-18
plasma5: 5.17.5 -> 5.18.5
- Loading branch information
Showing
26 changed files
with
315 additions
and
439 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
WGET_ARGS=( https://download.kde.org/stable/plasma/5.17.5/ ) | ||
WGET_ARGS=( https://download.kde.org/stable/plasma/5.18.5/ ) |
21 changes: 21 additions & 0 deletions
21
pkgs/desktops/plasma-5/kde-gtk-config/0001-gsettings-schemas-path.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/kded/gtkconfig.cpp b/kded/gtkconfig.cpp | ||
index 5303636..199c4d5 100644 | ||
--- a/kded/gtkconfig.cpp | ||
+++ b/kded/gtkconfig.cpp | ||
@@ -41,6 +41,16 @@ GtkConfig::GtkConfig(QObject *parent, const QVariantList&) : | ||
kdeglobalsConfigWatcher(KConfigWatcher::create(KSharedConfig::openConfig(QStringLiteral("kdeglobals")))), | ||
kwinConfigWatcher(KConfigWatcher::create(KSharedConfig::openConfig(QStringLiteral("kwinrc")))) | ||
{ | ||
+ // Add GSETTINGS_SCHEMAS_PATH to the front of XDG_DATA_DIRS. | ||
+ // Normally this would be done by wrapGAppsHook, but this plugin | ||
+ // (shared object) cannot be wrapped. | ||
+ QByteArray xdgdata = qgetenv("XDG_DATA_DIRS"); | ||
+ if (!xdgdata.isEmpty()) { | ||
+ xdgdata.push_front(":"); | ||
+ } | ||
+ xdgdata.push_front(QByteArray(GSETTINGS_SCHEMAS_PATH)); | ||
+ qputenv("XDG_DATA_DIRS", xdgdata); | ||
+ | ||
QDBusConnection dbus = QDBusConnection::sessionBus(); | ||
dbus.registerService(QStringLiteral("org.kde.GtkConfig")); | ||
dbus.registerObject(QStringLiteral("/GtkConfig"), this, QDBusConnection::ExportScriptableSlots); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 0 additions & 49 deletions
49
pkgs/desktops/plasma-5/kde-gtk-config/patches/follow-symlinks.patch
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
pkgs/desktops/plasma-5/kde-gtk-config/patches/gsettings.patch
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
{ | ||
mkDerivation, | ||
extra-cmake-modules, kdoctools, | ||
kconfig, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, kio, | ||
knewstuff, kross, krunner, kservice, ksysguard, kunitconversion, ibus, | ||
plasma-framework, plasma-workspace, qtdeclarative, qtx11extras, kholidays | ||
kconfig, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, kholidays, | ||
kio, knewstuff, kpurpose, kross, krunner, kservice, ksysguard, | ||
kunitconversion, ibus, plasma-framework, plasma-workspace, qtdeclarative, | ||
qtwebengine, qtx11extras | ||
}: | ||
|
||
mkDerivation { | ||
name = "kdeplasma-addons"; | ||
nativeBuildInputs = [ extra-cmake-modules kdoctools ]; | ||
buildInputs = [ | ||
kconfig kconfigwidgets kcoreaddons kcmutils kdelibs4support kio knewstuff | ||
kross krunner kservice ksysguard kunitconversion ibus plasma-framework | ||
plasma-workspace qtdeclarative qtx11extras kholidays | ||
kconfig kconfigwidgets kcoreaddons kcmutils kdelibs4support kholidays kio | ||
knewstuff kpurpose kross krunner kservice ksysguard kunitconversion ibus | ||
plasma-framework plasma-workspace qtdeclarative qtwebengine qtx11extras | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
{ | ||
mkDerivation, | ||
extra-cmake-modules, kdoctools, | ||
gconf, glib, kconfigwidgets, kcoreaddons, kdeclarative, kglobalaccel, ki18n, | ||
libcanberra-gtk3, libpulseaudio, plasma-framework, qtdeclarative, kwindowsystem | ||
kconfigwidgets, kcoreaddons, kdeclarative, kglobalaccel, ki18n, kwindowsystem, plasma-framework, | ||
qtdeclarative, | ||
gconf, glib, libcanberra-gtk3, libpulseaudio, sound-theme-freedesktop | ||
}: | ||
|
||
mkDerivation { | ||
name = "plasma-pa"; | ||
nativeBuildInputs = [ extra-cmake-modules kdoctools ]; | ||
buildInputs = [ | ||
gconf glib kconfigwidgets kcoreaddons kdeclarative kglobalaccel ki18n | ||
libcanberra-gtk3 libpulseaudio plasma-framework qtdeclarative kwindowsystem | ||
gconf glib libcanberra-gtk3 libpulseaudio sound-theme-freedesktop | ||
|
||
kconfigwidgets kcoreaddons kdeclarative kglobalaccel ki18n plasma-framework | ||
kwindowsystem | ||
|
||
qtdeclarative | ||
]; | ||
} |
Oops, something went wrong.