commit: a517cb5cff245df31e917e92e672baf85049fcee
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 14:54:44 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 00:51:52 2020 +0000
URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=a517cb5c
kde-plasma/plasma-workspace: Drop IUSE=python
Missing kde-apps/pykde4 and easier (non-)maintenance without python.
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../plasma-workspace-4.11.22.ebuild | 31 +++-------------------
1 file changed, 4 insertions(+), 27 deletions(-)
diff --git a/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild
b/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild
index 6a10a6e7..d9cebfb0 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-4.11.22.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -7,16 +7,13 @@ DECLARATIVE_REQUIRED="always"
KDE_HANDBOOK="optional"
KMNAME="kde-workspace"
KMMODULE="plasma"
-PYTHON_COMPAT=( python2_7 )
OPENGL_REQUIRED="always"
WEBKIT_REQUIRED="always"
-inherit python-single-r1 kde4-meta
+inherit kde4-meta
DESCRIPTION="Plasma: KDE desktop framework"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="debug gps json +pim python qalculate"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+IUSE="debug gps json +pim qalculate"
COMMONDEPEND="
dev-libs/libdbusmenu-qt[qt4]
@@ -38,11 +35,6 @@ COMMONDEPEND="
gps? ( >=sci-geosciences/gpsd-2.37 )
json? ( dev-libs/qjson )
pim? ( $(add_kdeapps_dep kdepimlibs) )
- python? (
- ${PYTHON_DEPS}
- >=dev-python/PyQt4-4.4.0[X,${PYTHON_SINGLE_USEDEP}]
- $(add_kdeapps_dep pykde4 "${PYTHON_SINGLE_USEDEP}")
- )
qalculate? ( sci-libs/libqalculate )
"
DEPEND="${COMMONDEPEND}
@@ -73,13 +65,6 @@ KMEXTRACTONLY="
ksysguard/
"
-pkg_setup() {
- if use python ; then
- python-single-r1_pkg_setup
- fi
- kde4-meta_pkg_setup
-}
-
src_unpack() {
if use handbook; then
KMEXTRA+=" doc/plasma-desktop"
@@ -91,23 +76,15 @@ src_unpack() {
src_configure() {
local mycmakeargs=(
-DWITH_NepomukCore=OFF
+ -DWITH_PythonLibrary=OFF
-DWITH_Soprano=OFF
-DWITH_Xmms=OFF
$(cmake-utils_use_with gps libgps)
$(cmake-utils_use_with json QJSON)
$(cmake-utils_use_with pim Akonadi)
$(cmake-utils_use_with pim KdepimLibs)
- $(cmake-utils_use_with python PythonLibrary)
$(cmake-utils_use_with qalculate)
)
kde4-meta_src_configure
}
-
-src_install() {
- kde4-meta_src_install
-
- if use python; then
- python_optimize "${ED}"
- fi
-}