mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 22:01:11 +02:00
urh: 2.2.3 bump
This commit is contained in:
parent
97e115588e
commit
ea76f52220
2 changed files with 40 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST urh-2.0.2.tar.gz 17290871 BLAKE2B 4fc697c73f417898f6b5d6c98aa569ccc161ba2f3b01d7d6d0458a3658b75eb1fa316aec6f6b0102b23ec9658dca43b9d20b43c48dfd01daca0aba2c9e7fe1f2 SHA512 34a866a5ce6dabb8b44f2bdeeda0033e725048d800c55e7dedd66e1d698f97fbd354364328010c8bc6c61de80e52e04b561af14d74cbe8b8513e01962aa9e051
|
||||
DIST urh-2.2.2.tar.gz 5433838 BLAKE2B 8561b7bdcbe1f78d7c4e7d37cb15ce27fec6b0b1adb4b081b641cbc6a0f3a5dd452341a88543ebabd89f72558f29bafd840ce2dac31f93b2c4efe827df50a2bb SHA512 6e84c6a8712b3bc3eb320840fe50cd55439ad06c81262ecc5407e529810038f114e81f3229dfc588603f88d795365737bf85816b5df3ad63e814fff93bcd85d6
|
||||
DIST urh-2.2.3.tar.gz 5435476 BLAKE2B 0b784a51f20f6e75eb1d5d5ff7f24e4aeb7cea1de753f8323ed267d0dcb6a8fb703c21cf4625962cd5e8b2aa4c0ae93a4407582424e58a027b9c9b1405736596 SHA512 1851c79a3eed7ef23a2e0fbbbab308d001f7900c563e8c003c961fbe474e796f96a10a5cafbede833ccef9184bc1d2994cc5e87df3ed97614842edaab373522d
|
||||
|
|
|
|||
39
net-wireless/urh/urh-2.2.3.ebuild
Normal file
39
net-wireless/urh/urh-2.2.3.ebuild
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6} )
|
||||
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}]
|
||||
dev-python/cython[${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
|
||||
)
|
||||
}
|
||||
Loading…
Reference in a new issue