summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Weller <welp@gentoo.org>2007-12-31 00:52:51 +0000
committerPeter Weller <welp@gentoo.org>2007-12-31 00:52:51 +0000
commitbda8d948c8a934bd6588f54d08a7daf0506aaa77 (patch)
tree9217c320a7c17fc9ee85a1ad364644aef99e82cc /dev-util/pida
parentVersion bump and cleanup. (diff)
downloadgentoo-2-bda8d948c8a934bd6588f54d08a7daf0506aaa77.tar.gz
gentoo-2-bda8d948c8a934bd6588f54d08a7daf0506aaa77.tar.bz2
gentoo-2-bda8d948c8a934bd6588f54d08a7daf0506aaa77.zip
Version bump; bug 199756. Take over maintainership, as pythonhead seems to have gone MIA.
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'dev-util/pida')
-rw-r--r--dev-util/pida/ChangeLog8
-rw-r--r--dev-util/pida/files/digest-pida-0.5.13
-rw-r--r--dev-util/pida/metadata.xml4
-rw-r--r--dev-util/pida/pida-0.5.1.ebuild41
4 files changed, 53 insertions, 3 deletions
diff --git a/dev-util/pida/ChangeLog b/dev-util/pida/ChangeLog
index 8e3ca43155cd..cd826b1742f0 100644
--- a/dev-util/pida/ChangeLog
+++ b/dev-util/pida/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/pida
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/ChangeLog,v 1.13 2007/07/14 11:53:25 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/ChangeLog,v 1.14 2007/12/31 00:52:50 welp Exp $
+
+*pida-0.5.1 (31 Dec 2007)
+
+ 31 Dec 2007; <welp@gentoo.org> metadata.xml, +pida-0.5.1.ebuild:
+ Version bump; bug 199756. Take over maintainership, as pythonhead seems to
+ have gone MIA.
10 Jul 2007; Rob Cakebread <pythonhead@gentoo.org> pida-0.5.0.ebuild:
Add dep for gnome-python even if no gnome USE set. bug #184670 Thanks René
diff --git a/dev-util/pida/files/digest-pida-0.5.1 b/dev-util/pida/files/digest-pida-0.5.1
new file mode 100644
index 000000000000..58a4f37621ad
--- /dev/null
+++ b/dev-util/pida/files/digest-pida-0.5.1
@@ -0,0 +1,3 @@
+MD5 d24bbdc2c07172062cf55dffe58c85f6 PIDA-0.5.1.tar.gz 731698
+RMD160 419d10ce1195742ba772937a662592714b2eeff9 PIDA-0.5.1.tar.gz 731698
+SHA256 b5a68fcd57903f8e0bb74946778cff9a46ab1b1aef1a16d3358d0b0479ac0b68 PIDA-0.5.1.tar.gz 731698
diff --git a/dev-util/pida/metadata.xml b/dev-util/pida/metadata.xml
index 98a7e6ee153b..b8409a043b55 100644
--- a/dev-util/pida/metadata.xml
+++ b/dev-util/pida/metadata.xml
@@ -3,7 +3,7 @@
<pkgmetadata>
<herd>no-herd</herd>
<maintainer>
- <email>pythonhead@gentoo.org</email>
- <name>Rob Cakebread</name>
+ <email>welp@gentoo.org</email>
+ <name>Peter Weller</name>
</maintainer>
</pkgmetadata>
diff --git a/dev-util/pida/pida-0.5.1.ebuild b/dev-util/pida/pida-0.5.1.ebuild
new file mode 100644
index 000000000000..19c71ae08dc1
--- /dev/null
+++ b/dev-util/pida/pida-0.5.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pida/pida-0.5.1.ebuild,v 1.1 2007/12/31 00:52:50 welp Exp $
+
+NEED_PYTHON=2.4
+
+inherit distutils
+MY_P="PIDA-${PV}"
+
+DESCRIPTION="Gtk and/or Vim-based Python Integrated Development Application"
+HOMEPAGE="http://pida.co.uk/"
+SRC_URI="http://pida.googlecode.com/files/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND=">=dev-python/pygtk-2.8
+ >=dev-python/setuptools-0.6_rc3
+ dev-python/gnome-python
+ gnome? ( >=dev-python/gnome-python-extras-2.14.0-r1 )
+ >=x11-libs/vte-0.11.11-r2
+ >=dev-python/kiwi-1.9.1"
+RDEPEND="${DEPEND}
+ >=app-editors/gvim-6.3"
+S=${WORKDIR}/${MY_P}
+
+pkg_setup() {
+ if ! built_with_use x11-libs/vte python ; then
+ eerror "x11-libs/vte has to be built with python USE-flag"
+ die "missing python USE-flag for x11-libs/vte"
+ fi
+}
+
+pkg_postinst() {
+ elog "Optional packages pida integrates with:"
+ elog "app-misc/mc (Midnight Commander)"
+ elog "dev-util/gazpacho (Glade-like interface designer)"
+ elog "Revision control: cvs, svn, darcs and many others"
+}