Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/six/
Date: Mon, 10 Dec 2018 13:19:25
Message-Id: 1544447955.fb11fc35bc96d2e9a88d505a49a1e6448b86b41c.mgorny@gentoo
1 commit: fb11fc35bc96d2e9a88d505a49a1e6448b86b41c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 10 13:12:54 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 10 13:19:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb11fc35
7
8 dev-python/six: Bump to 1.12.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/six/Manifest | 1 +
13 dev-python/six/six-1.12.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/six/Manifest b/dev-python/six/Manifest
17 index 0cc8bb77ba4..7b3509db886 100644
18 --- a/dev-python/six/Manifest
19 +++ b/dev-python/six/Manifest
20 @@ -1,2 +1,3 @@
21 DIST six-1.10.0.tar.gz 29630 BLAKE2B 1f380dbc7a9e746b4a7909de54a58a008a73d7b6c582611b2481475d5d9971c936b1742ea0821c65150694914af72f43155caa54616268735a4bd2447d5b4ba4 SHA512 9a53b7bc8f7e8b358c930eaecf91cc5639176a699830153f586780c3e6d637f1bd31349a69c383574f99da19cb3a36524e7733a318f3572b27aefb69c6409c2e
22 DIST six-1.11.0.tar.gz 29860 BLAKE2B de4886ad9af7aa906f9eac213544c99323d74c1988d9abff96ce6fc3eea4464e577511f7c52328cbd9e6989db2128fa8d1ee57f9ce7bfc36b83ff655691b46c9 SHA512 33f246a2e987141e17e5edad9d3537cf3aba0cbdd0bc2a907ea52ce0d674b1474f29c3dd5cc26605fd960396054b189ca5f501708333cad234c223131483fe24
23 +DIST six-1.12.0.tar.gz 32725 BLAKE2B f40621076a7bb2b3b86d9f6ee49056a598e4853c6150952902053b8cfde86e562a7656b6ca3c3108f407d392cf7c1164a61b36142efd565eda909b8733c0bedb SHA512 937728372edf1e0ac13bbd706723d0de35e015c30d0ae41f789c5ed2e3669bb0db70cdc6e036ec2d437a6c4aa0d5d1e727b6d09ac34cca7e4e92e5d3b4775151
24
25 diff --git a/dev-python/six/six-1.12.0.ebuild b/dev-python/six/six-1.12.0.ebuild
26 new file mode 100644
27 index 00000000000..7cab0411247
28 --- /dev/null
29 +++ b/dev-python/six/six-1.12.0.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy{,3} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python 2 and 3 compatibility library"
41 +HOMEPAGE="https://github.com/benjaminp/six https://pypi.org/project/six/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 +IUSE="doc test"
48 +
49 +DEPEND="
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 + doc? ( dev-python/sphinx )
52 + test? ( >=dev-python/pytest-2.2.0[${PYTHON_USEDEP}] )"
53 +
54 +PATCHES=(
55 + "${FILESDIR}"/1.9.0-mapping.patch
56 +)
57 +
58 +python_compile_all() {
59 + use doc && emake -C documentation html
60 +}
61 +
62 +python_test() {
63 + pytest -vv || die "Testing failed with ${EPYTHON}"
64 +}
65 +
66 +python_install_all() {
67 + use doc && local HTML_DOCS=( documentation/_build/html/. )
68 + distutils-r1_python_install_all
69 +}