Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-stream/
Date: Mon, 27 Jun 2016 13:02:59
Message-Id: 1467031862.82c54423bf0ea24eb6cd4f43bca6f8e44c238c92.gokturk@gentoo
1 commit: 82c54423bf0ea24eb6cd4f43bca6f8e44c238c92
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 26 12:55:32 2016 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 27 12:51:02 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82c54423
7
8 dev-python/jaraco-stream: bump to 1.1.1
9
10 Package-Manager: portage-2.3.0_rc1
11
12 dev-python/jaraco-stream/Manifest | 1 +
13 .../jaraco-stream/jaraco-stream-1.1.1.ebuild | 53 ++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-python/jaraco-stream/Manifest b/dev-python/jaraco-stream/Manifest
17 index 9034a69..7c7ebdd 100644
18 --- a/dev-python/jaraco-stream/Manifest
19 +++ b/dev-python/jaraco-stream/Manifest
20 @@ -1 +1,2 @@
21 +DIST jaraco.stream-1.1.1.tar.gz 6115 SHA256 f111cbb2a04063bcb1675a31a633c1a0f1b879a3f46c2ea8e71c7dc1242d8f47 SHA512 65c8d1652a0d63506cc3cadee590664e6a99e2f770d26f0cea1dce07c54ffe308e1df8619bc728ea81c5ac43c9c6731fe9f71e5d38d2674c4e0d63d635bb5112 WHIRLPOOL 808c4c854eea1f06bd8b06cdf31497876ccfeb939beb1c785408d83255774fd304d355e97ea7c4ff6794d7609a945f903926ab3d8bd55fe70c8651093578a62c
22 DIST jaraco.stream-1.1.tar.gz 4887 SHA256 8f1e4aaea35728da594d1430772b85be098a919bf316be721045beb4377526a9 SHA512 5af385084623fbdfe86e9fb620f49b097dee164638bc99622ba557a26cda591e856f1fc4134bc7b73b8f7b61afaf2607686fe20c59c582324a65c22f39d74a13 WHIRLPOOL 5c91d24f8007041cbe76c4ab371776bc1058c714e991eb346ac0c846eda7ead0a532028ed5bc51f8618ee2b7061b5ee6a2e70915c292e4441eb5b5324cfb967f
23
24 diff --git a/dev-python/jaraco-stream/jaraco-stream-1.1.1.ebuild b/dev-python/jaraco-stream/jaraco-stream-1.1.1.ebuild
25 new file mode 100644
26 index 0000000..24218e6
27 --- /dev/null
28 +++ b/dev-python/jaraco-stream/jaraco-stream-1.1.1.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_PN="${PN/-/.}"
41 +DESCRIPTION="Routines for handling streaming data"
42 +HOMEPAGE="https://github.com/jaraco/jaraco.stream"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="doc test"
49 +
50 +RDEPEND="
51 + dev-python/more-itertools[${PYTHON_USEDEP}]
52 + dev-python/six[${PYTHON_USEDEP}]
53 +"
54 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
55 + >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
56 + test? (
57 + ${RDEPEND}
58 + >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
59 + dev-python/pytest-runner[${PYTHON_USEDEP}]
60 + )
61 + doc? (
62 + dev-python/sphinx[${PYTHON_USEDEP}]
63 + dev-python/rst-linker[${PYTHON_USEDEP}]
64 + )
65 +"
66 +
67 +S="${WORKDIR}/${MY_PN}-${PV}"
68 +
69 +python_compile_all() {
70 + use doc && esetup.py build_sphinx
71 +}
72 +
73 +python_test() {
74 + # Skip one test which requires network access
75 + PYTHONPATH=. py.test --ignore=jaraco/stream/test_gzip.py \
76 + || die "tests failed with ${EPYTHON}"
77 +}
78 +
79 +python_install_all() {
80 + use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
81 + distutils-r1_python_install_all
82 +}