public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2020-08-25  8:41 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2020-08-25  8:41 UTC (permalink / raw
  To: gentoo-commits

commit:     b2fabdcc1942bf8499ffa5ebcb16189aabe2d299
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Mon Aug 24 13:17:02 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Aug 24 13:17:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b2fabdcc

dev-python/hwi: new package

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/Manifest         |  1 +
 dev-python/hwi/hwi-1.1.2.ebuild | 55 +++++++++++++++++++++++++++++++++++++++++
 dev-python/hwi/metadata.xml     | 11 +++++++++
 3 files changed, 67 insertions(+)

diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest
new file mode 100644
index 0000000..a837849
--- /dev/null
+++ b/dev-python/hwi/Manifest
@@ -0,0 +1 @@
+DIST hwi-1.1.2.tar.gz 191620 BLAKE2B f5c7001efa4dfe73b3641ff17dcc8e004b16102eabbee8f2b777279d193d53d19aad11ece0aaa3b885a6f72009de2b7a407e625011e6c4e59cca8c227635772f SHA512 bde36a4fca4f36abef57f5557f38bd1957fd13362f14f9e2e1f0b86c20f6669d0fe0f2763799922250eaf3c936cd87bcdae833b90424f136be66ddcb098b55d1

diff --git a/dev-python/hwi/hwi-1.1.2.ebuild b/dev-python/hwi/hwi-1.1.2.ebuild
new file mode 100644
index 0000000..afe011e
--- /dev/null
+++ b/dev-python/hwi/hwi-1.1.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} )
+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 ~x86"
+IUSE="udev doc"
+
+BDEPEND=""
+RDEPEND="
+	>=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
+}

