urh: 2.4.2 bump

This commit is contained in:
blshkv 2018-11-12 20:49:49 +08:00
parent ba8062340e
commit e624e52cce
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 40 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST urh-2.3.0.tar.gz 5450834 BLAKE2B e82475edb53dbf9dc12294354e3bd4d0ca5e67d1713fc79409807387d76a6abba7a51dc97aae407beb8e7ceaba43528b327742b2e828cbf006cf7cd1d0c1c760 SHA512 eaa1c8cafa3724d50d308137352b472ab33e9321e6cb67695455e8acf5d6cd297f0e779cd623fee181084f5bcb3a538f4c832f3089fb52e696db9e68ac499098
DIST urh-2.4.1.tar.gz 12442564 BLAKE2B 9244e6b0a9096b24eb114a20fce7b9087163a7eb512f6f79eea35a16893c6cbc4ae6c918ae4a74e7334982e15a537501943fdb7e30821a64dd00979fed6d717c SHA512 54a530af822e2a700128ec435a3cfac42c2a82b685750fed8b96dce13f7ad70e28bb4f994919654657d6a9d5a91ba5921ebe3516a8e0aab4e748afac1622fb3a
DIST urh-2.4.2.tar.gz 12442716 BLAKE2B 3e2fadb2f32a1b47710b596610fa9927afe20bade8d690d3e66b9cd16d394e6be6f57cdebbf99107bc41ab729844e17967f0feec51f76c2d15916a1002f75500 SHA512 5910c3ceeaf00dd6b195f55d3473011d0a29f932f49ec26c7676d74a64c4e691fcd54a43ec4d0181d10b8ce84e8934bf177248a3105ead8fface550db03eae6e

View 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
)
}