From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1C9FA13835A for ; Fri, 22 May 2020 17:23:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 240AAE08C4; Fri, 22 May 2020 17:23:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D87CBE08B1 for ; Fri, 22 May 2020 17:23:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACC1934F2AF for ; Fri, 22 May 2020 17:23:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53D52257 for ; Fri, 22 May 2020 17:23:16 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1590168130.e21822563d82f3b0e2d284e9ce7e29a1c71ac96c.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pynput/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pynput/Manifest dev-python/pynput/metadata.xml dev-python/pynput/pynput-1.6.8.ebuild dev-python/pynput/pynput-9999.ebuild X-VCS-Directories: dev-python/pynput/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: e21822563d82f3b0e2d284e9ce7e29a1c71ac96c X-VCS-Branch: master Date: Fri, 22 May 2020 17:23:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 99a02497-b777-4f68-aa14-fbcb72178081 X-Archives-Hash: 102ac5de57722ae48c83764cb1f86d37 commit: e21822563d82f3b0e2d284e9ce7e29a1c71ac96c Author: Rick Farina gentoo org> AuthorDate: Fri May 22 16:40:12 2020 +0000 Commit: Rick Farina gentoo org> CommitDate: Fri May 22 17:22:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2182256 dev-python/pynput: initial ebuild imported from multiple sources and edited a lot Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Rick Farina gentoo.org> dev-python/pynput/Manifest | 1 + dev-python/pynput/metadata.xml | 8 ++++++++ dev-python/pynput/pynput-1.6.8.ebuild | 34 ++++++++++++++++++++++++++++++++++ dev-python/pynput/pynput-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 77 insertions(+) diff --git a/dev-python/pynput/Manifest b/dev-python/pynput/Manifest new file mode 100644 index 00000000000..62ccc8a9e58 --- /dev/null +++ b/dev-python/pynput/Manifest @@ -0,0 +1 @@ +DIST pynput-1.6.8.tar.gz 94483 BLAKE2B c04714fb9cdda9527ed6d3c0e7c25214a7678ee908f1a638023b95c2f63242fa7dc28f193b2055338a9cce10c26399eb4f4af0ec69a6ffaa1be0b7e85481ecc4 SHA512 23cf2e47e0a284aeb2e294529a1f47a01a42bccae146500eee2ff74704cb5ef7ff33327cca5d6ebec338369b1341c489431891d9f034801cc6be9aac2af90442 diff --git a/dev-python/pynput/metadata.xml b/dev-python/pynput/metadata.xml new file mode 100644 index 00000000000..2b9b4266ca5 --- /dev/null +++ b/dev-python/pynput/metadata.xml @@ -0,0 +1,8 @@ + + + + + zerochaos@gentoo.org + Rick Farina + + diff --git a/dev-python/pynput/pynput-1.6.8.ebuild b/dev-python/pynput/pynput-1.6.8.ebuild new file mode 100644 index 00000000000..a9c4160cc50 --- /dev/null +++ b/dev-python/pynput/pynput-1.6.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} pypy ) + +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}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi +IUSE="" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] +" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] +" + +src_prepare(){ + sed -i "s/ + SETUP_PACKAGES,/,/g" setup.py + distutils-r1_src_prepare +} diff --git a/dev-python/pynput/pynput-9999.ebuild b/dev-python/pynput/pynput-9999.ebuild new file mode 100644 index 00000000000..a9c4160cc50 --- /dev/null +++ b/dev-python/pynput/pynput-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} pypy ) + +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}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi +IUSE="" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] +" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] +" + +src_prepare(){ + sed -i "s/ + SETUP_PACKAGES,/,/g" setup.py + distutils-r1_src_prepare +}