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/pyusb/
Date: Mon, 20 Mar 2023 05:36:31
Message-Id: 1679290580.86d2c2c90364f3d523eef73e5196f0aacd638231.mgorny@gentoo
1 commit: 86d2c2c90364f3d523eef73e5196f0aacd638231
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 20 05:23:00 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 20 05:36:20 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d2c2c9
7
8 dev-python/pyusb: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyusb/pyusb-1.2.1.ebuild | 29 -----------------------------
13 1 file changed, 29 deletions(-)
14
15 diff --git a/dev-python/pyusb/pyusb-1.2.1.ebuild b/dev-python/pyusb/pyusb-1.2.1.ebuild
16 deleted file mode 100644
17 index d7c303722986..000000000000
18 --- a/dev-python/pyusb/pyusb-1.2.1.ebuild
19 +++ /dev/null
20 @@ -1,29 +0,0 @@
21 -# Copyright 1999-2023 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{9..11} )
27 -inherit distutils-r1 pypi
28 -
29 -DESCRIPTION="USB support for Python"
30 -HOMEPAGE="https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/"
31 -
32 -LICENSE="BSD"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86"
35 -
36 -### This version is compatible with both 0.X and 1.X versions of libusb
37 -DEPEND="virtual/libusb:="
38 -RDEPEND="${DEPEND}"
39 -
40 -DOCS=( README.rst docs/tutorial.rst )
41 -
42 -PATCHES=(
43 - "${FILESDIR}"/${P}-setuptools.patch
44 -)
45 -
46 -python_test() {
47 - cd tests || die
48 - "${EPYTHON}" testall.py || die "Tests failed with ${EPYTHON}"
49 -}