From ddfc158a6715cb32308439e963123d996bacd51f Mon Sep 17 00:00:00 2001 From: "Friedrich W. H. Kossebau" Date: Wed, 14 Feb 2018 17:35:18 +0100 Subject: [PATCH] Have all krunner plugin desktop files prefixed with "plasma-runner-" Summary: With all desktop files being installed in KDE_INSTALL_KSERVICES5DIR, having a namespace prevents clashes and also helps identifying the files. Reviewers: #plasma, broulik, apol Reviewed By: apol Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D10515 --- runners/appstream/CMakeLists.txt | 2 +- ...{appstreamrunner.desktop => plasma-runner-appstream.desktop} | 0 runners/recentdocuments/CMakeLists.txt | 2 +- ...tdocuments.desktop => plasma-runner-recentdocuments.desktop} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename runners/appstream/{appstreamrunner.desktop => plasma-runner-appstream.desktop} (100%) rename runners/recentdocuments/{recentdocuments.desktop => plasma-runner-recentdocuments.desktop} (100%) diff --git a/runners/appstream/CMakeLists.txt b/runners/appstream/CMakeLists.txt index 57c41101d..cacd08fab 100644 --- a/runners/appstream/CMakeLists.txt +++ b/runners/appstream/CMakeLists.txt @@ -4,4 +4,4 @@ add_library(appstreamrunner MODULE appstreamrunner.cpp) target_link_libraries(appstreamrunner PUBLIC KF5::Runner KF5::I18n KF5::Service AppStreamQt) install(TARGETS appstreamrunner DESTINATION ${PLUGIN_INSTALL_DIR}) -install(FILES appstreamrunner.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES plasma-runner-appstream.desktop DESTINATION ${SERVICES_INSTALL_DIR}) diff --git a/runners/appstream/appstreamrunner.desktop b/runners/appstream/plasma-runner-appstream.desktop similarity index 100% rename from runners/appstream/appstreamrunner.desktop rename to runners/appstream/plasma-runner-appstream.desktop diff --git a/runners/recentdocuments/CMakeLists.txt b/runners/recentdocuments/CMakeLists.txt index 93638e812..f0c7e4a7e 100644 --- a/runners/recentdocuments/CMakeLists.txt +++ b/runners/recentdocuments/CMakeLists.txt @@ -15,4 +15,4 @@ target_link_libraries(krunner_recentdocuments install(TARGETS krunner_recentdocuments DESTINATION ${KDE_INSTALL_PLUGINDIR} ) -install(FILES recentdocuments.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) +install(FILES plasma-runner-recentdocuments.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff --git a/runners/recentdocuments/recentdocuments.desktop b/runners/recentdocuments/plasma-runner-recentdocuments.desktop similarity index 100% rename from runners/recentdocuments/recentdocuments.desktop rename to runners/recentdocuments/plasma-runner-recentdocuments.desktop