From 64838fc07f3abe698e35c6e5ad510b1f433c07d6 Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Mon, 24 Oct 2022 14:49:16 +0800 Subject: tcpslice: upgrade 1.5 -> 1.6 Changelog: ========= - Call pcap_dump_close() on the output file. - Implement new flags in ./configure: --enable-instrument-functions, --without-libnids, --without-libosipparser2 and --without-libooh323c. - autoconf: Add the option to print functions and files names - Update config.{guess,sub}, timestamps 2022-01-09,2022-01-03 - configure: use pcap-config --static-pcap-only if available - Remove awk code from mkdep. - Refine the man page. - Refine the documentation files. Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj (cherry picked from commit 8e64d8f7afa26c7d2c4ac7ed23f6d48d639cfd39) Signed-off-by: Armin Kuster --- .../recipes-support/tcpdump/tcpslice_1.5.bb | 25 ---------------------- .../recipes-support/tcpdump/tcpslice_1.6.bb | 24 +++++++++++++++++++++ 2 files changed, 24 insertions(+), 25 deletions(-) delete mode 100644 meta-networking/recipes-support/tcpdump/tcpslice_1.5.bb create mode 100644 meta-networking/recipes-support/tcpdump/tcpslice_1.6.bb (limited to 'meta-networking/recipes-support') diff --git a/meta-networking/recipes-support/tcpdump/tcpslice_1.5.bb b/meta-networking/recipes-support/tcpdump/tcpslice_1.5.bb deleted file mode 100644 index 4909acdee9..0000000000 --- a/meta-networking/recipes-support/tcpdump/tcpslice_1.5.bb +++ /dev/null @@ -1,25 +0,0 @@ -SUMMARY = "tcpslice" -DESCRIPTION = "A tool for extracting parts of a tcpdump packet trace." -HOMEPAGE = "http://www.tcpdump.org/related.html" -SECTION = "net" - -LICENSE = "BSD-4-Clause" -LIC_FILES_CHKSUM = "file://tcpslice.c;endline=20;md5=99519e2e5234d1662a4ce16baa62c64e" - -SRC_URI = "http://www.tcpdump.org/release/${BP}.tar.gz \ - " -SRC_URI[md5sum] = "8907e60376e629f6e6ce2255988aaf47" -SRC_URI[sha256sum] = "f6935e3e7ca00ef50c515d062fddd410868467ec5b6d8f2eca12066f8d91dda2" - -UPSTREAM_CHECK_REGEX = "tcpslice-(?P\d+(\.\d+)+)\.tar" - -inherit autotools-brokensep pkgconfig - -DEPENDS = "libpcap" - -EXTRA_AUTORECONF += "--exclude=aclocal" - -do_install () { - install -d ${D}${sbindir} - install -m 0755 tcpslice ${D}${sbindir} -} diff --git a/meta-networking/recipes-support/tcpdump/tcpslice_1.6.bb b/meta-networking/recipes-support/tcpdump/tcpslice_1.6.bb new file mode 100644 index 0000000000..7128a23cd2 --- /dev/null +++ b/meta-networking/recipes-support/tcpdump/tcpslice_1.6.bb @@ -0,0 +1,24 @@ +SUMMARY = "tcpslice" +DESCRIPTION = "A tool for extracting parts of a tcpdump packet trace." +HOMEPAGE = "http://www.tcpdump.org/related.html" +SECTION = "net" + +LICENSE = "BSD-4-Clause" +LIC_FILES_CHKSUM = "file://tcpslice.c;endline=20;md5=99519e2e5234d1662a4ce16baa62c64e" + +SRC_URI = "http://www.tcpdump.org/release/${BP}.tar.gz \ + " +SRC_URI[sha256sum] = "60d23f00d4c485fef2dda9b12c2018af958df3a511238c45374733bbc1231920" + +UPSTREAM_CHECK_REGEX = "tcpslice-(?P\d+(\.\d+)+)\.tar" + +inherit autotools-brokensep pkgconfig + +DEPENDS = "libpcap" + +EXTRA_AUTORECONF += "--exclude=aclocal" + +do_install () { + install -d ${D}${sbindir} + install -m 0755 tcpslice ${D}${sbindir} +} -- cgit v1.2.3-54-g00ecf