Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wheel/
Date: Wed, 24 Oct 2018 00:36:50
Message-Id: 1540341386.40bc9faae9ed60313d1350d9f441e47cb623a6b7.prometheanfire@gentoo
1 commit: 40bc9faae9ed60313d1350d9f441e47cb623a6b7
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 24 00:32:45 2018 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 24 00:36:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40bc9faa
7
8 dev-python/wheel: 0.32.2 bump
9
10 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 dev-python/wheel/Manifest | 1 +
14 dev-python/wheel/wheel-0.32.2.ebuild | 45 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/dev-python/wheel/Manifest b/dev-python/wheel/Manifest
18 index 267a1767e3b..852a5b52cfd 100644
19 --- a/dev-python/wheel/Manifest
20 +++ b/dev-python/wheel/Manifest
21 @@ -1,3 +1,4 @@
22 DIST wheel-0.29.0.tar.gz 54143 BLAKE2B 8f29c81b9b3c8ee419c26f04e09f437a2113716f5096e1b6e21f23e6a7426e58b7ee00c0846cfcd816670bee4dd908ef577e4142fae546d4ea643af2c2612049 SHA512 b72dec3cf71e3d87c611ff41f1381ed7f2c654edb50c808fb4fd0f552bab3572434495bf18c36d2ecc7cb8b355782054d3d6dedd5589ffda15027e72cff24602
23 DIST wheel-0.30.0.tar.gz 43087 BLAKE2B 796a57298571a9430094be93f38c679941157679d5a75d7d5da88be4d1f970f5aeb9810bbaaa31c77b71959b3c6eadcd618314ab3fa82b959c592c72b8171c0a SHA512 d39fb683ca2937745b057464ec17f5fab0475c2b1225cc4c84f1b0e8cd61a4bb039730dafdaa687f7b054ce080c4b7acbd3196045db14e015585536fcf498f84
24 DIST wheel-0.31.1.tar.gz 38574 BLAKE2B 83684b33d587fe4a9593aa1b45c8e3f9543a97f80767c973f2b796bd23191af489760507fc491e4c471d804cb8c8a969de2e6cc509beeae66e1911650be5d725 SHA512 38854a54722cd8b3ff3b53bc62fc56255b37adac5ffb3fc1b0cb5f252a3cebd84390f3bac0600835c64bbec158337a7a13f0725dda47a659183fd038986cdd75
25 +DIST wheel-0.32.2.tar.gz 17647 BLAKE2B b6ca2fb32767e639274676b88c3ae7996e2b8d618b5b11e43d31694a8351da9bdd1c50cbd4c8f7eb2ffaa55bdd4b2fe9393177514bd32f2275629067c8f95984 SHA512 584ac926ded13737070cfbed5ef18b685d4e4440d8b6d60a64178cd88cc380fcae6618d4446bffffebc6e1ce1acccf91d21bfefbe006dcff6771fe7ce5f62cd4
26
27 diff --git a/dev-python/wheel/wheel-0.32.2.ebuild b/dev-python/wheel/wheel-0.32.2.ebuild
28 new file mode 100644
29 index 00000000000..befc3c65c39
30 --- /dev/null
31 +++ b/dev-python/wheel/wheel-0.32.2.ebuild
32 @@ -0,0 +1,45 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
39 +
40 +inherit distutils-r1 eutils
41 +
42 +DESCRIPTION="A built-package format for Python"
43 +HOMEPAGE="https://pypi.org/project/wheel/"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd"
49 +IUSE="doc test"
50 +
51 +RDEPEND="dev-python/jsonschema[${PYTHON_USEDEP}]"
52 +DEPEND="${RDEPEND}
53 + dev-python/setuptools[${PYTHON_USEDEP}]"
54 +# test? (
55 +# dev-python/keyring
56 +# dev-python/keyrings_alt
57 +# dev-python/ed25519ll
58 +# dev-python/pytest[${PYTHON_USEDEP}]
59 +# )
60 +#"
61 +
62 +# Fails somehow
63 +RESTRICT=test
64 +
65 +python_test() {
66 + sed \
67 + -e 's:--cov=wheel::g' \
68 + -i setup.cfg || die
69 + py.test -v -v || die "testsuite failed under ${EPYTHON}"
70 +}
71 +
72 +pkg_postinst() {
73 + optfeature "Signature support" \
74 + dev-python/keyring \
75 + dev-python/keyrings_alt \
76 + dev-python/ed25519ll
77 +}