diff options
author | Johannes Huber <johu@gentoo.org> | 2016-07-25 22:07:19 +0200 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2016-07-25 22:46:38 +0200 |
commit | 992ba30ca1b8dd2addb44952629885dcaeda20b9 (patch) | |
tree | 2727f7eff8e3f470656e4b3d439d59729359101e /kde-plasma/plasma-sdk | |
parent | app-shells/zsh: bump to EAPI 6 and skip release actions for live ebuild (diff) | |
download | gentoo-992ba30ca1b8dd2addb44952629885dcaeda20b9.tar.gz gentoo-992ba30ca1b8dd2addb44952629885dcaeda20b9.tar.bz2 gentoo-992ba30ca1b8dd2addb44952629885dcaeda20b9.zip |
kde-plasma: Remove KDE Plasma 5.5.5
Package-Manager: portage-2.3.0
Diffstat (limited to 'kde-plasma/plasma-sdk')
-rw-r--r-- | kde-plasma/plasma-sdk/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/plasma-sdk/files/plasma-sdk-5.5.5-kdevplatform-lookup.patch | 139 | ||||
-rw-r--r-- | kde-plasma/plasma-sdk/plasma-sdk-5.5.5-r1.ebuild | 63 |
3 files changed, 0 insertions, 203 deletions
diff --git a/kde-plasma/plasma-sdk/Manifest b/kde-plasma/plasma-sdk/Manifest index b93cf799c78d..744cca1d22a4 100644 --- a/kde-plasma/plasma-sdk/Manifest +++ b/kde-plasma/plasma-sdk/Manifest @@ -1,3 +1,2 @@ -DIST plasma-sdk-5.5.5.tar.xz 666148 SHA256 a8e99087d41eeedcf9f74de1805035bfb7be21c729156023072d961f2080010c SHA512 a858a09318f53b3f45f9a5a1fd84039b2e6075c80527fbae7e99d9e39623c3a725bc81b9bb76715c255c9075ce20ab31de7e8b3065e0dae326a7d7a0f9243cc4 WHIRLPOOL ce0ae9e8198794b7bd43cfd1d340626dcc543863b84a3027c12f7b1c83f9c2ffa2648326f7fbb64222eb9af7e92db510171b5549868daeec5c55d396c253f3fa DIST plasma-sdk-5.6.5.tar.xz 705104 SHA256 c8fa4d107b43e9c64c65a20ff2f87ba4b3a0619c5821a46f9b1c10e70658226d SHA512 9dbcd27fcf4734def58bd8aba974bfd71e1a0d685f853e3b61b058872a3089478a3dce28992b8400f715c1d76c5026f32c2280c8b6d8f99eec23ca5f1506c851 WHIRLPOOL 120222ea4a2fddae7b79ea46e64ccd9daa44bef119bd45a493e1be2e2a932b4ea2034c6364b1b6e5b8a85741e8752d51223979e5b7749a45e174b18ed0e3547f DIST plasma-sdk-5.7.2.tar.xz 698040 SHA256 f49ed3ed3d6409df44ce98833f518968c81d0ef0d380a44651eacdb22bcd4b7f SHA512 646dd9fb9d88f832007c63e60c9fb8762a7073df97210bcfc65e8f9f32ee472125994e2a98ee93f1808108d08b1f33b7d4bc7b828ec078ebfbc5af15129c9c85 WHIRLPOOL a7e2d3ef95eb728f4e70b5390cbfa910f31fc40d202aae52f389f86e626f4a6ed15212bdf5a86970ccf027cef437349fa9d422c260da3a29b37333aea89b66f8 diff --git a/kde-plasma/plasma-sdk/files/plasma-sdk-5.5.5-kdevplatform-lookup.patch b/kde-plasma/plasma-sdk/files/plasma-sdk-5.5.5-kdevplatform-lookup.patch deleted file mode 100644 index 83d3f2e77a82..000000000000 --- a/kde-plasma/plasma-sdk/files/plasma-sdk-5.5.5-kdevplatform-lookup.patch +++ /dev/null @@ -1,139 +0,0 @@ -From: Kevin Funk <kfunk@kde.org> -Date: Tue, 22 Dec 2015 14:25:48 +0000 -Subject: CMake: KDevplatform integration fixes -X-Git-Tag: v5.5.95 -X-Git-Url: http://quickgit.kde.org/?p=plasma-sdk.git&a=commitdiff&h=616cd9c3cabff9b826fdba935b65b8dc45b05ac0 ---- -CMake: KDevplatform integration fixes - -Summary: -* Adapt to kdevplatform changes -* CMake: Simplify kdevplatform lookup - -Reviewers: mart - -Reviewed By: mart - -Differential Revision: https://phabricator.kde.org/D668 ---- - - ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -36,6 +36,12 @@ - set(BUILD_TESTING OFF CACHE BOOL "Build the testing tree.") - endif() - -+find_package(KDevPlatform 4.90.90) -+set_package_properties(KDevPlatform PROPERTIES -+ PURPOSE "Required for plasmate" -+ TYPE OPTIONAL -+) -+ - add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0) - - include(KDEInstallDirs) -@@ -56,7 +62,7 @@ - - # Load CMake, Compiler and InstallDirs settings from KF5 and the following are already somewhat "done" tier1/tier2 libs from kdelibs: - find_package(KF5 REQUIRED COMPONENTS -- Archive Completion Config ConfigWidgets CoreAddons DBusAddons Declarative I18n IconThemes -+ Archive Completion Config ConfigWidgets CoreAddons DBusAddons Declarative I18n IconThemes ItemModels - KIO NewStuff Parts Plasma PlasmaQuick Service TextEditor WidgetsAddons XmlGui WindowSystem) - - ######################################################################### -@@ -66,18 +72,15 @@ - - remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS -DQT_NO_CAST_FROM_BYTEARRAY -DQT_NO_KEYWORDS) - --option(PLASMATE_BUILD_WITH_KDEVPLATFORM "Build the plasmate repository with KDevPlatform Support" OFF) --message("Plasmate depends on Kdevplatform. So since Kdevplatform has not been released yes, Plasmate's build is being disabled by default for the time being.") --message("Please pass -DPLASMATE_BUILD_WITH_KDEVPLATFORM=ON in order to build the Plasmate") -- - add_subdirectory(cuttlefish) - add_subdirectory(engineexplorer) - add_subdirectory(plasmoidviewer) - add_subdirectory(themeexplorer) - #add_subdirectory(remote-widgets-browser) - #add_subdirectory(wallpaperviewer) --if(PLASMATE_BUILD_WITH_KDEVPLATFORM) -+if (KDevPlatform_FOUND) - add_subdirectory(plasmate) - endif() - -+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) - - ---- a/plasmate/CMakeLists.txt -+++ b/plasmate/CMakeLists.txt -@@ -11,16 +11,9 @@ - find_program(GIT_EXECUTABLE_FOUND git) - add_feature_info(GIT_EXECUTABLE_FOUND "Git" "Distributed Revision Control System" "http://git-scm.com/" FALSE "" "Runtime dependency needed to use the TimeLine feature.") - --set( KDEVELOP_VERSION_MAJOR 4 ) --set( KDEVELOP_VERSION_MINOR 90 ) --set( KDEVELOP_VERSION_PATCH 60 ) --# KDevplatform dependency version --set( KDEVPLATFORM_VERSION "1.${KDEVELOP_VERSION_MINOR}.${KDEVELOP_VERSION_PATCH}" ) -- --find_package(KDevPlatform ${KDEVPLATFORM_VERSION} REQUIRED) -- - find_package(KF5 REQUIRED COMPONENTS -- KDELibs4Support) -+ KDELibs4Support -+) - - #install( FILES previewer/windowswitcher/thumbnails/konqueror.png - #previewer/windowswitcher/thumbnails/kmail.png - ---- a/plasmate/app/CMakeLists.txt -+++ b/plasmate/app/CMakeLists.txt -@@ -31,8 +31,8 @@ - KF5::PlasmaQuick - KF5::Archive - #${KDEPIMLIBS_KPIMUTILS_LIBS} -- ${KDEVPLATFORM_INTERFACES_LIBRARIES} -- ${KDEVPLATFORM_SHELL_LIBRARIES} -+ KDev::Interfaces -+ KDev::Shell - ) - - install(TARGETS plasmate ${INSTALL_TARGETS_DEFAULT_ARGS}) - ---- a/plasmate/plugins/plasmaprojectmanager/CMakeLists.txt -+++ b/plasmate/plugins/plasmaprojectmanager/CMakeLists.txt -@@ -6,9 +6,9 @@ - - add_library(kdevplasmamanager MODULE ${kdevplasmamanager_SRCS}) - target_link_libraries(kdevplasmamanager -- KF5::KIOWidgets - KDev::Project - KDev::Util -+ KF5::KIOWidgets - KF5::Plasma - ) - - ---- a/plasmate/plugins/savesystemview/CMakeLists.txt -+++ b/plasmate/plugins/savesystemview/CMakeLists.txt -@@ -6,12 +6,13 @@ - ) - - add_library(kdevsavesystemview MODULE ${kdevsavesystemview_SRCS}) --target_link_libraries(kdevsavesystemview ${KDEVPLATFORM_INTERFACES_LIBRARIES} -- ${KDEVPLATFORM_PROJECT_LIBRARIES} -- ${KDEVPLATFORM_UTIL_LIBRARIES} -- ${KDEVPLATFORM_VCS_LIBRARIES} -- Qt5::Quick -- KF5::Declarative -+target_link_libraries(kdevsavesystemview -+ KDev::Interfaces -+ KDev::Project -+ KDev::Util -+ KDev::Vcs -+ Qt5::Quick -+ KF5::Declarative - ) - - install(TARGETS kdevsavesystemview DESTINATION ${PLUGIN_INSTALL_DIR} ) - diff --git a/kde-plasma/plasma-sdk/plasma-sdk-5.5.5-r1.ebuild b/kde-plasma/plasma-sdk/plasma-sdk-5.5.5-r1.ebuild deleted file mode 100644 index e595419d1fa1..000000000000 --- a/kde-plasma/plasma-sdk/plasma-sdk-5.5.5-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -KDE_TEST="optional" -VIRTUALX_REQUIRED="test" -inherit kde5 - -DESCRIPTION="Useful applications for Plasma development" -KEYWORDS="amd64 ~arm x86" -IUSE="plasmate" - -DEPEND=" - $(add_frameworks_dep karchive) - $(add_frameworks_dep kcompletion) - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kdbusaddons) - $(add_frameworks_dep kdeclarative) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kiconthemes) - $(add_frameworks_dep kio) - $(add_frameworks_dep kitemmodels) - $(add_frameworks_dep kpackage) - $(add_frameworks_dep kservice) - $(add_frameworks_dep ktexteditor) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep plasma) - $(add_qt_dep qtdbus) - $(add_qt_dep qtdeclarative) - $(add_qt_dep qtgui) - $(add_qt_dep qtwidgets) - $(add_qt_dep qtxml) - plasmate? ( - $(add_frameworks_dep kdelibs4support) - $(add_frameworks_dep knewstuff) - $(add_frameworks_dep kparts) - $(add_qt_dep qtwebkit) - dev-util/kdevplatform:5 - ) -" -RDEPEND="${DEPEND} - !dev-util/plasmate -" - -PATCHES=( - "${FILESDIR}/${PN}-5.5.5-kdevplatform-lookup.patch" # 5.6 branch - "${FILESDIR}/${PN}-5.5.5-qtwebkit-optional.patch" # git master - "${FILESDIR}/${PN}-5.5.5-dependencies.patch" # RR pending -) - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_find_package plasmate KDevPlatform) - $(cmake-utils_use_find_package plasmate Qt5WebKit) - $(cmake-utils_use_find_package plasmate Qt5WebKitWidgets) - ) - - kde5_src_configure -} |