iputils: update to 20221126

This commit is contained in:
Juergen Daubert 2022-11-26 11:13:20 +01:00
parent 7de40ab326
commit 08c2056b24
3 changed files with 8 additions and 20 deletions

View File

@ -6,10 +6,4 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/clockdiff
-rwxr-xr-x root/root usr/sbin/ninfod
-rwxr-xr-x root/root usr/sbin/rarpd
-rwxr-xr-x root/root usr/sbin/rdisc
-rwxr-xr-x root/root usr/sbin/tracepath
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/cCrArCQ/3sl9BPbGryJKOynUrmJ71YerTuDGK++Hms7v8Ppwn4uZYnySgvL8eSnkSu47H5dTtXfH4a0TUtxTgY=
SHA256 (Pkgfile) = d67b3ee9da74475244fa1769aca2c2622e333dd349b3fb99813d02571a16cc60
SHA256 (.footprint) = de8587e29daaf6976b9d2a66b5818259af5e47b8605d6da4d5bd8a5ad2b0237e
SHA256 (iputils-20211215.tar.gz) = b6f67fc705490673ff4471d006221b4a2f1b1180b929d9fefd771352621ccedf
RWSE3ohX2g5d/bO2bKMmyFjXEinvAnOw7xuRs2f9a8e6gd5mpkPiLKh4xC7rpacCo01uTkyrrhf9vLA/0uP5ACElDJRRwgku0AY=
SHA256 (Pkgfile) = 7494f6f99e02aecda3fea3b0ec1dc56dbcf4bb597399d2e2fedd7b2d68a8ba79
SHA256 (.footprint) = 0c8f29166730785f2d01bfedbdba6ed8189dc8f471c9d1b24dae88e4375166eb
SHA256 (iputils-20221126.tar.gz) = 745ea711fe06d5c57d470d21acce3c3ab866eb6afb69379a16c6d60b89bd4311

View File

@ -4,10 +4,9 @@
# Depends on: libcap meson ninja openssl
name=iputils
version=20211215
version=20221126
release=1
source=(https://github.com/iputils/iputils/archive/$version/$name-$version.tar.gz)
#$name-man-$version.tar.xz)
build() {
meson setup build $name-$version \
@ -16,19 +15,14 @@ build() {
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D BUILD_RARPD=true \
-D BUILD_MANS=false \
-D BUILD_MANS=false \
-D BUILD_RARPD=true
-D BUILD_MANS=false
meson compile -C build -j ${JOBS:-1}
install -d $PKG/{{sbin,bin},usr/{bin,sbin,share/man/man8}}
install -d $PKG/{{sbin,bin},usr/{bin,sbin}}
install build/ping/ping $PKG/bin/
install build/arping $PKG/sbin/
install build/{tracepath,clockdiff,rdisc,rarpd} $PKG/usr/sbin/
install build/ninfod/ninfod $PKG/usr/sbin/
#install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
install build/{tracepath,clockdiff} $PKG/usr/sbin/
chmod u+s $PKG/bin/ping
}