Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pynput/
Date: Wed, 06 Oct 2021 10:32:10
Message-Id: 1633516285.99d168d99efc324ceddf0545313109933b69497f.arthurzam@gentoo
1 commit: 99d168d99efc324ceddf0545313109933b69497f
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 6 05:22:59 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 6 10:31:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d168d9
7
8 dev-python/pynput: add 1.7.3, enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pynput/Manifest | 1 +
13 dev-python/pynput/pynput-1.7.3.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/pynput/Manifest b/dev-python/pynput/Manifest
17 index 62ccc8a9e58..11f847a136f 100644
18 --- a/dev-python/pynput/Manifest
19 +++ b/dev-python/pynput/Manifest
20 @@ -1 +1,2 @@
21 DIST pynput-1.6.8.tar.gz 94483 BLAKE2B c04714fb9cdda9527ed6d3c0e7c25214a7678ee908f1a638023b95c2f63242fa7dc28f193b2055338a9cce10c26399eb4f4af0ec69a6ffaa1be0b7e85481ecc4 SHA512 23cf2e47e0a284aeb2e294529a1f47a01a42bccae146500eee2ff74704cb5ef7ff33327cca5d6ebec338369b1341c489431891d9f034801cc6be9aac2af90442
22 +DIST pynput-1.7.3.gh.tar.gz 101244 BLAKE2B 9f0468b4f94c825e4a093cbfab1ede6988352c4fa3f04f7cc29948d353e0aaaac8bd446f758d79916c2801c7d30ac8f04060e6b27ee29af705a61627ce0c6a5b SHA512 ee8d4439716ddd34765114ca111292d6ec6aca133c18256b378afa4efaae9146280f146dfa9ebb40f0371cb13d449ac5cb87b8fde1f6a2d7fcab456718dae683
23
24 diff --git a/dev-python/pynput/pynput-1.7.3.ebuild b/dev-python/pynput/pynput-1.7.3.ebuild
25 new file mode 100644
26 index 00000000000..3232b52315e
27 --- /dev/null
28 +++ b/dev-python/pynput/pynput-1.7.3.ebuild
29 @@ -0,0 +1,34 @@
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_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Sends virtual input commands"
39 +HOMEPAGE="https://github.com/moses-palmer/pynput"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +
44 +if [[ ${PV} = "9999" ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://github.com/moses-palmer/pynput.git"
47 +else
48 + SRC_URI="
49 + https://github.com/moses-palmer/pynput/archive/v${PV}.tar.gz
50 + -> ${P}.gh.tar.gz
51 + "
52 + KEYWORDS="~amd64 ~x86"
53 +fi
54 +
55 +RDEPEND="
56 + dev-python/six[${PYTHON_USEDEP}]
57 + dev-python/python-xlib[${PYTHON_USEDEP}]
58 +"
59 +
60 +src_prepare() {
61 + sed -e "s/ + SETUP_PACKAGES,/,/g" -i setup.py || die
62 + distutils-r1_src_prepare
63 +}