public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Heidelberger" <d.okias@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde:master commit in: dev-util/kdevelop-python/
Date: Mon, 29 Apr 2013 21:12:29 +0000 (UTC)	[thread overview]
Message-ID: <1367269831.86b697d37634aad9544ab9cdd7fe59b21e1dba40.okias@gentoo> (raw)

commit:     86b697d37634aad9544ab9cdd7fe59b21e1dba40
Author:     David Heidelberger <david.heidelberger <AT> ixit <DOT> cz>
AuthorDate: Mon Apr 29 21:10:31 2013 +0000
Commit:     David Heidelberger <d.okias <AT> gmail <DOT> com>
CommitDate: Mon Apr 29 21:10:31 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=86b697d3

[dev-util/kdevelop-python] ebuilds fix and rewrite

---
 .../kdevelop-python/kdevelop-python-1.4.90.ebuild  |   36 +++++++------
 .../kdevelop-python-1.4.9999.ebuild                |   57 --------------------
 .../kdevelop-python-1.5.9999.ebuild                |   57 --------------------
 .../kdevelop-python/kdevelop-python-9999.ebuild    |   36 +++++++------
 4 files changed, 38 insertions(+), 148 deletions(-)

diff --git a/dev-util/kdevelop-python/kdevelop-python-1.4.90.ebuild b/dev-util/kdevelop-python/kdevelop-python-1.4.90.ebuild
index 6cc1c04..57bc998 100644
--- a/dev-util/kdevelop-python/kdevelop-python-1.4.90.ebuild
+++ b/dev-util/kdevelop-python/kdevelop-python-1.4.90.ebuild
@@ -1,22 +1,30 @@
 # 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.4.1.ebuild,v 1.2 2012/12/12 12:26:18 dastergon Exp $
+# $Header: $
 
 EAPI=5
 
-KDE_SCM="git"
+KDEBASE="kdevelop"
 KMNAME="kdev-python"
-KDEVPLATFORM_VERSION="1.3.60"
-PYTHON_DEPEND="2"
+PYTHON_COMPAT=( python{2_7,3_1,3_2,3_3} )
 
-inherit kde4-base python
+if [[ $PV == *.9999* ]]; then
+	EGIT_BRANCH="${PV/\.9999/}"
+	KDEVPLATFORM_VERSION="${EGIT_BRANCH}"
+fi
+
+inherit kde4-base python-r1
 
-MY_PN="kdev-python"
+MY_PN="${KMNAME}"
 MY_PV="v${PV}"
 MY_P="${MY_PN}-${MY_PV}"
 
 if [[ $PV != *9999* ]]; then
-	SRC_URI="mirror://kde/unstable/kdevelop/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
+	if [[ $PV == *[6-9][0-9]* ]]; then
+		SRC_URI="mirror://kde/unstable/kdevelop/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
+	else
+		SRC_URI="mirror://kde/stable/kdevelop/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
+	fi
 	KEYWORDS="~amd64 ~x86"
 	S=${WORKDIR}/${MY_P}
 else
@@ -28,25 +36,19 @@ DESCRIPTION="Python plugin for KDevelop 4"
 HOMEPAGE="http://www.kdevelop.org"
 
 LICENSE="GPL-2"
-SLOT="4"
 IUSE="debug"
 
 DEPEND="
+	${PYTHON_DEPS}
 	>=dev-util/kdevelop-pg-qt-1.0.0
-	>=dev-util/kdevplatform-1.3.60
+"
+RDEPEND="
+	${PYTHON_DEPS}
 	dev-util/kdevelop
 "
-RDEPEND="${DEPEND}"
 
 RESTRICT="test"
 
