dev-python/hwi: treeclean

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2023-05-02 00:39:09 +05:00
parent 40454eedb5
commit fcd6f3f2bb
5 changed files with 0 additions and 126 deletions

View File

@@ -1,2 +0,0 @@
DIST hwi-1.2.1.tar.gz 200755 BLAKE2B b426dcd78f0ff6039541b768155a0be11f591ee4e72957fce16ffd26841cd92c3e80ce57daefc531c31f912ec94139f53db8823a3fadf347f0153c1d47f1ad08 SHA512 b8cdda0ce9d4d9734e2754a47343fa7f331f55c609448561b1bed304629b6f01d80dadba55193633ad6ac1a8ba595f4574ae8aa32cfc841c34cbeff315310071
DIST hwi-2.0.2.tar.gz 2777606 BLAKE2B eacdf86c96f9123a3fef08f349a9540669dc3d304d8ef3d5c0c37baf923ec31265c1de4e8b9e68cf377ebaf212bd6b6abf935d9050b26955b335db6f3edf6126 SHA512 6c415d0ac3a673e38c87c8d9d64e789743226beff8c0148d2df3d5fc504ccce40159ddf190c1158d19f9adff4ce8ac7cf1b2ed654b1a9b9dd42181677d9823f2

View File

@@ -1,56 +0,0 @@
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_9 )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1 udev
DESCRIPTION="Library and command line tool for interacting with hardware wallets"
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"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="udev doc"
BDEPEND=""
RDEPEND="
>=dev-python/bitbox02-4.1.0[${PYTHON_USEDEP}]
>=dev-python/ecdsa-0.13.0[${PYTHON_USEDEP}]
>=dev-python/hidapi-0.7.99[${PYTHON_USEDEP}]
>=dev-python/libusb1-1.7.0[${PYTHON_USEDEP}]
>=dev-python/mnemonic-0.18.0[${PYTHON_USEDEP}]
>=dev-python/pyaes-1.6.0[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-3.7.4.1[${PYTHON_USEDEP}]"
distutils_enable_tests unittest
S="${WORKDIR}/${MY_P}"
python_prepare_all() {
# remove upper bounds on dependencies from setup.py file
sed 's/,<[0-9.]\+//' -i setup.py || die "sed failed"
pushd test
# 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
# remove udev tests because it expects the rules are installed in the libs folder
rm test_udevrules.py
popd
distutils-r1_python_prepare_all
}
python_install_all() {
use udev && udev_dorules hwilib/udev/*.rules
use doc && dodoc -r docs
distutils-r1_python_install_all
}

View File

@@ -1,56 +0,0 @@
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_9 )
inherit distutils-r1 udev
DESCRIPTION="Library and command line tool for interacting with hardware wallets"
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"
IUSE="udev"
RDEPEND="
>=dev-python/bitbox02-5.3.0[${PYTHON_USEDEP}]
>=dev-python/ecdsa-0.13.0[${PYTHON_USEDEP}]
>=dev-python/hidapi-0.7.99[${PYTHON_USEDEP}]
>=dev-python/libusb1-1.7.0[${PYTHON_USEDEP}]
>=dev-python/mnemonic-0.18.0[${PYTHON_USEDEP}]
>=dev-python/pyaes-1.6.0[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-3.7.4.1[${PYTHON_USEDEP}]"
distutils_enable_tests unittest
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
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 || die
# remove udev tests because it expects the rules are installed in the libs folder
rm test_udevrules.py || die
popd || die
distutils-r1_python_prepare_all
}
python_install_all() {
use udev && udev_dorules hwilib/udev/*.rules
use doc && dodoc -r docs
distutils-r1_python_install_all
}

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>a.zuber@gmx.ch</email>
<name>Andreas Zuber</name>
</maintainer>
<upstream>
<remote-id type="github">bitcoin-core/HWI</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -22,7 +22,6 @@ sys-cluster/pcs
# Anna Vyalkova <cyber+gentoo@sysrq.in> (2023-05-01) # Anna Vyalkova <cyber+gentoo@sysrq.in> (2023-05-01)
# No supported Pythom implementations set in ebuild. # No supported Pythom implementations set in ebuild.
# Masked for removal in 30 days. # Masked for removal in 30 days.
dev-python/hwi
dev-python/mnemonic dev-python/mnemonic
dev-python/noiseprotocol dev-python/noiseprotocol
dev-python/pyinstaller dev-python/pyinstaller