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 D0A2A138330 for ; Wed, 31 Aug 2016 14:24:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C16DE0AF5; Wed, 31 Aug 2016 14:23:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 47CB0E0B16 for ; Wed, 31 Aug 2016 14:23:52 +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 60110340845 for ; Wed, 31 Aug 2016 14:23:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E3E9247F for ; Wed, 31 Aug 2016 14:23:48 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1472653406.b150b18b0659940dcd8426c4b2ceb503ad76b6c4.kensington@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.0.0.ebuild X-VCS-Directories: dev-util/kdevelop-python/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: b150b18b0659940dcd8426c4b2ceb503ad76b6c4 X-VCS-Branch: master Date: Wed, 31 Aug 2016 14:23: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: 5a6cef3a-900a-4cc5-88ae-503d95b75031 X-Archives-Hash: c2f6894b2a0c5b8ac5bad4ac1533ab58 commit: b150b18b0659940dcd8426c4b2ceb503ad76b6c4 Author: Michael Palimaka gentoo org> AuthorDate: Wed Aug 31 13:49:49 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Aug 31 14:23:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b150b18b dev-util/kdevelop-python: version bump Package-Manager: portage-2.3.0 .../kdevelop-python/kdevelop-python-5.0.0.ebuild | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/dev-util/kdevelop-python/kdevelop-python-5.0.0.ebuild b/dev-util/kdevelop-python/kdevelop-python-5.0.0.ebuild new file mode 100644 index 00000000..5c64de7 --- /dev/null +++ b/dev-util/kdevelop-python/kdevelop-python-5.0.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGIT_BRANCH="5.0" +KDEBASE="kdevelop" +KMNAME="kdev-python" +PYTHON_COMPAT=( python3_5 ) +inherit kde5 python-single-r1 + +DESCRIPTION="Python plugin for KDevelop" +IUSE="" +[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="~amd64 ~x86" + +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-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 +}