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