-pkg_setup() {
-	python_set_active_version 2
-	python_pkg_setup
-
-	kde4-base_pkg_setup
-}
-
 src_compile() {
 	pushd "${WORKDIR}"/${P}_build
 	emake parser

diff --git a/dev-util/kdevelop-python/kdevelop-python-1.4.9999.ebuild b/dev-util/kdevelop-python/kdevelop-python-1.4.9999.ebuild
deleted file mode 100644
index ef061b4..0000000
--- a/dev-util/kdevelop-python/kdevelop-python-1.4.9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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.4.1.ebuild,v 1.2 2012/12/12 12:26:18 dastergon Exp $
-
-EAPI=5
-
-KDE_SCM="git"
-EGIT_BRANCH="1.4"
-KMNAME="kdev-python"
-KDEVPLATFORM_VERSION="1.3.60"
-PYTHON_DEPEND="2"
-
-inherit kde4-base python
-
-MY_PN="kdev-python"
-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.bz2"
-	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"
-SLOT="4"
-IUSE="debug"
-
-DEPEND="
-	>=dev-util/kdevelop-pg-qt-1.0.0
-	>=dev-util/kdevplatform-1.3.60
-	dev-util/kdevelop
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-pkg_setup() {
-	python_set_active_version 2
-	python_pkg_setup
-
-	kde4-base_pkg_setup
-}
-
-src_compile() {
-	pushd "${WORKDIR}"/${P}_build
-	emake parser
-	popd
-
-	kde4-base_src_compile
-}

diff --git a/dev-util/kdevelop-python/kdevelop-python-1.5.9999.ebuild b/dev-util/kdevelop-python/kdevelop-python-1.5.9999.ebuild
deleted file mode 100644
index 2477f04..0000000
--- a/dev-util/kdevelop-python/kdevelop-python-1.5.9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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.4.1.ebuild,v 1.2 2012/12/12 12:26:18 dastergon Exp $
-
-EAPI=5
-
-KDE_SCM="git"
-EGIT_BRANCH="1.5"
-KMNAME="kdev-python"
-KDEVPLATFORM_VERSION="1.4.60"
-PYTHON_DEPEND="2"
-
-inherit kde4-base python
-
-MY_PN="kdev-python"
-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.bz2"
-	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"
-SLOT="4"
-IUSE="debug"
-
-DEPEND="
-	>=dev-util/kdevelop-pg-qt-1.0.0
-	>=dev-util/kdevplatform-1.4.60
-	dev-util/kdevelop
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-pkg_setup() {
-	python_set_active_version 2
-	python_pkg_setup
-
-	kde4-base_pkg_setup
-}
-
-src_compile() {
-	pushd "${WORKDIR}"/${P}_build
-	emake parser
-	popd
-
-	kde4-base_src_compile
-}

diff --git a/dev-util/kdevelop-python/kdevelop-python-9999.ebuild b/dev-util/kdevelop-python/kdevelop-python-9999.ebuild
index 4a243fb..57bc998 100644
--- a/dev-util/kdevelop-python/kdevelop-python-9999.ebuild
+++ b/dev-util/kdevelop-python/kdevelop-python-9999.ebuild
@@ -1,22 +1,30 @@
 # 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.4.1.ebuild,v 1.2 2012/12/12 12:26:18 dastergon Exp $
+# $Header: $
 
 EAPI=5
 
-KDE_SCM="git"
+KDEBASE="kdevelop"
 KMNAME="kdev-python"
-KDEVPLATFORM_VERSION="1.5.60"
-PYTHON_DEPEND="2"
+PYTHON_COMPAT=( python{2_7,3_1,3_2,3_3} )
 
-inherit kde4-base python
+if [[ $PV == *.9999* ]]; then
+	EGIT_BRANCH="${PV/\.9999/}"
+	KDEVPLATFORM_VERSION="${EGIT_BRANCH}"
+fi
+
+inherit kde4-base python-r1
 
-MY_PN="kdev-python"
+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.bz2"
+	if [[ $PV == *[6-9][0-9]* ]]; then
+		SRC_URI="mirror://kde/unstable/kdevelop/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
+	else
+		SRC_URI="mirror://kde/stable/kdevelop/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
+	fi
 	KEYWORDS="~amd64 ~x86"
 	S=${WORKDIR}/${MY_P}
 else
@@ -28,25 +36,19 @@ DESCRIPTION="Python plugin for KDevelop 4"
 HOMEPAGE="http://www.kdevelop.org"
 
 LICENSE="GPL-2"
-SLOT="4"
 IUSE="debug"
 
 DEPEND="
+	${PYTHON_DEPS}
 	>=dev-util/kdevelop-pg-qt-1.0.0
-	>=dev-util/kdevplatform-1.5.60
+"
+RDEPEND="
+	${PYTHON_DEPS}
 	dev-util/kdevelop
 "
-RDEPEND="${DEPEND}"
 
 RESTRICT="test"
 
-pkg_setup() {
-	python_set_active_version 2
-	python_pkg_setup
-
-	kde4-base_pkg_setup
-}
-
 src_compile() {
 	pushd "${WORKDIR}"/${P}_build
 	emake parser


             reply	other threads:[~2013-04-29 21:12 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-29 21:12 David Heidelberger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-17 16:12 [gentoo-commits] proj/kde:master commit in: dev-util/kdevelop-python/ Andreas Sturmlechner
2024-08-22 20:03 Andreas Sturmlechner
2024-03-07 12:09 Andreas Sturmlechner
2023-02-24 13:22 Andreas Sturmlechner
2022-12-09 20:04 Andreas Sturmlechner
2022-03-24 12:01 Andreas Sturmlechner
2021-11-11 17:00 Andreas Sturmlechner
2021-11-11 17:00 Andreas Sturmlechner
2021-08-25  9:00 Andreas Sturmlechner
2021-07-22 20:00 Andreas Sturmlechner
2020-09-08 18:17 Andreas Sturmlechner
2020-08-18 17:47 Andreas Sturmlechner
2020-08-18 17:47 Andreas Sturmlechner
2020-06-04 14:26 Andreas Sturmlechner
2020-02-09 18:06 Andreas Sturmlechner
2020-01-11 20:53 Andreas Sturmlechner
2019-11-24 23:51 Andreas Sturmlechner
2019-02-21 10:35 Andreas Sturmlechner
2018-10-08 17:58 Andreas Sturmlechner
2017-10-03  9:44 Johannes Huber
2017-08-18 17:05 Andreas Sturmlechner
2017-08-18 17:05 Andreas Sturmlechner
2017-08-18 17:05 Andreas Sturmlechner
2017-05-03  4:41 Maciej Mrozowski
2017-03-23  0:26 Andreas Sturmlechner
2017-03-18 21:42 Johannes Huber
2017-01-31 13:22 Andreas Sturmlechner
2017-01-06 14:15 Johannes Huber
2016-08-31 14:30 Michael Palimaka
2016-08-31 13:30 Michael Palimaka
2016-08-24 13:38 Michael Palimaka
2016-03-24 20:59 Johannes Huber
2015-12-15 13:26 Michael Palimaka
2015-10-12 16:11 Michael Palimaka
2015-10-12 12:46 Michael Palimaka
2015-07-17 20:40 Johannes Huber
2015-02-10 22:12 Johannes Huber
2014-12-26 13:14 Michael Palimaka
2014-09-18 14:59 Johannes Huber
2014-06-12 16:04 Michael Palimaka
2014-06-12 15:48 Michael Palimaka
2014-05-30  6:52 Johannes Huber
2014-03-17  9:56 Michael Palimaka
2014-03-12 13:06 Johannes Huber
2014-03-11 10:21 Johannes Huber
2013-12-27 16:19 Chris Reffett
2013-08-01  6:29 Michael Palimaka
2013-07-11 10:25 Michael Palimaka
2013-07-11 10:08 Michael Palimaka
2013-07-11 10:04 Michael Palimaka
2013-07-11 10:01 Michael Palimaka
2013-06-23 23:01 Maciej Mrozowski
2013-05-13 15:26 David Heidelberger
2013-05-03 17:48 David Heidelberger
2013-01-22 14:43 Michael Palimaka
2012-03-25 13:12 Dennis Schridde
2012-02-28 19:38 Ian Delaney
2012-02-28 19:09 Ian Delaney
2012-02-28 11:23 Theo Chatzimichos
2012-02-15 15:22 Theo Chatzimichos
2011-10-26 18:36 David Heidelberger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1367269831.86b697d37634aad9544ab9cdd7fe59b21e1dba40.okias@gentoo \
    --to=d.okias@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox