[notify] iputils: updated to s20180629

ping6 and tracepath6 have been removed. ping and tracepath now works
with ipv6 addresses.
This commit is contained in:
Fredrik Rinnestam 2018-10-21 19:09:21 +02:00
parent e6118bb5c4
commit 1f472398ba
3 changed files with 14 additions and 17 deletions

View File

@ -1,6 +1,5 @@
drwxr-xr-x root/root bin/
-rwsr-xr-x root/root bin/ping
-rwsr-xr-x root/root bin/ping6
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/arping
drwxr-xr-x root/root usr/
@ -11,14 +10,12 @@ drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/rarpd
-rwxr-xr-x root/root usr/sbin/rdisc
-rwxr-xr-x root/root usr/sbin/tracepath
-rwxr-xr-x root/root usr/sbin/tracepath6
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/arping.8.gz
-rw-r--r-- root/root usr/share/man/man8/clockdiff.8.gz
-rw-r--r-- root/root usr/share/man/man8/ping.8.gz
lrwxrwxrwx root/root usr/share/man/man8/ping6.8.gz -> ping.8.gz
-rw-r--r-- root/root usr/share/man/man8/rarpd.8.gz
-rw-r--r-- root/root usr/share/man/man8/rdisc.8.gz
-rw-r--r-- root/root usr/share/man/man8/tracepath.8.gz

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVequUSjZeJy/X/kzhBpubRU6SypXaEoZgpbNe3WiiL3rcI4/qkjgTjvKmW6ALVFMsByHhrGihCN1Iu33b2Z5a0eQI=
SHA256 (Pkgfile) = 7af15135d16e66937bf05b2ee75e1a8fcc08c3fce82832222a57f3af10dc1949
SHA256 (.footprint) = caf1d940e8efcf33ca090b19bc19db73ac87077b6712c55b1055496891ecf821
SHA256 (iputils-s20151218.tar.bz2) = 549f58d71951e52b46595829134d4e330642f522f50026917fadc349a54825a1
SHA256 (iputils-man-s20151218.tar.xz) = 9eb8e926b5b063b0649656a0b52d1b50516b63749c57fcd0333ea51674121972
RWRJc1FUaeVeqmXBwGZ8fNzjNaFPtDADFZhYco7lkZPEemIAYDaKMz8Cl7SjS8W/K3BtExu7PlxYPzpPbxmjrE0KXIlu0z9ixQQ=
SHA256 (Pkgfile) = 875ac45d9f16ced7e2a0e27b837bb5e422846e9c8e7bfcf2a7e74d8d28232264
SHA256 (.footprint) = 05e349336245cd86102f102ffaa59776b15406264cb25e9063bdbe5c90412507
SHA256 (iputils-s20180629.tar.gz) = da14105291dd491f28ea91ade854ed10aee8ba019641c80eed233de3908be7c5
SHA256 (iputils-man-s20180629.tar.xz) = efe04c8c3240d9d4caa8314f01f9850f76677d78b5aca48eb0b6b6bed55493ca

View File

@ -1,24 +1,24 @@
# Description: Basic networking applet
# URL: http://www.linuxfoundation.org/collaborate/workgroups/networking/iputils
# Description: Basic networking utilities
# URL: https://github.com/iputils/iputils
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libcap openssl
name=iputils
version=s20151218
release=2
source=(http://www.skbuff.net/iputils/$name-$version.tar.bz2
version=s20180629
release=1
source=(https://github.com/iputils/iputils/archive/$version/$name-$version.tar.gz
http://crux.nu/files/distfiles/$name-man-$version.tar.xz)
build() {
cd $name-$version
make USE_GCRYPT=no USE_GNUTLS=no CCOPTOPT="$CFLAGS"
make USE_IDN=no USE_GCRYPT=no USE_GNUTLS=no CCOPTOPT="$CFLAGS"
install -d $PKG/{{s,}bin,usr/{bin,sbin,share/man/man8}}
install ping{,6} $PKG/bin/
install ping $PKG/bin/
install arping $PKG/sbin/
install tracepath{,6} clockdiff rarpd rdisc $PKG/usr/sbin/
install tracepath clockdiff rarpd rdisc $PKG/usr/sbin/
install traceroute6 $PKG/usr/bin/
cp -d $SRC/$name-man-$version/* $PKG/usr/share/man/man8
chmod u+s $PKG/bin/ping{,6} $PKG/usr/bin/traceroute6
chmod u+s $PKG/bin/ping $PKG/usr/bin/traceroute6
}