urh: 2.2.0 bump

This commit is contained in:
blshkv 2018-06-30 21:12:12 +08:00
parent fc3b238dc2
commit 0c56d22b2b
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
6 changed files with 2 additions and 155 deletions

View file

@ -1,7 +1,3 @@
DIST urh-1.8.17.tar.gz 16474883 BLAKE2B cf020f18955a5eef272b7028c5ec01e93137d4f4df153785843ecc165216869976b092a2bcc62176195512eed72f12543561341c7dcba81f76a8c65f9fe936de SHA512 4bcfcc100c75e5d13fba7e91d9184ea49472f2500958bf44738ec108239353b2ad933893b21ec6e7d7e9cecab9308e18e4f0d01f30090ddc86caebfa4525a483
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
DIST urh-2.0.2.tar.gz 17290871 BLAKE2B 4fc697c73f417898f6b5d6c98aa569ccc161ba2f3b01d7d6d0458a3658b75eb1fa316aec6f6b0102b23ec9658dca43b9d20b43c48dfd01daca0aba2c9e7fe1f2 SHA512 34a866a5ce6dabb8b44f2bdeeda0033e725048d800c55e7dedd66e1d698f97fbd354364328010c8bc6c61de80e52e04b561af14d74cbe8b8513e01962aa9e051
DIST urh-2.1.0.tar.gz 17270218 BLAKE2B d26866606f6da5300e03036f533b3ac28c982c54df517d517a2bcdb90b8a0b3e48a97252c99524c7117b9b6257938f6e865d18d9a5c6f8c84e92f9750f1b728f SHA512 745400f322a529128c818398e8529f23723d7c8f21e1c0388cb8ebc62db332aaaaab2e164a59e83996853dcbad35dfc58ba27edf954402002da7401195f53b57
DIST urh-2.2.0.tar.gz 5433935 BLAKE2B 5fc4c868e506b298bcf1f20d9ac03e083b57fa3e5fbfc6d572c4b90bc117e43b7eb25bdd66cf6dc7967c46fcffe8f6b69d082100a1320bc87625fc22d239b360 SHA512 4ed6f5fc9cfa845c49cbe2f06eb0ed141785b2c1de6a45402479cfa1c4d853e6fd1c5fa058f26320392eb2cff07ba5284318f07de2f9e08050f7b6309a8f75b5

View file

@ -1,37 +0,0 @@
# 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
)
}

View file

@ -1,37 +0,0 @@
# 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
)
}

View file

@ -1,37 +0,0 @@
# 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
)
}

View file

@ -1,38 +0,0 @@
# 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
)
}

View file

@ -24,7 +24,7 @@ DEPEND="${PYTHON_DEPS}
rtlsdr? ( net-wireless/rtl-sdr:= )
uhd? ( net-wireless/uhd:= )"
RDEPEND="${DEPEND}
dev-python/PyQt5[${PYTHON_USEDEP}]
dev-python/PyQt5[${PYTHON_USEDEP},testlib]
net-wireless/gr-osmosdr"
python_configure_all() {