Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: beautifulsoup-4.4.0.ebuild ChangeLog
Date: Sat, 01 Aug 2015 07:33:01
Message-Id: 20150801073252.2960210F@oystercatcher.gentoo.org
1 idella4 15/08/01 07:32:52
2
3 Modified: ChangeLog
4 Added: beautifulsoup-4.4.0.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.134 dev-python/beautifulsoup/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/ChangeLog?rev=1.134&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/ChangeLog?rev=1.134&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/ChangeLog?r1=1.133&r2=1.134
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
20 retrieving revision 1.133
21 retrieving revision 1.134
22 diff -u -r1.133 -r1.134
23 --- ChangeLog 21 Jul 2015 08:12:43 -0000 1.133
24 +++ ChangeLog 1 Aug 2015 07:32:52 -0000 1.134
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/beautifulsoup
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.133 2015/07/21 08:12:43 monsieurp Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.134 2015/08/01 07:32:52 idella4 Exp $
30 +
31 +*beautifulsoup-4.4.0 (01 Aug 2015)
32 +
33 + 01 Aug 2015; Ian Delaney <idella4@g.o> +beautifulsoup-4.4.0.ebuild:
34 + bump
35
36 21 Jul 2015; Patrice Clement <monsieurp@g.o>
37 +files/beautifulsoup-3.1.0.1-disable-tests.patch,
38
39
40
41 1.1 dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: beautifulsoup-4.4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild,v 1.1 2015/08/01 07:32:52 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
54
55 inherit distutils-r1
56
57 MY_PN=${PN}4
58 MY_P=${MY_PN}-${PV}
59
60 DESCRIPTION="Provides pythonic idioms for iterating, searching, and modifying an HTML/XML parse tree"
61 HOMEPAGE="https://bugs.launchpad.net/beautifulsoup/
62 http://pypi.python.org/pypi/beautifulsoup4"
63 SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="4"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
68
69 IUSE="doc test"
70
71 # html5lib is optional however hard coding since its use is actively discouraged in the devmanual
72 RDEPEND="$(python_gen_cond_dep 'dev-python/html5lib[${PYTHON_USEDEP}]' python2_7 pypy)
73 $(python_gen_cond_dep 'dev-python/lxml[${PYTHON_USEDEP}]' python2_7 'python3*')"
74 DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
75 test? ( dev-python/nose[${PYTHON_USEDEP}]
76 !dev-python/chardet[${PYTHON_USEDEP}] )"
77 # See https://bugs.launchpad.net/beautifulsoup/+bug/1471359 to explain need for blocker
78
79 S=${WORKDIR}/${MY_P}
80
81 python_compile_all() {
82 if use doc; then
83 emake -C doc html
84 fi
85 }
86
87 python_test() {
88 nosetests -w "${BUILD_DIR}"/lib || die "Tests fail with ${EPYTHON}"
89 }
90
91 python_install_all() {
92 use doc && local HTML_DOCS=doc/build/html/.
93 distutils-r1_python_install_all
94 }