summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-12-02 18:58:17 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-12-03 06:03:11 +0100
commit152f404d910f6d9cefa2547da4efa72d45074cd2 (patch)
treee7907d2cee3122c590e32971c9c41bcdcab42d5f /kde-apps/kdepim-runtime
parentprofiles: Mask kde-apps/kcalcore, kde-apps/kcontacts for removal (diff)
downloadgentoo-152f404d910f6d9cefa2547da4efa72d45074cd2.tar.gz
gentoo-152f404d910f6d9cefa2547da4efa72d45074cd2.tar.bz2
gentoo-152f404d910f6d9cefa2547da4efa72d45074cd2.zip
kde-apps: Drop KDE Applications 19.04.3
Package-Manager: Portage-2.3.80, Repoman-2.3.19 RepoMan-Options: --force Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/kdepim-runtime')
-rw-r--r--kde-apps/kdepim-runtime/Manifest1
-rw-r--r--kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_compactpage-race-condition.patch50
-rw-r--r--kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_lockfilepage-race-condition.patch27
-rw-r--r--kde-apps/kdepim-runtime/kdepim-runtime-19.04.3.ebuild95
4 files changed, 0 insertions, 173 deletions
diff --git a/kde-apps/kdepim-runtime/Manifest b/kde-apps/kdepim-runtime/Manifest
index 7b09c675ee5d..3c1aa2329d74 100644
--- a/kde-apps/kdepim-runtime/Manifest
+++ b/kde-apps/kdepim-runtime/Manifest
@@ -1,2 +1 @@
-DIST kdepim-runtime-19.04.3.tar.xz 1762728 BLAKE2B 29e0226af7044ad595ed7ea547e73efaf234abcf4b643d6b0fa38ae5148c27ba603115d28d6f0eb15b196ce8a8054697e61d3dd89783bbd24d79f1cd197bc060 SHA512 4680954fdec3a3c37dc4947019188ff8978ecf6bf6722e89c2613887104ef7e41c6184c5c061a60664785152c1d590889cb35332740cfc5da56c901aa164ba41
DIST kdepim-runtime-19.08.3.tar.xz 1733348 BLAKE2B 4c78c0e4e3fddbb9694fb877390a6f781e822b4152216946c86da01a29fd55ed06bddae5e159d1e0150ed5dff92a2061237c38616b087ebdbace3a7bad4c6433 SHA512 acdaca2111e2e9542a6c13dca6f43dda5a82f9c6a3905a2f3002c93abb6481e405b6f318c7a3424c2d8aa214b579894a31a3fe86703c479bdd38539f27579098
diff --git a/kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_compactpage-race-condition.patch b/kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_compactpage-race-condition.patch
deleted file mode 100644
index cfee20094953..000000000000
--- a/kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_compactpage-race-condition.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 8ec4db907c403b24685a961b48be5f8a288d9bd9 Mon Sep 17 00:00:00 2001
-From: Christophe Giboudeaux <christophe@krop.fr>
-Date: Wed, 2 Oct 2019 11:26:29 +0200
-Subject: Fix the dependencies on generated files differently.
-
-Some Gentoo users were still having build issues with the mbox resource.
-
-BUG: 410474
-FIXED-IN: 19.08.1
----
- resources/mbox/CMakeLists.txt | 17 +++++++++++++----
- 1 file changed, 13 insertions(+), 4 deletions(-)
-
-diff --git a/resources/mbox/CMakeLists.txt b/resources/mbox/CMakeLists.txt
-index c52230f..ca8bc1e 100644
---- a/resources/mbox/CMakeLists.txt
-+++ b/resources/mbox/CMakeLists.txt
-@@ -14,10 +14,18 @@ set( mboxresource_SRCS
- ${mboxresource_common_SRCS}
- )
-
--# Fix a race condition. mboxresource.cpp needs compactpage.h which includes ui_compactpage.h.
--# Make sure the ui file is generated before building the akonadi_mbox_resource target.
--set_source_files_properties(mboxresource.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/ui_compactpage.h)
--set_source_files_properties(mboxresource.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/ui_lockfilepage.h)
-+# mboxresource.cpp needs UI files generated for another target. We must be sure the files
-+# were created before building the akonadi_mbox_resource target.
-+add_custom_target(generated_headers
-+ DEPENDS
-+ ${CMAKE_CURRENT_BINARY_DIR}/ui_compactpage.h
-+ ${CMAKE_CURRENT_BINARY_DIR}/ui_lockfilepage.h
-+)
-+set_source_files_properties(
-+ ${CMAKE_CURRENT_BINARY_DIR}/ui_compactpage.h
-+ ${CMAKE_CURRENT_BINARY_DIR}/ui_lockfilepage.h
-+ PROPERTIES GENERATED TRUE
-+)
-
- ecm_qt_declare_logging_category(mboxresource_SRCS HEADER mboxresource_debug.h IDENTIFIER MBOXRESOURCE_LOG CATEGORY_NAME org.kde.pim.mboxresource)
-
-@@ -29,6 +37,7 @@ qt5_add_dbus_adaptor(mboxresource_SRCS
- )
-
- add_executable(akonadi_mbox_resource ${mboxresource_SRCS})
-+add_dependencies(akonadi_mbox_resource generated_headers)
-
- if( APPLE )
- set_target_properties(akonadi_mbox_resource PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/../Info.plist.template)
---
-cgit v1.1
diff --git a/kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_lockfilepage-race-condition.patch b/kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_lockfilepage-race-condition.patch
deleted file mode 100644
index 850c65862be3..000000000000
--- a/kde-apps/kdepim-runtime/files/kdepim-runtime-19.04.3-ui_lockfilepage-race-condition.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 4585292dd34f894505f8fc19e2bf51263768d688 Mon Sep 17 00:00:00 2001
-From: Christophe Giboudeaux <christophe@krop.fr>
-Date: Fri, 9 Aug 2019 12:54:01 +0200
-Subject: Fix another race condition found while packaging the 19.08.0 release
-
-BUG: 410474
-FIXED-IN: 19.08.0
-
-CCMAIL: cfeck@kde.org
----
- resources/mbox/CMakeLists.txt | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/resources/mbox/CMakeLists.txt b/resources/mbox/CMakeLists.txt
-index c6fa693..c52230f 100644
---- a/resources/mbox/CMakeLists.txt
-+++ b/resources/mbox/CMakeLists.txt
-@@ -17,6 +17,7 @@ set( mboxresource_SRCS
- # Fix a race condition. mboxresource.cpp needs compactpage.h which includes ui_compactpage.h.
- # Make sure the ui file is generated before building the akonadi_mbox_resource target.
- set_source_files_properties(mboxresource.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/ui_compactpage.h)
-+set_source_files_properties(mboxresource.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/ui_lockfilepage.h)
-
- ecm_qt_declare_logging_category(mboxresource_SRCS HEADER mboxresource_debug.h IDENTIFIER MBOXRESOURCE_LOG CATEGORY_NAME org.kde.pim.mboxresource)
-
---
-cgit v1.1
diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-19.04.3.ebuild b/kde-apps/kdepim-runtime/kdepim-runtime-19.04.3.ebuild
deleted file mode 100644
index 418ba9202700..000000000000
--- a/kde-apps/kdepim-runtime/kdepim-runtime-19.04.3.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Runtime plugin collection to extend the functionality of KDE PIM"
-LICENSE="GPL-2+ LGPL-2.1+"
-KEYWORDS="amd64 arm64 x86"
-IUSE=""
-
-# TODO kolab
-BDEPEND="
- dev-libs/libxslt
-"
-COMMON_DEPEND="
- $(add_frameworks_dep kcodecs)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kdbusaddons)
- $(add_frameworks_dep kholidays)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep kitemmodels)
- $(add_frameworks_dep kjobwidgets)
- $(add_frameworks_dep knotifications)
- $(add_frameworks_dep knotifyconfig)
- $(add_frameworks_dep kservice)
- $(add_frameworks_dep ktextwidgets)
- $(add_frameworks_dep kwallet)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kwindowsystem)
- $(add_frameworks_dep kxmlgui)
- $(add_kdeapps_dep akonadi)
- $(add_kdeapps_dep akonadi-calendar)
- $(add_kdeapps_dep akonadi-contacts)
- $(add_kdeapps_dep akonadi-mime)
- $(add_kdeapps_dep akonadi-notes)
- $(add_kdeapps_dep kalarmcal)
- $(add_kdeapps_dep kcalcore)
- $(add_kdeapps_dep kcalutils)
- $(add_kdeapps_dep kcontacts)
- $(add_kdeapps_dep kdav)
- $(add_kdeapps_dep kidentitymanagement)
- $(add_kdeapps_dep kimap)
- $(add_kdeapps_dep kmailtransport)
- $(add_kdeapps_dep kmbox)
- $(add_kdeapps_dep kmime)
- $(add_kdeapps_dep libkgapi)
- $(add_kdeapps_dep pimcommon)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtnetwork)
- $(add_qt_dep qtnetworkauth)
- $(add_qt_dep qtspeech)
- $(add_qt_dep qtwebengine 'widgets')
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtxml)
- dev-libs/cyrus-sasl:2
- dev-libs/libical:=
-"
-DEPEND="${COMMON_DEPEND}
- $(add_qt_dep qtxmlpatterns)
- test? ( $(add_kdeapps_dep kimap 'test') )
-"
-RDEPEND="${COMMON_DEPEND}
- !kde-apps/kdepim-l10n
- !kde-misc/akonadi-ews
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-ui_lockfilepage-race-condition.patch"
- "${FILESDIR}/${P}-ui_compactpage-race-condition.patch"
-)
-
-RESTRICT+=" test"
-
-src_prepare() {
- kde5_src_prepare
- # We don't build kolab, so we can disable this
- punt_bogus_dep KF5 KDELibs4Support
-}
-
-src_configure() {
- local mycmakeargs=(
- -DCMAKE_DISABLE_FIND_PACKAGE_Libkolabxml=ON
- )
- kde5_src_configure
-}