diff options
author | Milan P. Stanić <mps@arvanta.net> | 2019-10-04 20:16:28 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-04 19:39:56 +0000 |
commit | 552c3620773db0fb6a4d1e714eaa49b6a16de052 (patch) | |
tree | a2e588daf80779d0f0b604154ed20b832bd8905a /main | |
parent | 77dbba9546b1981f3e1d73843392a401e21cba44 (diff) | |
download | aports-552c3620773db0fb6a4d1e714eaa49b6a16de052.tar.bz2 aports-552c3620773db0fb6a4d1e714eaa49b6a16de052.tar.xz |
main/tcpdump: upgrade to 4.9.3
new upstream release with a lot of secfixes
add list of fixed CVE's
add comment why check is disabled
remove prepare(), not needed in this version
remove empty depends variable
Closes !282
Diffstat (limited to 'main')
-rw-r--r-- | main/tcpdump/APKBUILD | 43 |
1 files changed, 33 insertions, 10 deletions
diff --git a/main/tcpdump/APKBUILD b/main/tcpdump/APKBUILD index aa29f90dc8..944fae9fd9 100644 --- a/main/tcpdump/APKBUILD +++ b/main/tcpdump/APKBUILD @@ -1,18 +1,45 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=tcpdump -pkgver=4.9.2 -pkgrel=4 +pkgver=4.9.3 +pkgrel=0 pkgdesc="A tool for network monitoring and data acquisition" url="http://www.tcpdump.org" arch="all" license="BSD-3-Clause" -depends="" +options="!check" # fail on ppc64le makedepends="libpcap-dev openssl-dev perl" subpackages="$pkgname-doc" source="http://www.$pkgname.org/release/$pkgname-$pkgver.tar.gz" -options="!check" # secfixes: +# 4.9.3-r0: +# - CVE-2017-16808 (AoE) +# - CVE-2018-14468 (FrameRelay) +# - CVE-2018-14469 (IKEv1) +# - CVE-2018-14470 (BABEL) +# - CVE-2018-14466 (AFS/RX) +# - CVE-2018-14461 (LDP) +# - CVE-2018-14462 (ICMP) +# - CVE-2018-14465 (RSVP) +# - CVE-2018-14881 (BGP) +# - CVE-2018-14464 (LMP) +# - CVE-2018-14463 (VRRP) +# - CVE-2018-14467 (BGP) +# - CVE-2018-10103 (SMB - partially fixed, but SMB printing disabled) +# - CVE-2018-10105 (SMB - too unreliably reproduced, SMB printing disabled) +# - CVE-2018-14880 (OSPF6) +# - CVE-2018-16451 (SMB) +# - CVE-2018-14882 (RPL) +# - CVE-2018-16227 (802.11) +# - CVE-2018-16229 (DCCP) +# - CVE-2018-16301 (was fixed in libpcap) +# - CVE-2018-16230 (BGP) +# - CVE-2018-16452 (SMB) +# - CVE-2018-16300 (BGP) +# - CVE-2018-16228 (HNCP) +# - CVE-2019-15166 (LMP) +# - CVE-2019-15167 (VRRP) +# - CVE-2018-14879 (tcpdump -V) # 4.9.0-r0: # - CVE-2016-7922 # - CVE-2016-7923 @@ -60,12 +87,8 @@ options="!check" builddir="$srcdir"/$pkgname-$pkgver -prepare() { - cd "$builddir" - update_config_sub -} -build () { +build() { cd "$builddir" ./configure \ --build=$CBUILD \ @@ -88,4 +111,4 @@ package() { rm -f "$pkgdir"/usr/sbin/tcpdump.4* } -sha512sums="e1bc19a5867d6e3628f3941bdf3ec831bf13784f1233ca1bccc46aac1702f47ee9357d7ff0ca62cddf211b3c8884488c21144cabddd92c861e32398cd8f7c44b tcpdump-4.9.2.tar.gz" +sha512sums="3aec673f78b996a4df884b1240e5d0a26a2ca81ee7aca8a2e6d50255bb53476e008a5ced4409e278a956710d8a4d31d85bbb800c9f1aab92b0b1046b59292a22 tcpdump-4.9.3.tar.gz" |