Gentoo Archives: gentoo-commits

From: Chris Reffett <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: dev-util/kdevelop-python/
Date: Fri, 27 Dec 2013 16:19:18
Message-Id: 1388161115.2e51170f99de50d8c51e1474ac1f82e813b79f00.creffett@gentoo
1 commit: 2e51170f99de50d8c51e1474ac1f82e813b79f00
2 Author: Chris Reffett <creffett <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 27 16:18:35 2013 +0000
4 Commit: Chris Reffett <creffett <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 27 16:18:35 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=2e51170f
7
8 [dev-util/kdevelop-python] Version bump
9
10 Package-Manager: portage-2.2.7
11
12 ---
13 .../kdevelop-python/kdevelop-python-1.6.0.ebuild | 50 ++++++++++++++++++++++
14 1 file changed, 50 insertions(+)
15
16 diff --git a/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild b/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild
17 new file mode 100644
18 index 0000000..7484a32
19 --- /dev/null
20 +++ b/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild
21 @@ -0,0 +1,50 @@
22 +# Copyright 1999-2013 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild,v 1.1 2013/10/30 16:03:50 johu Exp $
25 +
26 +EAPI=5
27 +
28 +KDEBASE="kdevelop"
29 +KMNAME="kdev-python"
30 +KDE_LINGUAS="bs ca ca@valencia cs da de en_GB eo es et fi fr ga gl hu it ja lt
31 +mai mr nds nl pl pt pt_BR ro ru sk sl sv th tr ug uk zh_CN zh_TW"
32 +inherit kde4-base
33 +
34 +MY_PN="${KMNAME}"
35 +MY_P="${MY_PN}-${PV}"
36 +
37 +if [[ $PV != *9999* ]]; then
38 + SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${MY_P}.tar.xz"
39 + KEYWORDS="~amd64 ~x86"
40 + S=${WORKDIR}/${MY_P}
41 +else
42 + EGIT_REPO_URI="git://anongit.kde.org/kdev-python.git"
43 + KEYWORDS=""
44 +fi
45 +
46 +DESCRIPTION="Python plugin for KDevelop 4"
47 +HOMEPAGE="http://www.kdevelop.org"
48 +
49 +LICENSE="GPL-2"
50 +IUSE="debug"
51 +
52 +COMMON_DEPEND="
53 + >=dev-util/kdevplatform-1.4.60
54 +"
55 +DEPEND="${COMMON_DEPEND}
56 + >=dev-util/kdevelop-pg-qt-1.0.0
57 +"
58 +RDEPEND="
59 + ${COMMON_DEPEND}
60 + dev-util/kdevelop
61 +"
62 +
63 +RESTRICT="test"
64 +
65 +src_compile() {
66 + pushd "${WORKDIR}"/${P}_build > /dev/null
67 + emake parser
68 + popd > /dev/null
69 +
70 + kde4-base_src_compile
71 +}