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: Thu, 18 Aug 2022 10:17:14
Message-Id: 1660817787.ce12f80085e086397bcc69dd2979d62bb83fff1d.mgorny@gentoo
1 commit: ce12f80085e086397bcc69dd2979d62bb83fff1d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 18 10:16:27 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 18 10:16:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce12f800
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 .../python-evdev/python-evdev-1.5.0-r1.ebuild | 37 ----------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/python-evdev/Manifest b/dev-python/python-evdev/Manifest
17 index caa3506ed4ca..418742012671 100644
18 --- a/dev-python/python-evdev/Manifest
19 +++ b/dev-python/python-evdev/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-evdev-1.5.0.tar.gz 86384 BLAKE2B 6cb6fb634d974b8ab15722def24037019590f510792fcf2bb64d8c2ffec0871ab4075674eb45a737185e4b42e39d0cd556760d51b13b5a97b79d3ee64cfd342f SHA512 27ceca723a0157fe9efa2f7aad8bb790c63d2b8d399f629eaf11fb387f3ebde0885b2d8a5297492968d625d8d9b186877e074334115e70551a1b121c8864339d
22 DIST python-evdev-1.6.0.gh.tar.gz 86212 BLAKE2B bbb9adc3caff31c817972e33cd02ff63ee4e037ebe346fc6b128d119c38b337681bc9ef9069cbe9b604b1ac926dd23a02add23da2f629b31b74b0de338f9f423 SHA512 d3dc27aad70897d46ae3cad71cafdf5ac49e8cb52b88566b004edaee3b192b68093e44b487f9ab27b503a18e8e62a08b17d7b782726658f4d8131aa4562cd17a
23
24 diff --git a/dev-python/python-evdev/python-evdev-1.5.0-r1.ebuild b/dev-python/python-evdev/python-evdev-1.5.0-r1.ebuild
25 deleted file mode 100644
26 index a1df11de9086..000000000000
27 --- a/dev-python/python-evdev/python-evdev-1.5.0-r1.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python library for evdev bindings"
41 -HOMEPAGE="https://python-evdev.readthedocs.io/"
42 -SRC_URI="
43 - https://github.com/gvalkov/${PN}/archive/v${PV}.tar.gz
44 - -> ${P}.tar.gz
45 -"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="amd64 ~arm x86"
50 -
51 -distutils_enable_tests pytest
52 -
53 -EPYTEST_DESELECT=(
54 - tests/test_uinput.py
55 -)
56 -
57 -python_configure_all() {
58 - esetup.py build_ecodes \
59 - --evdev-headers \
60 - "${ESYSROOT}/usr/include/linux/input.h:${ESYSROOT}/usr/include/linux/input-event-codes.h"
61 -}
62 -
63 -src_test() {
64 - cd tests || die
65 - distutils-r1_src_test
66 -}