Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/py/
Date: Sat, 28 Nov 2015 09:28:27
Message-Id: 1448702616.c39189484f5f26769699883b82312e5945b5a083.jlec@gentoo
1 commit: c39189484f5f26769699883b82312e5945b5a083
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 28 09:23:36 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 28 09:23:36 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3918948
7
8 dev-python/py: Version Bump
9
10 Package-Manager: portage-2.2.25
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/py/Manifest | 1 +
14 dev-python/py/py-1.4.31.ebuild | 45 ++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/dev-python/py/Manifest b/dev-python/py/Manifest
18 index b71db4c..0fcd0f5 100644
19 --- a/dev-python/py/Manifest
20 +++ b/dev-python/py/Manifest
21 @@ -1 +1,2 @@
22 DIST py-1.4.30.tar.gz 191796 SHA256 b703e57685ed7c280b1a51c496a4984d83d89def2a930b5e9e5da5a6ca151514 SHA512 dd9d92f8eaf8e5fc61bfb7feb4b07df5ae1745ebf88bcbe9d62589caa9e1f7d8beae5b2d20b407520919e47391cd50cf2d5323556fa5bd90a37e120b1d394d7a WHIRLPOOL 890cd2dbb957c291e80c73a69fad89846e761f745500ab2a99bfb4f725a7e567104fa4a2a957b8c674ebc9498fdbb25373ff0d15ab8da7f8c45138844235c79f
23 +DIST py-1.4.31.tar.gz 192212 SHA256 a6501963c725fc2554dabfece8ae9a8fb5e149c0ac0a42fd2b02c5c1c57fc114 SHA512 fd0f4f509d81beb8e5cdb5a8d5d7d40d8a74737c017c915b0630ce740868c32fbf1af4a01dec2ae998e5a9516578e8404ad2b8d966606919767ae25f27eb0b0d WHIRLPOOL 2c1227fc8b3fd044eeea398393a79868b12ef9ab7291522f4c6c08f70d4d725c305a407c3a6893920c405fdf1bc29d97b9ac2a182abdf3a4cde1f6001cd1c38c
24
25 diff --git a/dev-python/py/py-1.4.31.ebuild b/dev-python/py/py-1.4.31.ebuild
26 new file mode 100644
27 index 0000000..f0a036b
28 --- /dev/null
29 +++ b/dev-python/py/py-1.4.31.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="library with cross-python path, ini-parsing, io, code, log facilities"
42 +HOMEPAGE="http://pylib.readthedocs.org/ https://pypi.python.org/pypi/py"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +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"
48 +IUSE="doc test"
49 +
50 +RDEPEND=""
51 +DEPEND="
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + test? ( >=dev-python/pytest-2.4.2[${PYTHON_USEDEP}] )
54 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
55 +
56 +python_prepare_all() {
57 + sed -e 's:intersphinx_mapping:#&:' -i doc/conf.py || die
58 + distutils-r1_python_prepare_all
59 +}
60 +
61 +python_compile_all() {
62 + use doc && emake -C doc html
63 +}
64 +
65 +python_test() {
66 + # 1 failure, test_comments, under both pypy only.
67 + # Also appears the home repo has no issue tracker.
68 + [[ "${EPYTHON}" == pypy ]] && return
69 + py.test -v -v || die "testing failed with ${EPYTHON}"
70 +}
71 +
72 +python_install_all() {
73 + use doc && local HTML_DOCS=( doc/_build/html/. )
74 + distutils-r1_python_install_all
75 +}