diff options
author | 2024-03-17 16:25:57 +0000 | |
---|---|---|
committer | 2024-03-17 16:25:57 +0000 | |
commit | ed068c814ff32db3f47e1ec5be020cd17c8cb2ef (patch) | |
tree | 85bc320c806723b3134672dd66ebfefae325c118 /dev-python/pynput | |
parent | remove old fs beta (diff) | |
download | lmiphay-ed068c814ff32db3f47e1ec5be020cd17c8cb2ef.tar.gz lmiphay-ed068c814ff32db3f47e1ec5be020cd17c8cb2ef.tar.bz2 lmiphay-ed068c814ff32db3f47e1ec5be020cd17c8cb2ef.zip |
python-evdev renamed to evdev
Signed-off-by: Paul Healy <lmiphay@gmail.com>
Diffstat (limited to 'dev-python/pynput')
-rw-r--r-- | dev-python/pynput/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pynput/pynput-1.7.6.ebuild | 35 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/pynput/Manifest b/dev-python/pynput/Manifest new file mode 100644 index 0000000..8dd0bd2 --- /dev/null +++ b/dev-python/pynput/Manifest @@ -0,0 +1,2 @@ +DIST pynput-1.7.6.gh.tar.gz 91413 BLAKE2B 456a9b1d8c69b0e3821bf0bfcb1c1a32ad4c552f8e27925a276612d10a01cb50115a44743e5a7842185138d53b9845af5b8ad3f5c26f137eacd8368323d52956 SHA512 40c0862e4ab11c0f55e5eda9eaf204cecbf21cf801198b3a9b69cb5a8aca6c5d11e40c170f4209ccd0495495a3bdcd69414bf2b2e41ba25e1f87b83585956166 +EBUILD pynput-1.7.6.ebuild 749 BLAKE2B a00c12c1896363e9bc757fbec2f84f7c228cc6b95f819e563f6f11e4939f0d15734c237d52bcf97213e14fc0186d1c515a1fc444b1f690ed0b56739c70ea892e SHA512 536988d1dd2e1910c32a85a2fa18412054f673fe559d8e9503ceb6c853b177d5c43682512c08d17ada1c6ef17c872ee1e9ea77e219d3c23cf4a0fca7b7d76d5f diff --git a/dev-python/pynput/pynput-1.7.6.ebuild b/dev-python/pynput/pynput-1.7.6.ebuild new file mode 100644 index 0000000..0d14913 --- /dev/null +++ b/dev-python/pynput/pynput-1.7.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..11} ) +inherit distutils-r1 + +DESCRIPTION="Sends virtual input commands" +HOMEPAGE="https://github.com/moses-palmer/pynput" + +LICENSE="GPL-3" +SLOT="0" + +if [[ ${PV} = "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/moses-palmer/pynput.git" +else + SRC_URI=" + https://github.com/moses-palmer/pynput/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz + " + KEYWORDS="~amd64 ~x86" +fi + +RDEPEND=" + dev-python/evdev[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" + +src_prepare() { + sed -e "s/ + SETUP_PACKAGES,/,/g" -i setup.py || die + distutils-r1_src_prepare +} |