Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wheel/
Date: Fri, 12 Apr 2019 05:01:54
Message-Id: 1555044534.03699bbcdcd3a82123d3af402abc690263f30cd9.radhermit@gentoo
1 commit: 03699bbcdcd3a82123d3af402abc690263f30cd9
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 12 04:29:03 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 12 04:48:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03699bbc
7
8 dev-python/wheel: version bump to 33.1
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 dev-python/wheel/Manifest | 1 +
13 dev-python/wheel/wheel-0.33.1.ebuild | 45 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/wheel/Manifest b/dev-python/wheel/Manifest
17 index 6d2ef1c83d7..6de765298ba 100644
18 --- a/dev-python/wheel/Manifest
19 +++ b/dev-python/wheel/Manifest
20 @@ -3,3 +3,4 @@ DIST wheel-0.30.0.tar.gz 43087 BLAKE2B 796a57298571a9430094be93f38c679941157679d
21 DIST wheel-0.31.1.tar.gz 38574 BLAKE2B 83684b33d587fe4a9593aa1b45c8e3f9543a97f80767c973f2b796bd23191af489760507fc491e4c471d804cb8c8a969de2e6cc509beeae66e1911650be5d725 SHA512 38854a54722cd8b3ff3b53bc62fc56255b37adac5ffb3fc1b0cb5f252a3cebd84390f3bac0600835c64bbec158337a7a13f0725dda47a659183fd038986cdd75
22 DIST wheel-0.32.2.tar.gz 17647 BLAKE2B b6ca2fb32767e639274676b88c3ae7996e2b8d618b5b11e43d31694a8351da9bdd1c50cbd4c8f7eb2ffaa55bdd4b2fe9393177514bd32f2275629067c8f95984 SHA512 584ac926ded13737070cfbed5ef18b685d4e4440d8b6d60a64178cd88cc380fcae6618d4446bffffebc6e1ce1acccf91d21bfefbe006dcff6771fe7ce5f62cd4
23 DIST wheel-0.32.3.tar.gz 18585 BLAKE2B 14b2fc9c6f306865be96040c00e5244a132251bb48a3cb9656261e4724a6bd5754713e7442f3310563efc202081a43a5803e4bb672073b239362ce46b9171b8a SHA512 6f663b3a3edbf470a3565eb5ad763d466f857f053be32dd4242d9b94874844076c7a9142c13ba0185697b9b96fbdbfb1be2abfdfbeb00ff4853bfa9e52681db4
24 +DIST wheel-0.33.1.tar.gz 18736 BLAKE2B bef2c719fdf719d6b97d572318689e1322dcd8e24d0c68498ecdb2d7cd8b44f4ac76e3460ec740cc94ed014a66d4ef9d78b044326f3f6f4b3a1580809d2895a9 SHA512 78bc518ea1bed7b80ec242b44208b13192e9c00a9008efb1bfb837d4dd88f5dd52a61403698bbff79a86db8e55c01a46888c203df6fea94d8dcd09986a98d913
25
26 diff --git a/dev-python/wheel/wheel-0.33.1.ebuild b/dev-python/wheel/wheel-0.33.1.ebuild
27 new file mode 100644
28 index 00000000000..54c343ee198
29 --- /dev/null
30 +++ b/dev-python/wheel/wheel-0.33.1.ebuild
31 @@ -0,0 +1,45 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
38 +
39 +inherit distutils-r1 eutils
40 +
41 +DESCRIPTION="A built-package format for Python"
42 +HOMEPAGE="https://pypi.org/project/wheel/"
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"
48 +IUSE="doc test"
49 +
50 +RDEPEND="dev-python/jsonschema[${PYTHON_USEDEP}]"
51 +DEPEND="${RDEPEND}
52 + dev-python/setuptools[${PYTHON_USEDEP}]"
53 +# test? (
54 +# dev-python/keyring
55 +# dev-python/keyrings_alt
56 +# dev-python/ed25519ll
57 +# dev-python/pytest[${PYTHON_USEDEP}]
58 +# )
59 +#"
60 +
61 +# Fails somehow
62 +RESTRICT=test
63 +
64 +python_test() {
65 + sed \
66 + -e 's:--cov=wheel::g' \
67 + -i setup.cfg || die
68 + py.test -v || die "testsuite failed under ${EPYTHON}"
69 +}
70 +
71 +pkg_postinst() {
72 + optfeature "Signature support" \
73 + dev-python/keyring \
74 + dev-python/keyrings_alt \
75 + dev-python/ed25519ll
76 +}