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/wheel/
Date: Sat, 15 Aug 2020 08:44:35
Message-Id: 1597481063.bac6ac4b356168c72ed4b4fa2db4b0b615cd2f5f.mgorny@gentoo
1 commit: bac6ac4b356168c72ed4b4fa2db4b0b615cd2f5f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 15 07:43:17 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 15 08:44:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac6ac4b
7
8 dev-python/wheel: Bump to 0.35.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/wheel/Manifest | 1 +
13 dev-python/wheel/wheel-0.35.1.ebuild | 38 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-python/wheel/Manifest b/dev-python/wheel/Manifest
17 index e826ef94540..42765e02057 100644
18 --- a/dev-python/wheel/Manifest
19 +++ b/dev-python/wheel/Manifest
20 @@ -1,2 +1,3 @@
21 DIST wheel-0.34.2.gh.tar.gz 57175 BLAKE2B 4d06c411561f80e51c15422f2d3318efa565f9119e869a2f9284adb9bd3aff7bc104013a63fefae36742d7d87c8468b42292723ed031c2b109323a9141fd1cea SHA512 fcd02cf770382c26b5250aa48f60481ac868ff7e1b08245ed4616aaa7d6dc5e3280d9ab787c4d1690b11550de9f6160c0d31dd65b79554711ab5d02de479e1ab
22 DIST wheel-0.35.0.gh.tar.gz 55911 BLAKE2B b9253c362bd016eca6e43bf4003f08dd88bf45c893edacb59ea1cb594410981b80be4acbc4e0127cee05c394377407bf23f1119a71010eecf0d1669ecd8ed861 SHA512 d6818fd825bf49dfd4e88fd252ce97c64df34eae72b482e932df2fd39562bae54a63f3e9b65b65d04b6e10d130edd462a769499d214d7beae053555618e2fc15
23 +DIST wheel-0.35.1.gh.tar.gz 63563 BLAKE2B d1432a638b91e821cb9b9fc748567b9ad18bbfd4737cee915ee3e2c585c4758e79bcf163edac56a09f9e356d81a057214c8e84c5c75b45505c67aa761e97fe3f SHA512 34cd6d1a649842abd895418c0183e68f44e228be905041e1dd8562987fbab8aa617da9b78479cb8d56fb6bb8714ec1085b87640c385bfc933e215f6e33ccf55b
24
25 diff --git a/dev-python/wheel/wheel-0.35.1.ebuild b/dev-python/wheel/wheel-0.35.1.ebuild
26 new file mode 100644
27 index 00000000000..60f3b6e6801
28 --- /dev/null
29 +++ b/dev-python/wheel/wheel-0.35.1.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} 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 +SRC_URI="https://github.com/pypa/wheel/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
49 +
50 +distutils_enable_tests pytest
51 +
52 +src_prepare() {
53 + sed \
54 + -e 's:--cov=wheel::g' \
55 + -i setup.cfg || die
56 + distutils-r1_src_prepare
57 +}
58 +
59 +python_test() {
60 + if ! python_is_python3; then
61 + # install fails due to unicode in paths
62 + ewarn "Testing is broken with py2.7, please test externally"
63 + return
64 + fi
65 +
66 + distutils_install_for_testing
67 + pytest -vv || die "Tests failed with ${EPYTHON}"
68 +}