mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-18 21:00:56 +02:00
urh: update, fix deps thanks to redbaron
This commit is contained in:
parent
11c0fddc97
commit
6f6fa54ce5
3 changed files with 42 additions and 0 deletions
|
|
@ -4,3 +4,4 @@ DIST urh-1.9.2.tar.gz 19665771 BLAKE2B 9f43a037b5285dc79b8d0085cb0cbae03dc476b20
|
|||
DIST urh-2.0.0.tar.gz 17243472 BLAKE2B fd57b6478956b7831abc386f51e3becf0a027d2fbe533735ad5d1117a3ae5f609961ed273145b88524dff1db79acb634bb1fe3f3e3b23779cb30e0f0b5200639 SHA512 8344a5e0383fadbea1b4e8d1a75012389398aa890d6693bb781ec4438c1eb1ac37e09df1f129d17cf1c841fd5c8f0d0c56facd30788466676e450bd8892a33c9
|
||||
DIST urh-2.0.1.tar.gz 17288224 BLAKE2B f347b666f50b533d97ae858154f2711a8f67531cc35c335fb99569d1f1ab3d40e7f4b542ff97ce3fb09879c30ac21a40ca6c286fb1ca9068d48eb4c8df66787c SHA512 be67ab8df09951e378c7259d7813fd5d03d731b208ca466e152a2d3bc892ed5f3b179de32cf9c0b78418773addd5f7206dcbefff37e7635efd887259525a0d10
|
||||
DIST urh-2.0.2.tar.gz 17290871 BLAKE2B 4fc697c73f417898f6b5d6c98aa569ccc161ba2f3b01d7d6d0458a3658b75eb1fa316aec6f6b0102b23ec9658dca43b9d20b43c48dfd01daca0aba2c9e7fe1f2 SHA512 34a866a5ce6dabb8b44f2bdeeda0033e725048d800c55e7dedd66e1d698f97fbd354364328010c8bc6c61de80e52e04b561af14d74cbe8b8513e01962aa9e051
|
||||
DIST urh-2.1.0.tar.gz 17270218 BLAKE2B d26866606f6da5300e03036f533b3ac28c982c54df517d517a2bcdb90b8a0b3e48a97252c99524c7117b9b6257938f6e865d18d9a5c6f8c84e92f9750f1b728f SHA512 745400f322a529128c818398e8529f23723d7c8f21e1c0388cb8ebc62db332aaaaab2e164a59e83996853dcbad35dfc58ba27edf954402002da7401195f53b57
|
||||
|
|
|
|||
38
net-wireless/urh/urh-2.1.0.ebuild
Normal file
38
net-wireless/urh/urh-2.1.0.ebuild
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{3_4,3_5} )
|
||||
inherit distutils-r1 eutils
|
||||
|
||||
DESCRIPTION="Universal Radio Hacker: investigate wireless protocols like a boss"
|
||||
HOMEPAGE="https://github.com/jopohl/urh"
|
||||
SRC_URI="https://github.com/jopohl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="hackrf rtlsdr uhd"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}
|
||||
net-wireless/gnuradio[zeromq]
|
||||
dev-python/numpy[${PYTHON_USEDEP}]
|
||||
dev-python/psutil[${PYTHON_USEDEP}]
|
||||
dev-python/pyzmq[${PYTHON_USEDEP}]
|
||||
hackrf? ( net-libs/libhackrf:= )
|
||||
rtlsdr? ( net-wireless/rtl-sdr:= )
|
||||
uhd? ( net-wireless/uhd:= )"
|
||||
RDEPEND="${DEPEND}
|
||||
dev-python/PyQt5[${PYTHON_USEDEP},testlib]
|
||||
net-wireless/gr-osmosdr"
|
||||
|
||||
python_configure_all() {
|
||||
mydistutilsargs=(
|
||||
$(use_with hackrf)
|
||||
$(use_with rtlsdr)
|
||||
$(use_with uhd usrp)
|
||||
--without-airspy
|
||||
--without-limesdr
|
||||
)
|
||||
}
|
||||
|
|
@ -16,3 +16,6 @@ dev-python/ipython matplotlib
|
|||
|
||||
#yubikey stuff
|
||||
dev-python/pyside webkit
|
||||
|
||||
#urh
|
||||
dev-python/PyQt5 testlib
|
||||
|
|
|
|||
Loading…
Reference in a new issue