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 D90C01382C5 for ; Wed, 9 Dec 2020 14:14:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBA26E0921; Wed, 9 Dec 2020 14:14:38 +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 BEAA0E0922 for ; Wed, 9 Dec 2020 14:14:38 +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 C342F340E77 for ; Wed, 9 Dec 2020 14:14:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A36F491 for ; Wed, 9 Dec 2020 14:14:32 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1607488013.48c2c0adacf6812e0f7347283136b9a2944aa2ff.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/hidapi/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/hidapi/Manifest dev-python/hidapi/hidapi-0.10.1.ebuild dev-python/hidapi/metadata.xml X-VCS-Directories: dev-python/hidapi/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 48c2c0adacf6812e0f7347283136b9a2944aa2ff X-VCS-Branch: master Date: Wed, 9 Dec 2020 14:14:32 +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: 53f26da4-d5b6-40b9-a9a8-6ef8d6365a09 X-Archives-Hash: 4c94bf2c5b197e70a3e6587c0285603f commit: 48c2c0adacf6812e0f7347283136b9a2944aa2ff Author: Theo Anderson posteo de> AuthorDate: Wed Dec 9 04:26:53 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Wed Dec 9 04:26:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=48c2c0ad dev-python/hidapi: maintain & bump Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson posteo.de> dev-python/hidapi/Manifest | 1 + dev-python/hidapi/hidapi-0.10.1.ebuild | 27 +++++++++++++++++++++++++++ dev-python/hidapi/metadata.xml | 6 ++++-- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/dev-python/hidapi/Manifest b/dev-python/hidapi/Manifest index 190d920a..d65fe2f8 100644 --- a/dev-python/hidapi/Manifest +++ b/dev-python/hidapi/Manifest @@ -1 +1,2 @@ +DIST hidapi-0.10.1.tar.gz 60712 BLAKE2B 9f66015f801a73ad520b303a011edbfecb6b2e79e4366b8e72cc15a4b509cd5744c4c5f9d710b120a44f10cab0c72edf6f679961979d7ad2581edf3238426609 SHA512 681e3691a4b05b13abc38d305c68e448728612442d0ef12ce54d12eeebee6e18d33566c462a276d18ce5e29fad208e6fcde49bbe4b162eae5cd72ce37dea880b DIST hidapi-0.9.0.post3.tar.gz 57075 BLAKE2B 7c0c46faa359bf119875846680aadad94e65f5bdd225c11b4fd068cf4fb5b7fba1ed4983bc70610720d5b7ab8a2f7afd96726610309ff35cc5310a237ac117d8 SHA512 606540833459e615a8e50ff3a2c59362dab7d19d42d5e9dc2288c8c8d32e3df7214e758a9814e7de6d26bbdccd76ccf6c652b0bf8ac5b3f46124a9a7b007b971 diff --git a/dev-python/hidapi/hidapi-0.10.1.ebuild b/dev-python/hidapi/hidapi-0.10.1.ebuild new file mode 100644 index 00000000..9d745109 --- /dev/null +++ b/dev-python/hidapi/hidapi-0.10.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="A Cython interface to the hidapi" +HOMEPAGE="https://github.com/trezor/cython-hidapi" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="|| ( BSD GPL-3 )" +KEYWORDS="~amd64 ~x86" +SLOT="0" + +DEPEND=" + dev-python/cython[${PYTHON_USEDEP}] + dev-libs/hidapi +" + +distutils_enable_tests pytest + +python_test() { + pytest -vv tests.py || die "Tests failed with ${EPYTHON}" +} diff --git a/dev-python/hidapi/metadata.xml b/dev-python/hidapi/metadata.xml index a0a60d71..d3ad614d 100644 --- a/dev-python/hidapi/metadata.xml +++ b/dev-python/hidapi/metadata.xml @@ -1,6 +1,8 @@ - - + + telans@posteo.de + Theo Anderson +