diff --git a/dev-python/hwi/metadata.xml b/dev-python/hwi/metadata.xml
new file mode 100644
index 0000000..b63e8de
--- /dev/null
+++ b/dev-python/hwi/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://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>


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2020-09-22 11:13 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2020-09-22 11:13 UTC (permalink / raw
  To: gentoo-commits

commit:     1d7971c6bdc4d7a7f47b5a7cbc537fe6cb533f14
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Mon Sep 21 12:47:51 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Sep 21 12:47:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d7971c6

dev-python/hwi: python 3.9 support

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/hwi-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/hwi/hwi-1.1.2.ebuild b/dev-python/hwi/hwi-1.1.2.ebuild
index afe011ee..f3175f80 100644
--- a/dev-python/hwi/hwi-1.1.2.ebuild
+++ b/dev-python/hwi/hwi-1.1.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1 udev


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2020-10-27 18:27 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2020-10-27 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     93d0833bda8c5d0b6e4fd8cb248c6152a7ccdc3e
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Tue Oct 27 07:25:21 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Oct 27 07:25:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=93d0833b

dev-python/hwi: version bump to 1.2.0

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/Manifest                               | 2 +-
 dev-python/hwi/{hwi-1.1.2.ebuild => hwi-1.2.0.ebuild} | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest
index a8378492..a61cbd7e 100644
--- a/dev-python/hwi/Manifest
+++ b/dev-python/hwi/Manifest
@@ -1 +1 @@
-DIST hwi-1.1.2.tar.gz 191620 BLAKE2B f5c7001efa4dfe73b3641ff17dcc8e004b16102eabbee8f2b777279d193d53d19aad11ece0aaa3b885a6f72009de2b7a407e625011e6c4e59cca8c227635772f SHA512 bde36a4fca4f36abef57f5557f38bd1957fd13362f14f9e2e1f0b86c20f6669d0fe0f2763799922250eaf3c936cd87bcdae833b90424f136be66ddcb098b55d1
+DIST hwi-1.2.0.tar.gz 200640 BLAKE2B 88a3ea7c3af11ac8f78c67b17c7878b657ca141751e3b4ffdb6df2e1919e299fd3f0868b6987f1ca8b013b32de15d575432204252269601b8b1f177d74d8cc88 SHA512 4f6df4f955d11e6c254fbcd5881e5b05639dd253481d6fd6c9963aed4e1c4d3a4588bf3cc4ca83201a0a4da328abb7c9323d1f8eac490f1ccbae2ad3a7da99b7

diff --git a/dev-python/hwi/hwi-1.1.2.ebuild b/dev-python/hwi/hwi-1.2.0.ebuild
similarity index 96%
rename from dev-python/hwi/hwi-1.1.2.ebuild
rename to dev-python/hwi/hwi-1.2.0.ebuild
index f3175f80..6aa2f6e7 100644
--- a/dev-python/hwi/hwi-1.1.2.ebuild
+++ b/dev-python/hwi/hwi-1.2.0.ebuild
@@ -22,6 +22,7 @@ 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}]


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2020-11-28 13:57 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2020-11-28 13:57 UTC (permalink / raw
  To: gentoo-commits

commit:     4b67eac6c5c5f08db2ca7d68f52eda8de31003f1
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Thu Nov 26 18:10:13 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Nov 26 18:10:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b67eac6

dev-python/hwi: version bump to 1.2.1

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/Manifest                               | 2 +-
 dev-python/hwi/{hwi-1.2.0.ebuild => hwi-1.2.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest
index a61cbd7e..1365395f 100644
--- a/dev-python/hwi/Manifest
+++ b/dev-python/hwi/Manifest
@@ -1 +1 @@
-DIST hwi-1.2.0.tar.gz 200640 BLAKE2B 88a3ea7c3af11ac8f78c67b17c7878b657ca141751e3b4ffdb6df2e1919e299fd3f0868b6987f1ca8b013b32de15d575432204252269601b8b1f177d74d8cc88 SHA512 4f6df4f955d11e6c254fbcd5881e5b05639dd253481d6fd6c9963aed4e1c4d3a4588bf3cc4ca83201a0a4da328abb7c9323d1f8eac490f1ccbae2ad3a7da99b7
+DIST hwi-1.2.1.tar.gz 200755 BLAKE2B b426dcd78f0ff6039541b768155a0be11f591ee4e72957fce16ffd26841cd92c3e80ce57daefc531c31f912ec94139f53db8823a3fadf347f0153c1d47f1ad08 SHA512 b8cdda0ce9d4d9734e2754a47343fa7f331f55c609448561b1bed304629b6f01d80dadba55193633ad6ac1a8ba595f4574ae8aa32cfc841c34cbeff315310071

diff --git a/dev-python/hwi/hwi-1.2.0.ebuild b/dev-python/hwi/hwi-1.2.1.ebuild
similarity index 100%
rename from dev-python/hwi/hwi-1.2.0.ebuild
rename to dev-python/hwi/hwi-1.2.1.ebuild


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2021-03-21 20:46 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2021-03-21 20:46 UTC (permalink / raw
  To: gentoo-commits

commit:     1c91be3ec65c185f5afe0ef37b390e533d1842e2
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Sun Mar 21 11:39:47 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 21 11:39:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c91be3e

dev-python/hwi: bump to version 2.0.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/Manifest         |  1 +
 dev-python/hwi/hwi-2.0.0.ebuild | 56 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest
index 1365395f..f33fc225 100644
--- a/dev-python/hwi/Manifest
+++ b/dev-python/hwi/Manifest
@@ -1 +1,2 @@
 DIST hwi-1.2.1.tar.gz 200755 BLAKE2B b426dcd78f0ff6039541b768155a0be11f591ee4e72957fce16ffd26841cd92c3e80ce57daefc531c31f912ec94139f53db8823a3fadf347f0153c1d47f1ad08 SHA512 b8cdda0ce9d4d9734e2754a47343fa7f331f55c609448561b1bed304629b6f01d80dadba55193633ad6ac1a8ba595f4574ae8aa32cfc841c34cbeff315310071
+DIST hwi-2.0.0.tar.gz 2777420 BLAKE2B d0285ad0cb2915dc0676e5f16476eb959c7ce6a79d6d5fd849bdcc58b71701025d32d3deadb824877ad8cb8d3f32572ac15df5d910b28269e8cf1fcbe322fa07 SHA512 515aa9df76f1a8759ebb154f833864968b9f381df721fe572e5a77570b38380268c35536abd2d232d5a0ab1f04a1a6b1db701c55f0379de0d1f3a691c789fd13

diff --git a/dev-python/hwi/hwi-2.0.0.ebuild b/dev-python/hwi/hwi-2.0.0.ebuild
new file mode 100644
index 00000000..a2eb4525
--- /dev/null
+++ b/dev-python/hwi/hwi-2.0.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..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 ~x86"
+IUSE="udev doc"
+
+BDEPEND=""
+RDEPEND="
+	>=dev-python/bitbox02-5.2.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
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2021-03-29  7:30 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2021-03-29  7:30 UTC (permalink / raw
  To: gentoo-commits

commit:     d3d4cd2034dbbb308a87ce74554a0a22e261d5f2
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Mon Mar 29 05:39:45 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Mar 29 05:39:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d3d4cd20

dev-python/hwi: cleanup old ebuild

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/Manifest         |  1 -
 dev-python/hwi/hwi-2.0.0.ebuild | 56 -----------------------------------------
 2 files changed, 57 deletions(-)

diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest
index e443ede98..6cc07b39d 100644
--- a/dev-python/hwi/Manifest
+++ b/dev-python/hwi/Manifest
@@ -1,3 +1,2 @@
 DIST hwi-1.2.1.tar.gz 200755 BLAKE2B b426dcd78f0ff6039541b768155a0be11f591ee4e72957fce16ffd26841cd92c3e80ce57daefc531c31f912ec94139f53db8823a3fadf347f0153c1d47f1ad08 SHA512 b8cdda0ce9d4d9734e2754a47343fa7f331f55c609448561b1bed304629b6f01d80dadba55193633ad6ac1a8ba595f4574ae8aa32cfc841c34cbeff315310071
-DIST hwi-2.0.0.tar.gz 2777420 BLAKE2B d0285ad0cb2915dc0676e5f16476eb959c7ce6a79d6d5fd849bdcc58b71701025d32d3deadb824877ad8cb8d3f32572ac15df5d910b28269e8cf1fcbe322fa07 SHA512 515aa9df76f1a8759ebb154f833864968b9f381df721fe572e5a77570b38380268c35536abd2d232d5a0ab1f04a1a6b1db701c55f0379de0d1f3a691c789fd13
 DIST hwi-2.0.1.tar.gz 2777494 BLAKE2B 11bf516a806459ae9457fd90006737c02c0b6fcaa523fddf8b6fce9d0127e6b3cc004637de20e3691573bcc593a148a9878ea42ea6e8e97eaaa386fe4cd1cba7 SHA512 a278d0361b12a8a63b3ea9d92ff0e0e522cd2fe38a760c9fea584887434fe24e1d8d38a6c6d3929b469cab942de5e512a7d1d6c1dcc119e2af93fdf3ab089806

diff --git a/dev-python/hwi/hwi-2.0.0.ebuild b/dev-python/hwi/hwi-2.0.0.ebuild
deleted file mode 100644
index a2eb45254..000000000
--- a/dev-python/hwi/hwi-2.0.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..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 ~x86"
-IUSE="udev doc"
-
-BDEPEND=""
-RDEPEND="
-	>=dev-python/bitbox02-5.2.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
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2021-03-29  7:30 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2021-03-29  7:30 UTC (permalink / raw
  To: gentoo-commits

commit:     fd8546fede5fd02d44605061563505a08e1c5cfc
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Mon Mar 29 05:38:48 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Mar 29 05:38:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fd8546fe

dev-python/hwi: version bump to 2.0.1

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/Manifest         |  1 +
 dev-python/hwi/hwi-2.0.1.ebuild | 56 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest
index f33fc225c..e443ede98 100644
--- a/dev-python/hwi/Manifest
+++ b/dev-python/hwi/Manifest
@@ -1,2 +1,3 @@
 DIST hwi-1.2.1.tar.gz 200755 BLAKE2B b426dcd78f0ff6039541b768155a0be11f591ee4e72957fce16ffd26841cd92c3e80ce57daefc531c31f912ec94139f53db8823a3fadf347f0153c1d47f1ad08 SHA512 b8cdda0ce9d4d9734e2754a47343fa7f331f55c609448561b1bed304629b6f01d80dadba55193633ad6ac1a8ba595f4574ae8aa32cfc841c34cbeff315310071
 DIST hwi-2.0.0.tar.gz 2777420 BLAKE2B d0285ad0cb2915dc0676e5f16476eb959c7ce6a79d6d5fd849bdcc58b71701025d32d3deadb824877ad8cb8d3f32572ac15df5d910b28269e8cf1fcbe322fa07 SHA512 515aa9df76f1a8759ebb154f833864968b9f381df721fe572e5a77570b38380268c35536abd2d232d5a0ab1f04a1a6b1db701c55f0379de0d1f3a691c789fd13
+DIST hwi-2.0.1.tar.gz 2777494 BLAKE2B 11bf516a806459ae9457fd90006737c02c0b6fcaa523fddf8b6fce9d0127e6b3cc004637de20e3691573bcc593a148a9878ea42ea6e8e97eaaa386fe4cd1cba7 SHA512 a278d0361b12a8a63b3ea9d92ff0e0e522cd2fe38a760c9fea584887434fe24e1d8d38a6c6d3929b469cab942de5e512a7d1d6c1dcc119e2af93fdf3ab089806

diff --git a/dev-python/hwi/hwi-2.0.1.ebuild b/dev-python/hwi/hwi-2.0.1.ebuild
new file mode 100644
index 000000000..a2eb45254
--- /dev/null
+++ b/dev-python/hwi/hwi-2.0.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..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 ~x86"
+IUSE="udev doc"
+
+BDEPEND=""
+RDEPEND="
+	>=dev-python/bitbox02-5.2.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
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2021-06-02 16:00 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2021-06-02 16:00 UTC (permalink / raw
  To: gentoo-commits

commit:     58c0847522f09b515130d5fc687325db679e8a34
Author:     Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
AuthorDate: Wed Jun  2 06:14:17 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Jun  2 06:14:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=58c08475

dev-python/hwi: version bump to 2.0.2

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>

 dev-python/hwi/Manifest                               | 2 +-
 dev-python/hwi/{hwi-2.0.1.ebuild => hwi-2.0.2.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest
index 6cc07b39d..b46b59def 100644
--- a/dev-python/hwi/Manifest
+++ b/dev-python/hwi/Manifest
@@ -1,2 +1,2 @@
 DIST hwi-1.2.1.tar.gz 200755 BLAKE2B b426dcd78f0ff6039541b768155a0be11f591ee4e72957fce16ffd26841cd92c3e80ce57daefc531c31f912ec94139f53db8823a3fadf347f0153c1d47f1ad08 SHA512 b8cdda0ce9d4d9734e2754a47343fa7f331f55c609448561b1bed304629b6f01d80dadba55193633ad6ac1a8ba595f4574ae8aa32cfc841c34cbeff315310071
-DIST hwi-2.0.1.tar.gz 2777494 BLAKE2B 11bf516a806459ae9457fd90006737c02c0b6fcaa523fddf8b6fce9d0127e6b3cc004637de20e3691573bcc593a148a9878ea42ea6e8e97eaaa386fe4cd1cba7 SHA512 a278d0361b12a8a63b3ea9d92ff0e0e522cd2fe38a760c9fea584887434fe24e1d8d38a6c6d3929b469cab942de5e512a7d1d6c1dcc119e2af93fdf3ab089806
+DIST hwi-2.0.2.tar.gz 2777606 BLAKE2B eacdf86c96f9123a3fef08f349a9540669dc3d304d8ef3d5c0c37baf923ec31265c1de4e8b9e68cf377ebaf212bd6b6abf935d9050b26955b335db6f3edf6126 SHA512 6c415d0ac3a673e38c87c8d9d64e789743226beff8c0148d2df3d5fc504ccce40159ddf190c1158d19f9adff4ce8ac7cf1b2ed654b1a9b9dd42181677d9823f2

diff --git a/dev-python/hwi/hwi-2.0.1.ebuild b/dev-python/hwi/hwi-2.0.2.ebuild
similarity index 96%
rename from dev-python/hwi/hwi-2.0.1.ebuild
rename to dev-python/hwi/hwi-2.0.2.ebuild
index a2eb45254..6c009aed2 100644
--- a/dev-python/hwi/hwi-2.0.1.ebuild
+++ b/dev-python/hwi/hwi-2.0.2.ebuild
@@ -22,7 +22,7 @@ IUSE="udev doc"
 
 BDEPEND=""
 RDEPEND="
-	>=dev-python/bitbox02-5.2.0[${PYTHON_USEDEP}]
+	>=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}]


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/
@ 2022-06-06 16:28 Florian Schmaus
  0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-06-06 16:28 UTC (permalink / raw
  To: gentoo-commits

commit:     5e7cbbaa9a75c07e4d603d55f58724c6a3b3515c
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Jun  5 21:15:23 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Jun  5 21:15:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e7cbbaa

dev-python/hwi: unkeyword x86

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/hwi/hwi-1.2.1.ebuild | 4 ++--
 dev-python/hwi/hwi-2.0.2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/hwi/hwi-1.2.1.ebuild b/dev-python/hwi/hwi-1.2.1.ebuild
index eb85a48f9..2e868bd4e 100644
--- a/dev-python/hwi/hwi-1.2.1.ebuild
+++ b/dev-python/hwi/hwi-1.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/bitcoin-core/${MY_PN}/archive/${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 IUSE="udev doc"
 
 BDEPEND=""

diff --git a/dev-python/hwi/hwi-2.0.2.ebuild b/dev-python/hwi/hwi-2.0.2.ebuild
index 868dd6251..ea511a847 100644
--- a/dev-python/hwi/hwi-2.0.2.ebuild
+++ b/dev-python/hwi/hwi-2.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 IUSE="udev"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-06-06 16:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-02 16:00 [gentoo-commits] repo/proj/guru:master commit in: dev-python/hwi/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2022-06-06 16:28 Florian Schmaus
2021-03-29  7:30 Andrew Ammerlaan
2021-03-29  7:30 Andrew Ammerlaan
2021-03-21 20:46 Andrew Ammerlaan
2020-11-28 13:57 Andrew Ammerlaan
2020-10-27 18:27 Andrew Ammerlaan
2020-09-22 11:13 Andrew Ammerlaan
2020-08-25  8:41 Andrew Ammerlaan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox