mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 21:31:10 +02:00
urh: v.1.9.1 bump
This commit is contained in:
parent
c966f2cfc8
commit
950d49d1a8
2 changed files with 38 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST urh-1.8.17.tar.gz 16474883 SHA256 fa5931243a435740d9f99b959edf66aff34f06a8f80564752a8e293e220bd472 SHA512 4bcfcc100c75e5d13fba7e91d9184ea49472f2500958bf44738ec108239353b2ad933893b21ec6e7d7e9cecab9308e18e4f0d01f30090ddc86caebfa4525a483 WHIRLPOOL 1add95b4bb0281690071b3cada2ffa0d724ebc1154177c48d146b1d9c53d48777c790dc0562b2bbf295f03901a6db0a24e17d142e4de27285a6436a0a9eb1277
|
||||
DIST urh-1.9.1.tar.gz 15524211 SHA256 a629707bd7781764eff79edbf02e4c9e0dd2c6b2a6cc295b0e90f609d780384a SHA512 f2346f0c6196e034fc2a10c6caa26e56d2b7549dd1db2c35db1dd838b2b1b794c4248a5f47cf8167d5aaedd112d2bfbac40cf2d235c9eafd037197269709a09b WHIRLPOOL a46fcdc4f78ebd58eb4e9c2f32d5ac2f0c87b8bbff2d06529613ef850973684ee93a808088264e3805678187b7e3bec5541c81e0c2a2f29583a3fb4494e42f68
|
||||
|
|
|
|||
37
net-wireless/urh/urh-1.9.1.ebuild
Normal file
37
net-wireless/urh/urh-1.9.1.ebuild
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# Copyright 1999-2017 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}
|
||||
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