From 793d60e5fa513b9f2f55f684470120d9a4b26103 Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Thu, 29 Sep 2016 13:38:56 +0800 Subject: scapy: upgrade to 2.3.2 * update the SRC_URI since it's been moved from bitbucket to github. * add ptest support Signed-off-by: Jackie Huang Signed-off-by: Armin Kuster --- recipes-security/scapy/scapy/run-ptest | 4 ++++ recipes-security/scapy/scapy_2.3.1.bb | 17 ----------------- recipes-security/scapy/scapy_2.3.2.bb | 24 ++++++++++++++++++++++++ 3 files changed, 28 insertions(+), 17 deletions(-) create mode 100755 recipes-security/scapy/scapy/run-ptest delete mode 100644 recipes-security/scapy/scapy_2.3.1.bb create mode 100644 recipes-security/scapy/scapy_2.3.2.bb diff --git a/recipes-security/scapy/scapy/run-ptest b/recipes-security/scapy/scapy/run-ptest new file mode 100755 index 0000000..91b29f9 --- /dev/null +++ b/recipes-security/scapy/scapy/run-ptest @@ -0,0 +1,4 @@ +#!/bin/sh +UTscapy -t regression.uts -f text -l -C \ + -o @PTEST_PATH@/scapy_ptest_$(date +%Y%m%d-%H%M%S).log \ + 2>&1 | sed -e 's/^passed None/PASS:/' -e 's/^failed None/FAIL:/' diff --git a/recipes-security/scapy/scapy_2.3.1.bb b/recipes-security/scapy/scapy_2.3.1.bb deleted file mode 100644 index d8c731b..0000000 --- a/recipes-security/scapy/scapy_2.3.1.bb +++ /dev/null @@ -1,17 +0,0 @@ -SUMMARY = "Network scanning and manipulation tool" -DESCRIPTION = "Scapy is a powerful interactive packet manipulation program. It is able to forge or decode packets of a wide number of protocols, send them on the wire, capture them, match requests and replies, and much more. It can easily handle most classical tasks like scanning, tracerouting, probing, unit tests, attacks or network discovery (it can replace hping, 85% of nmap, arpspoof, arp-sk, arping, tcpdump, tethereal, p0f, etc.). It also performs very well at a lot of other specific tasks that most other tools can't handle, like sending invalid frames, injecting your own 802.11 frames, combining technics (VLAN hopping+ARP cache poisoning, VOIP decoding on WEP encrypted channel, ...), etc." -SECTION = "security" -LICENSE = "GPLv2" - -LIC_FILES_CHKSUM = "file://bin/scapy;beginline=9;endline=13;md5=1d5249872cc54cd4ca3d3879262d0c69" - -SRC_URI = "https://bitbucket.org/secdev/${PN}/downloads/${BP}.zip" - -SRC_URI[md5sum] = "a30d828e59801d1d092219b349f1da9e" -SRC_URI[sha256sum] = "8972c02e39a826a10c02c2bdd5025f7251dce9589c57befd9bb55c65f02e4934" - -inherit setuptools - -RDEPENDS_${PN} = "tcpdump python-subprocess python-compression python-netclient \ - python-netserver python-pydoc python-pkgutil python-shell \ - python-threading python-numbers python-pycrypto" diff --git a/recipes-security/scapy/scapy_2.3.2.bb b/recipes-security/scapy/scapy_2.3.2.bb new file mode 100644 index 0000000..0a42ad9 --- /dev/null +++ b/recipes-security/scapy/scapy_2.3.2.bb @@ -0,0 +1,24 @@ +SUMMARY = "Network scanning and manipulation tool" +DESCRIPTION = "Scapy is a powerful interactive packet manipulation program. It is able to forge or decode packets of a wide number of protocols, send them on the wire, capture them, match requests and replies, and much more. It can easily handle most classical tasks like scanning, tracerouting, probing, unit tests, attacks or network discovery (it can replace hping, 85% of nmap, arpspoof, arp-sk, arping, tcpdump, tethereal, p0f, etc.). It also performs very well at a lot of other specific tasks that most other tools can't handle, like sending invalid frames, injecting your own 802.11 frames, combining technics (VLAN hopping+ARP cache poisoning, VOIP decoding on WEP encrypted channel, ...), etc." +SECTION = "security" +LICENSE = "GPLv2" + +LIC_FILES_CHKSUM = "file://bin/scapy;beginline=9;endline=13;md5=1d5249872cc54cd4ca3d3879262d0c69" + +SRC_URI = "https://github.com/secdev/${BPN}/archive/v${PV}.tar.gz;downloadfilename=${BP}.tar.gz \ + file://run-ptest \ +" + +SRC_URI[md5sum] = "00f11df3d6b46fe6ac306efd757486f9" +SRC_URI[sha256sum] = "1b8a86d687feb8ed01114c0c016b428674cbfec04e3eb6f5249a018c427c4f6a" + +inherit setuptools ptest + +do_install_ptest() { + install -m 0644 ${S}/test/regression.uts ${D}${PTEST_PATH} + sed -i 's,@PTEST_PATH@,${PTEST_PATH},' ${D}${PTEST_PATH}/run-ptest +} + +RDEPENDS_${PN} = "tcpdump python-subprocess python-compression python-netclient \ + python-netserver python-pydoc python-pkgutil python-shell \ + python-threading python-numbers python-pycrypto" -- cgit v1.2.3-54-g00ecf