diff options
author | Jeroen Roovers <jer@gentoo.org> | 2019-08-07 06:59:38 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2019-08-07 07:01:11 +0200 |
commit | c937ed6d755e0989c8c42f0f5fda33a756821173 (patch) | |
tree | 4396e211c71d6fb74815267beb4fef031201eb05 /net-analyzer/scapy | |
parent | sys-apps/firejail: remove old (diff) | |
download | gentoo-c937ed6d755e0989c8c42f0f5fda33a756821173.tar.gz gentoo-c937ed6d755e0989c8c42f0f5fda33a756821173.tar.bz2 gentoo-c937ed6d755e0989c8c42f0f5fda33a756821173.zip |
net-analyzer/scapy: Version 2.4.3
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-analyzer/scapy')
-rw-r--r-- | net-analyzer/scapy/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/scapy/scapy-2.4.3.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/net-analyzer/scapy/Manifest b/net-analyzer/scapy/Manifest index 925fa7641d30..d77ce61a54e8 100644 --- a/net-analyzer/scapy/Manifest +++ b/net-analyzer/scapy/Manifest @@ -1,4 +1,5 @@ DIST scapy-2.3.2.tar.gz 1166056 BLAKE2B bce5f37bd833dc457089cdfebd2dc019c4f7bed636935b4a6b51a2cf7355f5761fadaa304e93c276daa2200c48ab0e1c0a08bd278e30dfea1faa01321a0b957e SHA512 6b15e102708d1bd0ca0c910e2d82416cd172634409f93c506542a7dc6b69ddc9c9afef6ec07929f70cc0f8f4c455cdc84d9b35bc2c5b72f79dd7e6785306dc7a DIST scapy-2.4.2.tar.gz 3330071 BLAKE2B a40074594cd561b33d04364fba743fa5fe741b06b2ad8f8f9ebe9dfb0b9a3bc4f641cd16d99a4ba070fc0763d7cfeb8d3ecd056f162d509070cdd57d55d6ad9c SHA512 980f708a849ae26edca3eb6618a41668818c5883bca699f347f47a8964b3ee44a6ceefe4a12cb7d5fe6c13f5cbe2b7547938e53139f4ec9e6ef384e30c9bb6db +DIST scapy-2.4.3.tar.gz 2969754 BLAKE2B 83ab6500dbc0424b728253661f03391d450f77b19c0059b8a605a19f48b4ddd7344743310a5cb7c741fcf750876ba125daf883d04714981ff81ef4db97519ae0 SHA512 579e3f326f90e10b2839aee805949e14ecab9431f360ef75e60080a971653e1f48a240d812b8ace77754b01b07a2ddb8533d1e6b18ee8804280bf9b2c237cede DIST scapy-2.4.3_rc3.tar.gz 2947420 BLAKE2B 43c9ffebfd87c6918c15dd403a58e85cb44f38c540fd28117a5586b2ad1f341ad793a5f6b2e5c1a8204e9c682c1ef6da3c20a313c0ba7f4ff3617ec674f5bb2d SHA512 ef0c6ef97868a3489eaa30acbd7eb203a61f311e50ecd9ec375fb05ae78ba5f33f854928440aa84dbd35e4178469c93a4f6073a33082572b133df93ee18000bd DIST scapy-2.4.3_rc4.tar.gz 2968572 BLAKE2B 31106a29541eec87e57614451edc792bf6d71c8fda3a31706ca0f5820b3e9d4c84ad1fab60fba8b4ee174ca887c9e5b060debee391a85387f1f5ff0077789089 SHA512 16cd9ececc56517941a1fb680574eac2823f1d72ba8eac861d3da991bcd74ba8a864da2a7336df6b825fadd68a21dc8a2c10fbc93c5cc646c9aef1b38f0fbb75 diff --git a/net-analyzer/scapy/scapy-2.4.3.ebuild b/net-analyzer/scapy/scapy-2.4.3.ebuild new file mode 100644 index 000000000000..ccaf35b48e6c --- /dev/null +++ b/net-analyzer/scapy/scapy-2.4.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{5,6,7} ) +inherit distutils-r1 readme.gentoo-r1 + +DESCRIPTION="A Python interactive packet manipulation program for mastering the network" +HOMEPAGE="https://scapy.net/ https://github.com/secdev/scapy" +SRC_URI="https://github.com/secdev/${PN}/archive/v${PV/_/}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RDEPEND=" + net-analyzer/tcpdump +" +S=${WORKDIR}/${P/_/} +DOC_CONTENTS=" +Scapy has optional support for the following packages: + + dev-python/cryptography + dev-python/gnuplot-py + dev-python/ipython + dev-python/pyx + media-gfx/graphviz + net-analyzer/tcpreplay + virtual/imagemagick-tools + + See also ""${EPREFIX}/usr/share/doc/${PF}/installation.rst"" +" + +src_prepare() { + echo ${PV/_/} > ${PN}/VERSION + distutils-r1_src_prepare +} + +src_install() { + distutils-r1_src_install + dodoc -r doc/${PN}/* + DISABLE_AUTOFORMATTING=plz readme.gentoo_create_doc +} |