summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-07-20 10:22:05 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2022-07-25 11:20:29 +0200
commitb76607b2ae737506b7f4bffd0503974ac9f08927 (patch)
treecb6df096aa9d5699a18528bcbcb1be49b93bcf2f /kde-apps/kmouth
parentkde-apps/kmousetool: drop 21.12.3 (diff)
downloadgentoo-b76607b2ae737506b7f4bffd0503974ac9f08927.tar.gz
gentoo-b76607b2ae737506b7f4bffd0503974ac9f08927.tar.bz2
gentoo-b76607b2ae737506b7f4bffd0503974ac9f08927.zip
kde-apps/kmouth: drop 21.12.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/kmouth')
-rw-r--r--kde-apps/kmouth/Manifest1
-rw-r--r--kde-apps/kmouth/files/kmouth-21.12.3-use-KDECompilerSettings.patch53
-rw-r--r--kde-apps/kmouth/kmouth-21.12.3.ebuild37
3 files changed, 0 insertions, 91 deletions
diff --git a/kde-apps/kmouth/Manifest b/kde-apps/kmouth/Manifest
index 4d6c58b23155..d019c12ec871 100644
--- a/kde-apps/kmouth/Manifest
+++ b/kde-apps/kmouth/Manifest
@@ -1,2 +1 @@
-DIST kmouth-21.12.3.tar.xz 2107316 BLAKE2B 1ad2c4eb6490291cb8b70c61c9d188d360d70e2151b20824d8f624c5e9107983a1c08cf86f5fe9f6c7bd2f8b8d6e0b897b63273de7f70da8d505b3352b5da716 SHA512 ea7d7c418c33f7b9773d30d233f26d4ec1d7e05983fb48808398605ae4bb2442317e1d7dd4fe2ba2168947fec793ea053548aa1246b808589422263628247688
DIST kmouth-22.04.3.tar.xz 2108236 BLAKE2B e0270128dc88e4066a5a41fe8d173ce121d20b966d736f8e733f88963aabfe1514dac7273ad6cf7e995efdfdb9fe20b3dd2bee72bda36152f1864698e2ae08ef SHA512 255f6c3ae84043e5439fca0662aee234b6481988feb7e308d954405b1d620347255685eae82a2d54542602be226125034b70cabe6bc63f0f58eede3c1bb42d14
diff --git a/kde-apps/kmouth/files/kmouth-21.12.3-use-KDECompilerSettings.patch b/kde-apps/kmouth/files/kmouth-21.12.3-use-KDECompilerSettings.patch
deleted file mode 100644
index b57440c53477..000000000000
--- a/kde-apps/kmouth/files/kmouth-21.12.3-use-KDECompilerSettings.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From cfb889ab38befe1e378d92ab9915aed14ec5843b Mon Sep 17 00:00:00 2001
-From: "Friedrich W. H. Kossebau" <kossebau@kde.org>
-Date: Wed, 8 Dec 2021 20:29:29 +0100
-Subject: [PATCH] Use KDECompilerSettings instead of
- KDEFrameworkCompilerSettings
-
-The latter is only for KF modules to use.
-
-Also include the KDE cmake modules as first thing, as their settings
-can influence other included macros.
-
-GIT_SILENT
----
- CMakeLists.txt | 15 +++++++++++----
- 1 file changed, 11 insertions(+), 4 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 9b89f16..42f1b5b 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -14,18 +14,25 @@ set(QT_MIN_VERSION "5.15.0")
- set(KF5_MIN_VERSION "5.85.0")
-
-
--find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS Core PrintSupport TextToSpeech Xml Widgets)
--
- find_package(ECM ${KF5_MIN_VERSION} NO_MODULE REQUIRED)
- set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
-
--include(ECMAddAppIcon)
- include(KDEInstallDirs)
- include(KDECMakeSettings)
--include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
-+include(KDECompilerSettings NO_POLICY_SCOPE)
-+
-+include(ECMAddAppIcon)
- include(ECMInstallIcons)
- include(ECMAddAppIcon)
-
-+find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS
-+ Core
-+ PrintSupport
-+ TextToSpeech
-+ Xml
-+ Widgets
-+)
-+
- find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
- Crash
- Completion
---
-GitLab
-
diff --git a/kde-apps/kmouth/kmouth-21.12.3.ebuild b/kde-apps/kmouth/kmouth-21.12.3.ebuild
deleted file mode 100644
index e73634d52e5c..000000000000
--- a/kde-apps/kmouth/kmouth-21.12.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-KFMIN=5.88.0
-QTMIN=5.15.2
-inherit ecm kde.org
-
-DESCRIPTION="Text-to-speech synthesizer front end"
-HOMEPAGE="https://apps.kde.org/kmouth/"
-
-LICENSE="GPL-2" # TODO: CHECK
-SLOT="5"
-KEYWORDS="amd64 arm64 ~riscv x86"
-IUSE=""
-
-DEPEND="
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtprintsupport-${QTMIN}:5
- >=dev-qt/qtspeech-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- >=dev-qt/qtxml-${QTMIN}:5
- >=kde-frameworks/kcompletion-${KFMIN}:5
- >=kde-frameworks/kconfig-${KFMIN}:5
- >=kde-frameworks/kconfigwidgets-${KFMIN}:5
- >=kde-frameworks/kcoreaddons-${KFMIN}:5
- >=kde-frameworks/kcrash-${KFMIN}:5
- >=kde-frameworks/ki18n-${KFMIN}:5
- >=kde-frameworks/kio-${KFMIN}:5
- >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
- >=kde-frameworks/kxmlgui-${KFMIN}:5
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-use-KDECompilerSettings.patch" ) # bug 838193