Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/feedparser: ChangeLog feedparser-5.0.1.ebuild
Date: Tue, 22 Feb 2011 05:43:10
Message-Id: 20110222054302.1063220054@flycatcher.gentoo.org
1 sping 11/02/22 05:43:02
2
3 Modified: ChangeLog
4 Added: feedparser-5.0.1.ebuild
5 Log:
6 dev-python/feedparser: Bump to 5.0.1
7
8 (Portage version: 2.1.9.40/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.23 dev-python/feedparser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/feedparser/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/feedparser/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/feedparser/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/feedparser/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 26 Jan 2011 12:25:33 -0000 1.22
24 +++ ChangeLog 22 Feb 2011 05:43:01 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/feedparser
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/feedparser/ChangeLog,v 1.22 2011/01/26 12:25:33 sping Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/feedparser/ChangeLog,v 1.23 2011/02/22 05:43:01 sping Exp $
30 +
31 +*feedparser-5.0.1 (22 Feb 2011)
32 +
33 + 22 Feb 2011; Sebastian Pipping <sping@g.o> +feedparser-5.0.1.ebuild:
34 + Bump to 5.0.1, looks trivial
35
36 *feedparser-5.0 (26 Jan 2011)
37
38
39
40
41 1.1 dev-python/feedparser/feedparser-5.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/feedparser/feedparser-5.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/feedparser/feedparser-5.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: feedparser-5.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/feedparser/feedparser-5.0.1.ebuild,v 1.1 2011/02/22 05:43:01 sping Exp $
51
52 EAPI="2"
53
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.*" # See README-PYTHON3 in tarball if you want to work on this
57
58 inherit distutils
59
60 DESCRIPTION="Parse RSS and Atom feeds in Python"
61 HOMEPAGE="http://www.feedparser.org/"
62 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
63
64 LICENSE="BSD-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
67 IUSE="test"
68
69 DEPEND=""
70 RDEPEND=""
71
72 PYTHON_MODNAME="feedparser.py"
73 DOCS=( LICENSE NEWS )
74
75 src_test() {
76 testing() {
77 cd feedparser || die
78 "$(PYTHON)" ${PN}test.py || die
79 }
80 python_execute_function testing
81 }