Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: beautifulsoup-3.2.1.ebuild ChangeLog
Date: Fri, 02 Mar 2012 09:43:13
Message-Id: 20120302094303.6B7E62004B@flycatcher.gentoo.org
1 djc 12/03/02 09:43:03
2
3 Modified: ChangeLog
4 Added: beautifulsoup-3.2.1.ebuild
5 Log:
6 Version bump beautifulsoup to 3.2.1.
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.59 dev-python/beautifulsoup/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/ChangeLog?rev=1.59&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/ChangeLog?rev=1.59&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/ChangeLog?r1=1.58&r2=1.59
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
20 retrieving revision 1.58
21 retrieving revision 1.59
22 diff -u -r1.58 -r1.59
23 --- ChangeLog 21 Feb 2012 07:19:13 -0000 1.58
24 +++ ChangeLog 2 Mar 2012 09:43:03 -0000 1.59
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/beautifulsoup
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.58 2012/02/21 07:19:13 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.59 2012/03/02 09:43:03 djc Exp $
30 +
31 +*beautifulsoup-3.2.1 (02 Mar 2012)
32 +
33 + 02 Mar 2012; Dirkjan Ochtman <djc@g.o> +beautifulsoup-3.2.1.ebuild:
34 + Version bump to 3.2.1.
35
36 21 Feb 2012; Patrick Lauer <patrick@g.o>
37 beautifulsoup-3.1.0.1-r1.ebuild, beautifulsoup-3.2.0.ebuild:
38
39
40
41 1.1 dev-python/beautifulsoup/beautifulsoup-3.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-3.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-3.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: beautifulsoup-3.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-3.2.1.ebuild,v 1.1 2012/03/02 09:43:03 djc Exp $
51
52 EAPI="3"
53 PYTHON_DEPEND="2"
54 SUPPORT_PYTHON_ABIS="1"
55 RESTRICT_PYTHON_ABIS="3.* *-jython"
56
57 inherit distutils
58
59 MY_PN="BeautifulSoup"
60 MY_P="${MY_PN}-${PV}"
61
62 DESCRIPTION="HTML/XML parser for quick-turnaround applications like screen-scraping."
63 HOMEPAGE="http://www.crummy.com/software/BeautifulSoup/ http://pypi.python.org/pypi/BeautifulSoup"
64 SRC_URI="http://www.crummy.com/software/${MY_PN}/download/3.x/${MY_P}.tar.gz"
65
66 LICENSE="BSD"
67 SLOT="python-2"
68 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
69 IUSE=""
70
71 DEPEND=""
72 RDEPEND="!dev-python/beautifulsoup:0"
73
74 S="${WORKDIR}/${MY_P}"
75
76 PYTHON_MODNAME="BeautifulSoup.py BeautifulSoupTests.py"
77
78 src_test() {
79 testing() {
80 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" BeautifulSoupTests.py
81 }
82 python_execute_function testing
83 }