summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-12 12:58:47 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-12 12:58:47 +0000
commit152ab943aa8854959a5f6dd4f2bfcc9c9462b3df (patch)
tree0831a29c47b606055ad7e608848fa82428de6df9 /net-im/pebrot
parentRemove blocker against app-editors/emacs-23.3. (diff)
downloadgentoo-2-152ab943aa8854959a5f6dd4f2bfcc9c9462b3df.tar.gz
gentoo-2-152ab943aa8854959a5f6dd4f2bfcc9c9462b3df.tar.bz2
gentoo-2-152ab943aa8854959a5f6dd4f2bfcc9c9462b3df.zip
Use Python 2 (bug #315107).
(Portage version: 2.2.0_alpha26_p15/cvs/Linux x86_64)
Diffstat (limited to 'net-im/pebrot')
-rw-r--r--net-im/pebrot/ChangeLog6
-rw-r--r--net-im/pebrot/pebrot-0.8.9.ebuild18
2 files changed, 19 insertions, 5 deletions
diff --git a/net-im/pebrot/ChangeLog b/net-im/pebrot/ChangeLog
index 5147e2718982..d65228f7aaa0 100644
--- a/net-im/pebrot/ChangeLog
+++ b/net-im/pebrot/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-im/pebrot
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/pebrot/ChangeLog,v 1.11 2011/03/11 21:26:22 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/pebrot/ChangeLog,v 1.12 2011/03/12 12:58:47 arfrever Exp $
+
+ 12 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ pebrot-0.8.9.ebuild:
+ Use Python 2 (bug #315107).
11 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-pebrot-0.8.8.ebuild:
diff --git a/net-im/pebrot/pebrot-0.8.9.ebuild b/net-im/pebrot/pebrot-0.8.9.ebuild
index 0cea189d7a18..838dcbfdeccc 100644
--- a/net-im/pebrot/pebrot-0.8.9.ebuild
+++ b/net-im/pebrot/pebrot-0.8.9.ebuild
@@ -1,18 +1,28 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/pebrot/pebrot-0.8.9.ebuild,v 1.2 2009/05/31 23:39:48 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/pebrot/pebrot-0.8.9.ebuild,v 1.3 2011/03/12 12:58:47 arfrever Exp $
+
+EAPI="3"
+PYTHON_DEPEND="2"
inherit distutils
DESCRIPTION="curses-based MSN client"
HOMEPAGE="http://pebrot.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
-DEPEND=">=dev-lang/python-2.2"
+DEPEND=""
+RDEPEND=""
DOCS="AUTHORS README PKG-INFO INSTALL ChangeLog COPYING"
+PYTHON_MODNAME="pypebrot"
+
+pkg_setup() {
+ python_set_active_version 2
+ python_pkg_setup
+}