Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde-sunset:master commit in: kde-apps/kate/
Date: Mon, 30 Nov 2020 00:52:24
Message-Id: 1606697512.49a3f016d2960a87e587497981353f56843c2eb3.asturm@gentoo
1 commit: 49a3f016d2960a87e587497981353f56843c2eb3
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 15:18:03 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 30 00:51:52 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=49a3f016
7
8 kde-apps/kate: Drop IUSE=python
9
10 Missing kde-apps/pykde4 and easier (non-)maintenance without python.
11
12 Package-Manager: Portage-3.0.4, Repoman-3.0.1
13 RepoMan-Options: --force
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 kde-apps/kate/kate-4.14.3.ebuild | 26 +++++---------------------
17 1 file changed, 5 insertions(+), 21 deletions(-)
18
19 diff --git a/kde-apps/kate/kate-4.14.3.ebuild b/kde-apps/kate/kate-4.14.3.ebuild
20 index 612794df..18c92cf4 100644
21 --- a/kde-apps/kate/kate-4.14.3.ebuild
22 +++ b/kde-apps/kate/kate-4.14.3.ebuild
23 @@ -1,29 +1,22 @@
24 -# Copyright 1999-2016 Gentoo Foundation
25 +# Copyright 1999-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=5
29 +
30 KDE_HANDBOOK="optional"
31 KMNAME="kate"
32 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
33 -
34 -inherit python-single-r1 kde4-meta kde4-functions-extra
35 +inherit kde4-meta kde4-functions-extra
36
37 DESCRIPTION="Kate is an MDI texteditor"
38 HOMEPAGE="https://www.kde.org/applications/utilities/kate http://kate-editor.org"
39 KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
40 -IUSE="debug python"
41 -
42 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
43 +IUSE="debug"
44
45 DEPEND="
46 $(add_kdeframeworks_dep kactivities '' 4.13)
47 dev-libs/libxml2
48 dev-libs/libxslt
49 dev-libs/qjson
50 - python? (
51 - ${PYTHON_DEPS}
52 - $(add_kdeapps_dep pykde4 "${PYTHON_USEDEP}" 4.9.2-r1)
53 - )
54 "
55 RDEPEND="${DEPEND}
56 $(add_kdeapps_dep katepart)
57 @@ -34,16 +27,9 @@ KMEXTRA="
58 addons/plasma
59 "
60
61 -pkg_setup() {
62 - if use python; then
63 - python-single-r1_pkg_setup
64 - fi
65 - kde4-meta_pkg_setup
66 -}
67 -
68 src_configure() {
69 local mycmakeargs=(
70 - $(cmake-utils_use_build python pate)
71 + -DBUILD_pate=OFF
72 )
73
74 kde4-meta_src_configure
75 @@ -53,9 +39,7 @@ pkg_postinst() {
76 kde4-meta_pkg_postinst
77
78 if ! has_version kde-apps/kaddressbook:${SLOT}; then
79 - echo
80 elog "File templates plugin requires kde-apps/kaddressbook:${SLOT}."
81 elog "Please install it if you plan to use this plugin."
82 - echo
83 fi
84 }