diff options
author | Johannes Huber <johu@gentoo.org> | 2013-10-30 16:03:50 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2013-10-30 16:03:50 +0000 |
commit | 4fdcfa1fc7debc2d0989a159b833f70cbf688cf3 (patch) | |
tree | 3c7e8150264be5902df5894cb8e724974b3fe8e8 /dev-util/kdevelop-python | |
parent | Marked ~hppa too. (diff) | |
download | gentoo-2-4fdcfa1fc7debc2d0989a159b833f70cbf688cf3.tar.gz gentoo-2-4fdcfa1fc7debc2d0989a159b833f70cbf688cf3.tar.bz2 gentoo-2-4fdcfa1fc7debc2d0989a159b833f70cbf688cf3.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
Diffstat (limited to 'dev-util/kdevelop-python')
-rw-r--r-- | dev-util/kdevelop-python/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild | 51 |
2 files changed, 57 insertions, 1 deletions
diff --git a/dev-util/kdevelop-python/ChangeLog b/dev-util/kdevelop-python/ChangeLog index 3e54edb77cde..8fce4019e90d 100644 --- a/dev-util/kdevelop-python/ChangeLog +++ b/dev-util/kdevelop-python/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/kdevelop-python # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-python/ChangeLog,v 1.4 2013/08/21 07:46:34 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-python/ChangeLog,v 1.5 2013/10/30 16:03:50 johu Exp $ + +*kdevelop-python-1.5.2 (30 Oct 2013) + + 30 Oct 2013; Johannes Huber <johu@gentoo.org> +kdevelop-python-1.5.2.ebuild: + Version bump. 21 Aug 2013; Michael Palimaka <kensington@gentoo.org> -kdevelop-python-1.4.1.ebuild: diff --git a/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild b/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild new file mode 100644 index 000000000000..f77c527d8d18 --- /dev/null +++ b/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $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 $ + +EAPI=5 + +KDEBASE="kdevelop" +KMNAME="kdev-python" +KDE_LINGUAS="bs ca ca@valencia cs da de en_GB eo es et fi fr ga gl hu it ja lt +mai mr nds nl pl pt pt_BR ro ru sk sl sv th tr ug uk zh_CN zh_TW" +inherit kde4-base + +MY_PN="${KMNAME}" +MY_PV="v${PV}" +MY_P="${MY_PN}-${MY_PV}" + +if [[ $PV != *9999* ]]; then + SRC_URI="mirror://kde/stable/kdevelop/${MY_PN}/${PV}/src/${MY_P}.tar.xz" + KEYWORDS="~amd64 ~x86" + S=${WORKDIR}/${MY_P} +else + EGIT_REPO_URI="git://anongit.kde.org/kdev-python.git" + KEYWORDS="" +fi + +DESCRIPTION="Python plugin for KDevelop 4" +HOMEPAGE="http://www.kdevelop.org" + +LICENSE="GPL-2" +IUSE="debug" + +COMMON_DEPEND=" + >=dev-util/kdevplatform-1.4.60 +" +DEPEND="${COMMON_DEPEND} + >=dev-util/kdevelop-pg-qt-1.0.0 +" +RDEPEND=" + ${COMMON_DEPEND} + dev-util/kdevelop +" + +RESTRICT="test" + +src_compile() { + pushd "${WORKDIR}"/${P}_build > /dev/null + emake parser + popd > /dev/null + + kde4-base_src_compile +} |