summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-03-19 10:20:28 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-03-19 10:20:28 +0100
commit42ba2e70733f0d63044a2f4d8a44ebd1074e39cc (patch)
tree33a51052c8152063a4c66d0ae6cc607d8661a127 /kde-apps/kcharselect
parentprofiles: package.mask cleanup (diff)
downloadgentoo-42ba2e70733f0d63044a2f4d8a44ebd1074e39cc.tar.gz
gentoo-42ba2e70733f0d63044a2f4d8a44ebd1074e39cc.tar.bz2
gentoo-42ba2e70733f0d63044a2f4d8a44ebd1074e39cc.zip
kde-apps: Drop KDE Applications 19.08.3
Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/kcharselect')
-rw-r--r--kde-apps/kcharselect/Manifest1
-rw-r--r--kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch32
-rw-r--r--kde-apps/kcharselect/kcharselect-19.08.3.ebuild32
3 files changed, 0 insertions, 65 deletions
diff --git a/kde-apps/kcharselect/Manifest b/kde-apps/kcharselect/Manifest
index 8bd8604fdade..af7998020450 100644
--- a/kde-apps/kcharselect/Manifest
+++ b/kde-apps/kcharselect/Manifest
@@ -1,2 +1 @@
-DIST kcharselect-19.08.3.tar.xz 334588 BLAKE2B a402cb308f97aa80f1eee4c82ae07b45241cc446c4c49fdd45b895fbd15696a2b8606a10ee7cdf6ad037c2e7faa58ad862475a114269b388d2d0e6d9c09acb64 SHA512 55c20dc0cacd01f27ea047cf8845c47c93d973b954f3a7481f7949417066b56b031c5bacbf39356f92b785f6ad7113aacec391ec81fafafba6a49dd44366855c
DIST kcharselect-19.12.3.tar.xz 334996 BLAKE2B 894618ae1e3837169247a3ad4a79b9f74ef7771a19ad0d3615c52039b0f2821e7e21175dd4b9a64a7eba852b0228324b93eb51273902326da53e8891a28f55c8 SHA512 85851910deb6c9eab2b02ce7d18fa703c78175f029469500f064e4af86d58b914287da33aeab9372db8919da7a509137849a3038e29e0d03bc125cfae9745006
diff --git a/kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch b/kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch
deleted file mode 100644
index 884ed6a79628..000000000000
--- a/kde-apps/kcharselect/files/kcharselect-19.08.3-qt-5.14.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 956b63170b2606fb274f0bd90399dac0ae9dbcd4 Mon Sep 17 00:00:00 2001
-From: Laurent Montel <montel@kde.org>
-Date: Tue, 17 Sep 2019 13:41:01 +0200
-Subject: Make it compiles against qt5.14
-
----
- kcharselectdia.cc | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/kcharselectdia.cc b/kcharselectdia.cc
-index f1790b5..116cba4 100644
---- a/kcharselectdia.cc
-+++ b/kcharselectdia.cc
-@@ -265,7 +265,6 @@ void KCharSelectDia::toClipHTML()
- QClipboard *cb = QApplication::clipboard();
- QString input;
- QString html;
-- QString tempstring;
- QChar tempchar;
- int i = 0;
-
-@@ -282,7 +281,7 @@ void KCharSelectDia::toClipHTML()
- }
- else
- {
-- html.append(tempstring.sprintf("&#x%x;", tempchar.unicode()));
-+ html.append(QString::asprintf("&#x%x;", tempchar.unicode()));
- }
- }
- cb->setText(html);
---
-cgit v1.1
diff --git a/kde-apps/kcharselect/kcharselect-19.08.3.ebuild b/kde-apps/kcharselect/kcharselect-19.08.3.ebuild
deleted file mode 100644
index 47577286fd47..000000000000
--- a/kde-apps/kcharselect/kcharselect-19.08.3.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-ECM_HANDBOOK="forceoptional"
-KFMIN=5.60.0
-QTMIN=5.12.3
-inherit ecm kde.org
-
-DESCRIPTION="KDE character selection utility"
-HOMEPAGE="https://kde.org/applications/utilities/kcharselect
-https://utils.kde.org/projects/kcharselect/"
-LICENSE="GPL-2" # TODO: CHECK
-SLOT="5"
-KEYWORDS="arm64"
-IUSE=""
-
-DEPEND="
- >=kde-frameworks/kbookmarks-${KFMIN}:5
- >=kde-frameworks/kconfig-${KFMIN}:5
- >=kde-frameworks/kconfigwidgets-${KFMIN}:5
- >=kde-frameworks/kcoreaddons-${KFMIN}:5
- >=kde-frameworks/ki18n-${KFMIN}:5
- >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
- >=kde-frameworks/kxmlgui-${KFMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}"/${P}-qt-5.14.patch )