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/superkaramba/
Date: Mon, 30 Nov 2020 00:52:22
Message-Id: 1606697512.bb3af82e49fb81f4dc3d22db545a563ae9f6340e.asturm@gentoo
1 commit: bb3af82e49fb81f4dc3d22db545a563ae9f6340e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 15:04:17 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=bb3af82e
7
8 kde-apps/superkaramba: 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 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 kde-apps/superkaramba/superkaramba-15.08.3.ebuild | 28 +++++------------------
16 1 file changed, 6 insertions(+), 22 deletions(-)
17
18 diff --git a/kde-apps/superkaramba/superkaramba-15.08.3.ebuild b/kde-apps/superkaramba/superkaramba-15.08.3.ebuild
19 index df7c3726..862c1b7b 100644
20 --- a/kde-apps/superkaramba/superkaramba-15.08.3.ebuild
21 +++ b/kde-apps/superkaramba/superkaramba-15.08.3.ebuild
22 @@ -1,41 +1,25 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 +# Copyright 1999-2020 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=5
28
29 -PYTHON_COMPAT=( python2_7 )
30 -inherit python-single-r1 kde4-base
31 +inherit kde4-base
32
33 DESCRIPTION="A tool to create interactive applets for the KDE desktop"
34 HOMEPAGE="https://www.kde.org/applications/utilities/superkaramba
35 https://utils.kde.org/projects/superkaramba"
36 -KEYWORDS="~amd64 ~x86"
37 -IUSE="debug python"
38
39 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE="debug"
42
43 DEPEND="
44 media-libs/qimageblitz[-qt5(+)]
45 x11-libs/libX11
46 x11-libs/libXrender
47 - python? (
48 - ${PYTHON_DEPS}
49 - $(add_kdeapps_dep pykde4 "${PYTHON_USEDEP}")
50 - )
51 -"
52 -RDEPEND="${DEPEND}
53 - python? ( $(add_kdeapps_dep kross-interpreters "${PYTHON_USEDEP}") )
54 "
55 -
56 -pkg_setup() {
57 - use python && python-single-r1_pkg_setup
58 - kde4-base_pkg_setup
59 -}
60 +RDEPEND="${DEPEND}"
61
62 src_configure() {
63 - local mycmakeargs=(
64 - $(cmake-utils_use_with python PythonLibs)
65 - )
66 -
67 + local mycmakeargs=( -DWITH_PythonLibs=OFF )
68 kde4-base_src_configure
69 }