summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-08-03 19:34:26 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2017-08-03 19:34:26 +0200
commit73e47b95c961f317bca4b311fef0e0dc5833c0eb (patch)
tree0c6289a4674d754cb03f122848fce86d9fcafee4
parent1dad375a54557f44c6cb404433cd7915f9c8a2eb (diff)
downloadkde-73e47b95c961f317bca4b311fef0e0dc5833c0eb.tar.gz
kde-73e47b95c961f317bca4b311fef0e0dc5833c0eb.tar.bz2
kde-73e47b95c961f317bca4b311fef0e0dc5833c0eb.zip
kde-apps/pykde5: Drop dead package
No commit in 3 years, not used by any project.
-rw-r--r--kde-apps/pykde5/metadata.xml8
-rw-r--r--kde-apps/pykde5/pykde5-9999.ebuild80
2 files changed, 0 insertions, 88 deletions
diff --git a/kde-apps/pykde5/metadata.xml b/kde-apps/pykde5/metadata.xml
deleted file mode 100644
index 2fdbf33d963..00000000000
--- a/kde-apps/pykde5/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/kde-apps/pykde5/pykde5-9999.ebuild b/kde-apps/pykde5/pykde5-9999.ebuild
deleted file mode 100644
index f35dbddec4c..00000000000
--- a/kde-apps/pykde5/pykde5-9999.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE="threads"
-OPENGL_REQUIRED="always"
-inherit python-r1 portability kde5 multilib eutils
-
-DESCRIPTION="Python bindings for KDE Applications 5"
-KEYWORDS=""
-IUSE="doc"
-HOMEPAGE="https://techbase.kde.org/Development/Languages/Python"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- $(add_frameworks_dep karchive)
- $(add_frameworks_dep kauth)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kguiaddons)
- $(add_frameworks_dep kitemmodels)
- $(add_frameworks_dep kitemviews)
- $(add_frameworks_dep kplotting)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep sonnet)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtwidgets)
- dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets]
- >=dev-python/sip-4.16.2:=[${PYTHON_USEDEP}]
-"
-
-DEPEND="${RDEPEND}
- doc? ( $(add_frameworks_dep kapidox) )
-"
-
-src_prepare() {
- kde5_src_prepare
-
- python_copy_sources
-}
-
-src_configure() {
- configuration() {
- local mycmakeargs=(
- -DPYTHON_EXECUTABLE=${PYTHON}
- )
- local CMAKE_BUILD_DIR=${S}_build-${PYTHON_ABI}
- kde5_src_configure
- }
-
- python_foreach_impl run_in_build_dir configuration
-}
-
-src_compile() {
- compilation() {
- local CMAKE_BUILD_DIR=${S}_build-${PYTHON_ABI}
- kde5_src_compile
- }
- python_foreach_impl run_in_build_dir compilation
-}
-
-src_test() {
- python_foreach_impl run_in_build_dir kde5_src_test
-}
-
-src_install() {
- installation() {
- emake DESTDIR="${D}" install
-
- python_optimize
- }
- python_foreach_impl run_in_build_dir installation
-
- # As we don't call the eclass's src_install, we have to install the docs manually
- use doc && HTML_DOCS=("${S}/docs/html/")
- einstalldocs
-}