Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyusb/
Date: Tue, 01 Dec 2020 23:08:33
Message-Id: 1606864101.75eec14cda77354d357710efacf66a8d4839e00c.marecki@gentoo
1 commit: 75eec14cda77354d357710efacf66a8d4839e00c
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 23:08:02 2020 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 23:08:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75eec14c
7
8 dev-python/pyusb: bump to 1.1.0
9
10 Tests no longer segfault python, supports python3_9, some cosmetics.
11
12 Pushed with permission from mgorny on behalf of the Python project.
13
14 Closes: https://bugs.gentoo.org/645254
15 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
16
17 dev-python/pyusb/Manifest | 1 +
18 dev-python/pyusb/pyusb-1.1.0.ebuild | 28 ++++++++++++++++++++++++++++
19 2 files changed, 29 insertions(+)
20
21 diff --git a/dev-python/pyusb/Manifest b/dev-python/pyusb/Manifest
22 index 6faeb415d20..eb720b30f3c 100644
23 --- a/dev-python/pyusb/Manifest
24 +++ b/dev-python/pyusb/Manifest
25 @@ -1 +1,2 @@
26 DIST pyusb-1.0.2.tar.gz 68694 BLAKE2B 8910d9d6d7abd8b0dddf725ad9cc745ce5b06f69a4824a86ed9783918d0fc88d438674852288654964c4555d8278f22d3daab679149c64ea8a6fd3dd2f1cf284 SHA512 6a264b796e17612004196a7a526a7c6df99feac9062f8354540221016411a78a65d413731aea2fc1206ed5ea2b84787078898b9ca3754164f1dfe2a9878b75a5
27 +DIST pyusb-1.1.0.tar.gz 78752 BLAKE2B ee541afedca7d5dca345c6addee2702ccb7408bb9a2d8b23fe1eb47f067a93309599894e364c0bdcef3e5348bd13cc39f240257efd4664679017f61b87853217 SHA512 0769670e6ebd8b31f2494258eca5d6e470ad3cb17663cc14b8b3a8136ea24caa23f86d81c60c501b88a9bc94b0de6a45aac43c6c5f140e65fd03a589b4d18179
28
29 diff --git a/dev-python/pyusb/pyusb-1.1.0.ebuild b/dev-python/pyusb/pyusb-1.1.0.ebuild
30 new file mode 100644
31 index 00000000000..f329f17c241
32 --- /dev/null
33 +++ b/dev-python/pyusb/pyusb-1.1.0.ebuild
34 @@ -0,0 +1,28 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python3_{6..9} )
41 +DISTUTILS_USE_SETUPTOOLS=bdepend
42 +
43 +inherit distutils-r1
44 +
45 +DESCRIPTION="USB support for Python"
46 +HOMEPAGE="https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 +
49 +LICENSE="BSD"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
52 +
53 +### This version is compatible with both 0.X and 1.X versions of libusb
54 +DEPEND="virtual/libusb:="
55 +RDEPEND="${DEPEND}"
56 +
57 +DOCS=( README.rst docs/tutorial.rst )
58 +
59 +python_test() {
60 + cd tests || die
61 + "${PYTHON}" testall.py || die "Tests failed with ${EPYTHON}"
62 +}