From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 322CF139696 for ; Thu, 23 Mar 2017 00:11:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6DC6E21C0B9; Thu, 23 Mar 2017 00:11:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4789F21C081 for ; Thu, 23 Mar 2017 00:11:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EADA5341640 for ; Thu, 23 Mar 2017 00:11:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A7AD7197 for ; Thu, 23 Mar 2017 00:11:48 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1490227886.413d79af2fc39379aac57e657e29f645e3fd09fe.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdevelop-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kdevelop-python/kdevelop-python-5.1.0-r1.ebuild X-VCS-Directories: dev-util/kdevelop-python/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 413d79af2fc39379aac57e657e29f645e3fd09fe X-VCS-Branch: master Date: Thu, 23 Mar 2017 00:11:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fc3f9548-826c-4078-b4c0-5096869994f3 X-Archives-Hash: 0b431b641fb3a564a04258f956653d0f commit: 413d79af2fc39379aac57e657e29f645e3fd09fe Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 23 00:08:56 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Mar 23 00:11:26 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413d79af dev-util/kdevelop-python: Add missing RDEPEND Gentoo-bug: 613548 Package-Manager: Portage-2.3.3, Repoman-2.3.1 .../kdevelop-python-5.1.0-r1.ebuild | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/dev-util/kdevelop-python/kdevelop-python-5.1.0-r1.ebuild b/dev-util/kdevelop-python/kdevelop-python-5.1.0-r1.ebuild new file mode 100644 index 00000000000..240e6008cc8 --- /dev/null +++ b/dev-util/kdevelop-python/kdevelop-python-5.1.0-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_BRANCH="5.1" +KDEBASE="kdevelop" +KMNAME="kdev-python" +PYTHON_COMPAT=( python3_{5,6} ) +inherit kde5 python-single-r1 + +DESCRIPTION="Python plugin for KDevelop" +IUSE="" +[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="~amd64 ~x86" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS} + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kitemmodels) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep kparts) + $(add_frameworks_dep ktexteditor) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_frameworks_dep threadweaver) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + dev-util/kdevplatform:5 +" +RDEPEND="${DEPEND} + dev-python/pycodestyle[${PYTHON_USEDEP}] + dev-util/kdevelop:5 +" + +RESTRICT+=" test" + +pkg_setup() { + python-single-r1_pkg_setup + kde5_pkg_setup +} + +src_compile() { + pushd "${WORKDIR}"/${P}_build > /dev/null || die + emake parser + popd > /dev/null || die + + kde5_src_compile +}