Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/py: ChangeLog py-1.4.29.ebuild
Date: Fri, 26 Jun 2015 01:23:03
Message-Id: 20150626012250.6FD9EA4E@oystercatcher.gentoo.org
1 radhermit 15/06/26 01:22:50
2
3 Modified: ChangeLog
4 Added: py-1.4.29.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.196 dev-python/py/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/py/ChangeLog?rev=1.196&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/py/ChangeLog?rev=1.196&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/py/ChangeLog?r1=1.195&r2=1.196
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/py/ChangeLog,v
20 retrieving revision 1.195
21 retrieving revision 1.196
22 diff -u -r1.195 -r1.196
23 --- ChangeLog 28 May 2015 11:56:37 -0000 1.195
24 +++ ChangeLog 26 Jun 2015 01:22:50 -0000 1.196
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/py
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/py/ChangeLog,v 1.195 2015/05/28 11:56:37 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/py/ChangeLog,v 1.196 2015/06/26 01:22:50 radhermit Exp $
30 +
31 +*py-1.4.29 (26 Jun 2015)
32 +
33 + 26 Jun 2015; Tim Harder <radhermit@g.o> +py-1.4.29.ebuild:
34 + Version bump.
35
36 *py-1.4.28 (28 May 2015)
37
38
39
40
41 1.1 dev-python/py/py-1.4.29.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/py/py-1.4.29.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/py/py-1.4.29.ebuild?rev=1.1&content-type=text/plain
45
46 Index: py-1.4.29.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/py/py-1.4.29.ebuild,v 1.1 2015/06/26 01:22:50 radhermit Exp $
51
52 EAPI="5"
53
54 PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="library with cross-python path, ini-parsing, io, code, log facilities"
59 HOMEPAGE="http://pylib.readthedocs.org/ http://pypi.python.org/pypi/py"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
65 IUSE="doc test"
66
67 RDEPEND=""
68 DEPEND="
69 dev-python/setuptools[${PYTHON_USEDEP}]
70 test? ( >=dev-python/pytest-2.4.2[${PYTHON_USEDEP}] )
71 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
72
73 python_prepare_all() {
74 sed -e 's:intersphinx_mapping:#&:' -i doc/conf.py || die
75 distutils-r1_python_prepare_all
76 }
77
78 python_compile_all() {
79 use doc && emake -C doc html
80 }
81
82 python_test() {
83 # 1 failure, test_comments, under both pypy only.
84 # Also appears the home repo has no issue tracker.
85 py.test || die "testing failed with ${EPYTHON}"
86 }
87
88 python_install_all() {
89 use doc && local HTML_DOCS=( doc/_build/html/. )
90 distutils-r1_python_install_all
91 }