diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-08-24 17:04:17 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-11-30 01:51:52 +0100 |
commit | bb3af82e49fb81f4dc3d22db545a563ae9f6340e (patch) | |
tree | ca9b90b1fe716aad0c0eca110c43683f70e9bc06 | |
parent | kde-misc/kanyremote: Remove package for too expensive deps (diff) | |
download | kde-sunset-bb3af82e49fb81f4dc3d22db545a563ae9f6340e.tar.gz kde-sunset-bb3af82e49fb81f4dc3d22db545a563ae9f6340e.tar.bz2 kde-sunset-bb3af82e49fb81f4dc3d22db545a563ae9f6340e.zip |
kde-apps/superkaramba: 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@gentoo.org>
-rw-r--r-- | kde-apps/superkaramba/Manifest | 2 | ||||
-rw-r--r-- | kde-apps/superkaramba/superkaramba-15.08.3.ebuild | 28 |
2 files changed, 7 insertions, 23 deletions
diff --git a/kde-apps/superkaramba/Manifest b/kde-apps/superkaramba/Manifest index 0af0a1ac..f38ae699 100644 --- a/kde-apps/superkaramba/Manifest +++ b/kde-apps/superkaramba/Manifest @@ -1 +1 @@ -DIST superkaramba-15.08.3.tar.xz 381808 SHA256 29854854488a639afeda21a0847a74bcb2f1d452bb46b02040e153ec75fa37fd SHA512 4e00d1a783330eea15f32394c26a64e66ddabd63d84cdc61ec6df1c14311e93ab3b40439ce63d38234330f6ffda5ab447d4c6da119c1bf68146caaa6be02025b WHIRLPOOL bb05ba49c77b4a92628f2f5a374b80bc85377bb4b04ed85c09237305d885b79bd77ebdb76bfc0ad41c9f5d53c5af0aac34adbdb379dc9c8293e0b579cbcae219 +DIST superkaramba-15.08.3.tar.xz 381808 BLAKE2B dc7028af885315c561f1d3b64f0fa0ef31b82ce6f49256d95223d5ed7d553ec99168573d7054af191f376dadaa2f2a01619166793544faf9b8f9969070ffa5b6 SHA512 4e00d1a783330eea15f32394c26a64e66ddabd63d84cdc61ec6df1c14311e93ab3b40439ce63d38234330f6ffda5ab447d4c6da119c1bf68146caaa6be02025b diff --git a/kde-apps/superkaramba/superkaramba-15.08.3.ebuild b/kde-apps/superkaramba/superkaramba-15.08.3.ebuild index df7c3726..862c1b7b 100644 --- a/kde-apps/superkaramba/superkaramba-15.08.3.ebuild +++ b/kde-apps/superkaramba/superkaramba-15.08.3.ebuild @@ -1,41 +1,25 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 -PYTHON_COMPAT=( python2_7 ) -inherit python-single-r1 kde4-base +inherit kde4-base DESCRIPTION="A tool to create interactive applets for the KDE desktop" HOMEPAGE="https://www.kde.org/applications/utilities/superkaramba https://utils.kde.org/projects/superkaramba" -KEYWORDS="~amd64 ~x86" -IUSE="debug python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +KEYWORDS="~amd64 ~x86" +IUSE="debug" DEPEND=" media-libs/qimageblitz[-qt5(+)] x11-libs/libX11 x11-libs/libXrender - python? ( - ${PYTHON_DEPS} - $(add_kdeapps_dep pykde4 "${PYTHON_USEDEP}") - ) -" -RDEPEND="${DEPEND} - python? ( $(add_kdeapps_dep kross-interpreters "${PYTHON_USEDEP}") ) " - -pkg_setup() { - use python && python-single-r1_pkg_setup - kde4-base_pkg_setup -} +RDEPEND="${DEPEND}" src_configure() { - local mycmakeargs=( - $(cmake-utils_use_with python PythonLibs) - ) - + local mycmakeargs=( -DWITH_PythonLibs=OFF ) kde4-base_src_configure } |