scapy-http: remove, use the latest scapy instead

This commit is contained in:
blshkv 2019-07-20 08:47:39 +08:00
parent ddd264e599
commit 5748d83fe7
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 0 additions and 33 deletions

View file

@ -1 +0,0 @@
DIST scapy-http-1.8.tar.gz 3331 BLAKE2B ae2a9cf86875bb76570eb5e3066961baf41d3694efe798f68ced064cfa38e6be320fac9c2ebe69abd24cb0d8212bbe5d52ff94fb18480e80c0fdf37cf3c0cf51 SHA512 3f5ea802d776cdb4933ad0e15fd166e25a57bec1930a010364406669d0236279a468b65397b5113d535788a1ea118a190ad04a421325490320e8f98c26786c42

View file

@ -1,32 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="HTTP-layer support for Scapy"
HOMEPAGE="https://github.com/invernizzi/scapy-http"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="net-analyzer/scapy[$PYTHON_USEDEP]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
# $(python_gen_cond_dep 'dev-python/kamene[${PYTHON_USEDEP}]' python3_{4,5,6})
#https://github.com/invernizzi/scapy-http/issues/25
my_install(){
insinto $(python_get_sitedir)/scapy/layers
doins scapy_http/http.py
}
src_install(){
python_foreach_impl my_install
}