wifitap: 0.4.2 bump

This commit is contained in:
blshkv 2019-05-22 23:46:35 +08:00
parent efe651d5b2
commit b0b5f3d5c8
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
3 changed files with 35 additions and 4 deletions

View file

@ -1 +1,2 @@
DIST wifitap-0.4.1.tar.gz 13696 SHA256 81c2d1223152a27897544b2e6a26429d720eecade51e0e203a47a020ccad4154 SHA512 7092116ca2823295b93ad6757f6c8cdf1c9a3614c2f00037ed7ab2516211580da748f766800e7460957251a464473640f1df128048e3951977486b15b744fec5 WHIRLPOOL b189a95a8e91ca55b251fe9d5229c501caa7a6908cc523110675491de888cd54e5b6b967d8f5d76b740eb53c607feb24aa8bbc7dd9e52a6c091ce972266f5e30
DIST wifitap-0.4.1.tar.gz 13696 BLAKE2B b1e23aec4860780306e5869e6587f6e80ec472d43e3aa8445fb60c88701e3d878bb1ee43bdc2de0d8d9dd03cb6c324a3cf6e6d3e7c7207fc0e7641adfbc20e4e SHA512 7092116ca2823295b93ad6757f6c8cdf1c9a3614c2f00037ed7ab2516211580da748f766800e7460957251a464473640f1df128048e3951977486b15b744fec5
DIST wifitap-0.4.2.tar.gz 14139 BLAKE2B 6c947215c4b09b2fe19a45c5e7d08a6e3d121c86c02eb7f61a0c893a4c3f974c381ee23261768ee8e513b7ffd272272ca1781f009663d3f82b1a0a198f07f3ef SHA512 e8a110bdc8eef91313923d4fc9032cef13be78699bc65aacd56e76b09a923d988a62f69d1f9d7767d7189c5d05737cde3c2250da0bc815c75df6a0fa5c4e10ff

View file

@ -1,6 +1,5 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=6
PYTHON_COMPAT=( python2_7 )
@ -22,7 +21,6 @@ DEPEND="net-analyzer/scapy
dev-python/gnuplot-py
dev-python/pyx"
src_install() {
exeinto /usr/bin
newexe wifitap.py wifitap

View file

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1 multilib
DESCRIPTION="A wireless tool to do direct connection to client without passing through an AP"
HOMEPAGE="http://sid.rstack.org/index.php/Wifitap_EN"
SHA="f7ac906855cadb1c5a0a619d1e9e924802a9d6c6"
SRC_URI="https://github.com/s0lst1c3/wifitap/archive/${SHA}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}"/"${PN}-${SHA}"
DEPEND="net-analyzer/scapy"
src_install() {
python_newscript wifiarp.py wifiarp
python_newscript wifidns.py wifidns
python_newscript wifiping.py wifiping
python_newscript wifitap.py wifitap
# also install util.py, required by all scripts
python_domodule utils.py
dodoc AUTHORS README.md Changelog
}