summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-04-05 18:57:21 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-04-05 18:57:21 +0000
commit8cc9c8d626ca124aed6990d2c22eabae50f01b7c (patch)
tree9cbf94f2c9f50cb48ea4be6f1f052f2e65ae0f4b /net-misc/pytvshows
parentVersion bump (diff)
downloadgentoo-2-8cc9c8d626ca124aed6990d2c22eabae50f01b7c.tar.gz
gentoo-2-8cc9c8d626ca124aed6990d2c22eabae50f01b7c.tar.bz2
gentoo-2-8cc9c8d626ca124aed6990d2c22eabae50f01b7c.zip
Use Python 2 (bug #315839).
(Portage version: 2.2.0_alpha29_p9/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/pytvshows')
-rw-r--r--net-misc/pytvshows/ChangeLog8
-rw-r--r--net-misc/pytvshows/pytvshows-0.2-r1.ebuild16
2 files changed, 18 insertions, 6 deletions
diff --git a/net-misc/pytvshows/ChangeLog b/net-misc/pytvshows/ChangeLog
index 2b63fde44c87..c06f28d746b1 100644
--- a/net-misc/pytvshows/ChangeLog
+++ b/net-misc/pytvshows/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/pytvshows
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/pytvshows/ChangeLog,v 1.9 2010/03/28 04:01:29 darkside Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/pytvshows/ChangeLog,v 1.10 2011/04/05 18:57:21 arfrever Exp $
+
+ 05 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ pytvshows-0.2-r1.ebuild:
+ Use Python 2 (bug #315839).
28 Mar 2010; Jeremy Olexa <darkside@gentoo.org> metadata.xml:
Drop myself from metadata, add maintainer-needed
diff --git a/net-misc/pytvshows/pytvshows-0.2-r1.ebuild b/net-misc/pytvshows/pytvshows-0.2-r1.ebuild
index 5537db2cb199..a2620d34fcba 100644
--- a/net-misc/pytvshows/pytvshows-0.2-r1.ebuild
+++ b/net-misc/pytvshows/pytvshows-0.2-r1.ebuild
@@ -1,6 +1,9 @@
-# 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-misc/pytvshows/pytvshows-0.2-r1.ebuild,v 1.3 2009/10/11 18:04:22 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/pytvshows/pytvshows-0.2-r1.ebuild,v 1.4 2011/04/05 18:57:21 arfrever Exp $
+
+EAPI="3"
+PYTHON_DEPEND="2"
inherit distutils eutils
@@ -16,7 +19,12 @@ IUSE=""
DEPEND=""
RDEPEND="dev-python/feedparser"
-src_unpack() {
- distutils_src_unpack
+pkg_setup() {
+ python_set_active_version 2
+ python_pkg_setup
+}
+
+src_prepare() {
+ distutils_src_prepare
epatch "${FILESDIR}/${P}-ezrss.it.patch"
}