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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 46779158086 for ; Tue, 14 Dec 2021 07:14:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 352922BC02A; Tue, 14 Dec 2021 07:14:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF2602BC006 for ; Tue, 14 Dec 2021 07:14:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1DD634366F for ; Tue, 14 Dec 2021 07:14:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30841257 for ; Tue, 14 Dec 2021 07:14:05 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1639465346.098ef9c87ad93aff2ae7fde3dfb0cbf2f1df88a0.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/hwi/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/hwi/hwi-2.0.2.ebuild X-VCS-Directories: dev-python/hwi/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 098ef9c87ad93aff2ae7fde3dfb0cbf2f1df88a0 X-VCS-Branch: dev Date: Tue, 14 Dec 2021 07:14:05 +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: f7901957-3166-4b61-a73f-035acef4b491 X-Archives-Hash: 6e68e3d5aed87f9dab75764ccb7f21bf commit: 098ef9c87ad93aff2ae7fde3dfb0cbf2f1df88a0 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat Dec 11 12:10:03 2021 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue Dec 14 07:02:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=098ef9c8 dev-python/hwi: update EAPI 7 -> 8 Closes: https://bugs.gentoo.org/816177 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/hwi/hwi-2.0.2.ebuild | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/dev-python/hwi/hwi-2.0.2.ebuild b/dev-python/hwi/hwi-2.0.2.ebuild index b229b0289..868dd6251 100644 --- a/dev-python/hwi/hwi-2.0.2.ebuild +++ b/dev-python/hwi/hwi-2.0.2.ebuild @@ -1,11 +1,9 @@ # Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{8..9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - inherit distutils-r1 udev DESCRIPTION="Library and command line tool for interacting with hardware wallets" @@ -14,13 +12,13 @@ HOMEPAGE="https://github.com/bitcoin-core/HWI" MY_PN="HWI" MY_P="${MY_PN}-${PV}" SRC_URI="https://github.com/bitcoin-core/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="udev doc" +IUSE="udev" -BDEPEND="" RDEPEND=" >=dev-python/bitbox02-5.3.0[${PYTHON_USEDEP}] >=dev-python/ecdsa-0.13.0[${PYTHON_USEDEP}] @@ -32,18 +30,20 @@ RDEPEND=" distutils_enable_tests unittest -S="${WORKDIR}/${MY_P}" +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme \ + dev-python/sphinxcontrib-autoprogram python_prepare_all() { # remove upper bounds on dependencies from setup.py file - sed 's/,<[0-9.]\+//' -i setup.py || die "sed failed" + sed 's/,<[0-9.]\+//' -i setup.py || die - pushd test + pushd test || die # remove tests that require hardware emulation - rm test_coldcard.py test_device.py test_digitalbitbox.py test_keepkey.py test_ledger.py test_trezor.py + rm test_coldcard.py test_device.py test_digitalbitbox.py test_keepkey.py test_ledger.py test_trezor.py || die # remove udev tests because it expects the rules are installed in the libs folder - rm test_udevrules.py - popd + rm test_udevrules.py || die + popd || die distutils-r1_python_prepare_all }