mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
urg: v2.0.1 bump
This commit is contained in:
parent
f58e737e37
commit
d771c133a9
2 changed files with 39 additions and 0 deletions
|
|
@ -2,3 +2,4 @@ DIST urh-1.8.17.tar.gz 16474883 BLAKE2B cf020f18955a5eef272b7028c5ec01e93137d4f4
|
|||
DIST urh-1.9.1.tar.gz 15524211 BLAKE2B 06d3f2aa187d28af1ef4b7ea2ad7c971cd380dac9d722b85c2833b538f4fd78bedd09b18ce494eadb8018c279a1c16ed5c23fb3b3519478092e7eac291ee1599 SHA512 f2346f0c6196e034fc2a10c6caa26e56d2b7549dd1db2c35db1dd838b2b1b794c4248a5f47cf8167d5aaedd112d2bfbac40cf2d235c9eafd037197269709a09b
|
||||
DIST urh-1.9.2.tar.gz 19665771 BLAKE2B 9f43a037b5285dc79b8d0085cb0cbae03dc476b20f30b1381824baadb920bcc7bb3626c0246515474d6ddbc38606954f8c28223fa1b699afae21fb89064d459e SHA512 35065061413de765393a60d5db79c335cb8c95f556c5ed67457a0be542e51a012f7d8ef74deb171478d8abaa13b574d135f8afb47a6bdb6ba7c6a39056b0a540
|
||||
DIST urh-2.0.0.tar.gz 17243472 BLAKE2B fd57b6478956b7831abc386f51e3becf0a027d2fbe533735ad5d1117a3ae5f609961ed273145b88524dff1db79acb634bb1fe3f3e3b23779cb30e0f0b5200639 SHA512 8344a5e0383fadbea1b4e8d1a75012389398aa890d6693bb781ec4438c1eb1ac37e09df1f129d17cf1c841fd5c8f0d0c56facd30788466676e450bd8892a33c9
|
||||
DIST urh-2.0.1.tar.gz 17288224 BLAKE2B f347b666f50b533d97ae858154f2711a8f67531cc35c335fb99569d1f1ab3d40e7f4b542ff97ce3fb09879c30ac21a40ca6c286fb1ca9068d48eb4c8df66787c SHA512 be67ab8df09951e378c7259d7813fd5d03d731b208ca466e152a2d3bc892ed5f3b179de32cf9c0b78418773addd5f7206dcbefff37e7635efd887259525a0d10
|
||||
|
|
|
|||
38
net-wireless/urh/urh-2.0.1.ebuild
Normal file
38
net-wireless/urh/urh-2.0.1.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}]
|
||||
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