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/python-evdev/
Date: Wed, 27 Apr 2022 07:00:27
Message-Id: 1651042817.e85caadd23c0650542dfc1c9f1ee8664d4e24605.mgorny@gentoo
1 commit: e85caadd23c0650542dfc1c9f1ee8664d4e24605
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 06:47:14 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 07:00:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e85caadd
7
8 dev-python/python-evdev: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-evdev/Manifest | 1 -
13 dev-python/python-evdev/python-evdev-1.4.0.ebuild | 30 -----------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/python-evdev/Manifest b/dev-python/python-evdev/Manifest
17 index 0f09b9ed2047..192ec2fe87ce 100644
18 --- a/dev-python/python-evdev/Manifest
19 +++ b/dev-python/python-evdev/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-evdev-1.4.0.tar.gz 86010 BLAKE2B 958d85f852e88a27fd22ec2511ba1367a69141f294d96f55d45fb5da176c539aef09a6c65d31be87581d0176571c7bd1ca84d580e920e460c3ca810d8efa45be SHA512 a98552bb1c5075c73ebb0a2a3a0fb241e061ed476d5342c8e8e23b3da86fa769a7d5d8027cfa243542d8b62efb89a9b1daf1c4768173295cd466714e4c53029d
22 DIST python-evdev-1.5.0.tar.gz 86384 BLAKE2B 6cb6fb634d974b8ab15722def24037019590f510792fcf2bb64d8c2ffec0871ab4075674eb45a737185e4b42e39d0cd556760d51b13b5a97b79d3ee64cfd342f SHA512 27ceca723a0157fe9efa2f7aad8bb790c63d2b8d399f629eaf11fb387f3ebde0885b2d8a5297492968d625d8d9b186877e074334115e70551a1b121c8864339d
23
24 diff --git a/dev-python/python-evdev/python-evdev-1.4.0.ebuild b/dev-python/python-evdev/python-evdev-1.4.0.ebuild
25 deleted file mode 100644
26 index 9dea3a603023..000000000000
27 --- a/dev-python/python-evdev/python-evdev-1.4.0.ebuild
28 +++ /dev/null
29 @@ -1,30 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..10} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python library for evdev bindings"
40 -HOMEPAGE="https://python-evdev.readthedocs.io/"
41 -SRC_URI="https://github.com/gvalkov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm ~x86"
46 -
47 -distutils_enable_tests pytest
48 -
49 -python_compile() {
50 - distutils-r1_python_compile build_ecodes \
51 - --evdev-headers \
52 - "${SYSROOT}/usr/include/linux/input.h:${SYSROOT}/usr/include/linux/input-event-codes.h"
53 -}
54 -
55 -python_test() {
56 - # test_uinput requires write access to /dev/uinput
57 - pytest -vv --deselect tests/test_uinput.py ||
58 - die "tests failed for ${EPYTHON}"
59 -}