Gentoo Archives: gentoo-commits

From: Theo Chatzimichos <tampakrap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: dev-util/kdevelop-python/
Date: Tue, 28 Feb 2012 11:23:26
Message-Id: 1330428154.e3fe3ba6ec3b177dbd67cc4d1b82e2986cdf3700.tampakrap@gentoo
1 commit: e3fe3ba6ec3b177dbd67cc4d1b82e2986cdf3700
2 Author: Theo Chatzimichos <tampakrap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 11:22:34 2012 +0000
4 Commit: Theo Chatzimichos <tampakrap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 11:22:34 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e3fe3ba6
7
8 [dev-util/kdevelop-python] Add 1.3 branch live ebuild, since master needs
9 kdevplatform master as well now
10
11 ---
12 .../kdevelop-python-1.3.9999.ebuild | 40 ++++++++++++++++++++
13 1 files changed, 40 insertions(+), 0 deletions(-)
14
15 diff --git a/dev-util/kdevelop-python/kdevelop-python-1.3.9999.ebuild b/dev-util/kdevelop-python/kdevelop-python-1.3.9999.ebuild
16 new file mode 100644
17 index 0000000..7ec8add
18 --- /dev/null
19 +++ b/dev-util/kdevelop-python/kdevelop-python-1.3.9999.ebuild
20 @@ -0,0 +1,40 @@
21 +# Copyright 1999-2012 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Header: $
24 +
25 +EAPI=4
26 +
27 +PYTHON_DEPEND="2"
28 +KMNAME="kdevelop"
29 +KDE_SCM="git"
30 +EGIT_REPONAME="kdev-python"
31 +EGIT_BRANCH="1.3"
32 +KDEVPLATFORM_VERSION="1.2.82"
33 +inherit kde4-base python
34 +
35 +DESCRIPTION="Python plugin for KDevelop 4"
36 +SLOT="4"
37 +KEYWORDS=""
38 +LICENSE="GPL-2"
39 +IUSE="debug"
40 +
41 +DEPEND="
42 + >=dev-util/kdevelop-pg-qt-0.9.0
43 + dev-util/kdevelop
44 +"
45 +RDEPEND="${DEPEND}"
46 +
47 +RESTRICT="test"
48 +
49 +pkg_setup() {
50 + python_set_active_version 2
51 + python_pkg_setup
52 +}
53 +
54 +src_compile() {
55 + pushd ${WORKDIR}/${P}_build
56 + emake parser
57 + popd
58 +
59 + kde4-base_src_compile
60 +}