summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorFlorian Franzmann2021-05-28 20:19:37 +0200
committerFlorian Franzmann2021-06-01 00:44:21 +0200
commitc1cf270b140da6f082f1cc35fe866f3c65a3f08c (patch)
tree2a3f21a6b0babae8e1362ec11b31864f5b7f5e04 /net
parentb969667fe8bf26dfaa3d6d969adf121bc8c6d3f9 (diff)
net/iputils-base: deprecate in favour of iputils
Diffstat (limited to 'net')
-rwxr-xr-xnet/iputils-base/BUILD6
-rwxr-xr-xnet/iputils-base/DEPENDS4
-rwxr-xr-xnet/iputils-base/DETAILS44
-rwxr-xr-xnet/iputils-base/DOWNLOAD1
-rw-r--r--net/iputils-base/HISTORY5
-rwxr-xr-xnet/iputils-base/INSTALL64
-rwxr-xr-xnet/iputils-base/PRE_BUILD1
-rwxr-xr-xnet/iputils-base/TRIGGERS1
8 files changed, 18 insertions, 108 deletions
diff --git a/net/iputils-base/BUILD b/net/iputils-base/BUILD
index 039f63c800..27ba77ddaf 100755
--- a/net/iputils-base/BUILD
+++ b/net/iputils-base/BUILD
@@ -1,5 +1 @@
-make &&
-
-if is_depends_enabled $SPELL opensp ; then
- make man
-fi
+true
diff --git a/net/iputils-base/DEPENDS b/net/iputils-base/DEPENDS
index b78b3c964a..53a495f3bd 100755
--- a/net/iputils-base/DEPENDS
+++ b/net/iputils-base/DEPENDS
@@ -1,3 +1 @@
-optional_depends opensp '' '' 'for docs and manpages' &&
-optional_depends sgmlspm '' '' 'for docs and manpages' &&
-optional_depends docbook-sgml-dtd '' '' 'for docs and manpages'
+depends iputils
diff --git a/net/iputils-base/DETAILS b/net/iputils-base/DETAILS
index 4e0514412c..75bd8574b7 100755
--- a/net/iputils-base/DETAILS
+++ b/net/iputils-base/DETAILS
@@ -1,37 +1,7 @@
- SPELL=iputils-base
- VERSION=20151218
- SOURCE_HASH=sha512:4bf0eed0ae5603e872afb0e09be039df3822a7723e8cbb8cbe578d69d8c457ffac9bdbe2eb17b32c95968e5e4ad6204af955617482c5701671f0f476b560b65c
- SOURCE=iputils-s${VERSION}.tar.bz2
-SOURCE_DIRECTORY=${BUILD_DIRECTORY}/iputils-s${VERSION}
- SOURCE_URL[0]=http://www.skbuff.net/iputils/${SOURCE}
- WEB_SITE=http://www.linuxfoundation.org/collaborate/workgroups/networking/iputils
- ENTERED=20030509
- LICENSE[0]=GPL
- DOCS="README"
- KEYWORDS="net"
- SHORT="Set of small useful utilities for Linux networking"
-cat << EOF
-Set of small useful utilities for Linux networking:
-
-ping - sends ICMP ECHO_REQUEST to network hosts in order
-to test if the host is reachable via the network.
-
-ping6 - IPv6 version of ping
-
-arping - send ARP REQUEST to neighbor hosts
-
-clockdiff - measures the clock difference between hosts
-
-rarpd - answer RARP REQUESTs
-
-tracepath - traces path to a network host discovering MTU along this path
-
-tracepath6 - IPv6 version of tracepath
-
-traceroute6 - IPv6 version of traceroute
-
-tftpd - Trivial File Transfer Protocol Server
-
-rdisc - Network router discovery daemon
-
-EOF
+ SPELL=iputils-base
+ VERSION=0
+ PATCHLEVEL=9999
+ SHORT="deprecated"
+ cat << EOF
+ deprecated spell [replaced by iputils]
+ EOF
diff --git a/net/iputils-base/DOWNLOAD b/net/iputils-base/DOWNLOAD
new file mode 100755
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/net/iputils-base/DOWNLOAD
@@ -0,0 +1 @@
+true
diff --git a/net/iputils-base/HISTORY b/net/iputils-base/HISTORY
index 6baa2a1b25..d6d9d865b6 100644
--- a/net/iputils-base/HISTORY
+++ b/net/iputils-base/HISTORY
@@ -1,3 +1,8 @@
+2021-05-28 Florian Franzmann <bwlf@bandrate.org>
+ * spell deprecated [unified upstream distfile]
+ * PATCHLEVEL=9999
+ * DETAILS: version 0
+
2019-07-05 Treeve Jelbert <treeve@sourcemage.org>
* DETAILS: version 20151218
* CONFLICTS: add tftp-hpa
diff --git a/net/iputils-base/INSTALL b/net/iputils-base/INSTALL
index da5a4e1c73..27ba77ddaf 100755
--- a/net/iputils-base/INSTALL
+++ b/net/iputils-base/INSTALL
@@ -1,63 +1 @@
-if [ "$IPUTILS_PING" == "y" ]; then
- install -m 4755 ping $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_PING6" == "y" ]; then
- install -m 4755 ping6 $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_ARPING" == "y" ]; then
- install -m 4755 arping $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_CDIFF" == "y" ]; then
- install -m 4755 clockdiff $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_RARPD" == "y" ]; then
- install -m 4755 rarpd $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_TPATH" == "y" ]; then
- install -m 4755 tracepath $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_TPATH6" == "y" ]; then
- install -m 4755 tracepath6 $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_TROUTE6" == "y" ]; then
- install -m 4755 traceroute6 $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_TFTPD" == "y" ]; then
- install -m 4755 tftpd $INSTALL_ROOT/usr/bin
-fi &&
-if [ "$IPUTILS_RDISC" == "y" ]; then
- install -m 4755 rdisc $INSTALL_ROOT/usr/bin
-fi &&
-
-if is_depends_enabled $SPELL opensp ; then
- if [ "$IPUTILS_PING" == "y" ]; then
- install -m 644 doc/ping.8 $INSTALL_ROOT/usr/share/man/man8/ping.8
- fi &&
- if [ "$IPUTILS_PING6" == "y" ]; then
- install -m 644 doc/ping.8 $INSTALL_ROOT/usr/share/man/man8/ping6.8
- fi &&
- if [ "$IPUTILS_ARPING" == "y" ]; then
- install -m 644 doc/arping.8 $INSTALL_ROOT/usr/share/man/man8/arping.8
- fi &&
- if [ "$IPUTILS_CDIFF" == "y" ]; then
- install -m 644 doc/clockdiff.8 $INSTALL_ROOT/usr/share/man/man8/clockdiff.8
- fi &&
- if [ "$IPUTILS_RARPD" == "y" ]; then
- install -m 644 doc/rarpd.8 $INSTALL_ROOT/usr/share/man/man8/rarpd.8
- fi &&
- if [ "$IPUTILS_TPATH" == "y" ]; then
- install -m 644 doc/tracepath.8 $INSTALL_ROOT/usr/share/man/man8/tracepath.8
- fi &&
- if [ "$IPUTILS_TPATH6" == "y" ]; then
- install -m 644 doc/tracepath.8 $INSTALL_ROOT/usr/share/man/man8/tracepath6.8
- fi &&
- if [ "$IPUTILS_TROUTE6" == "y" ]; then
- install -m 644 doc/traceroute6.8 $INSTALL_ROOT/usr/share/man/man8/traceroute6.8
- fi &&
- if [ "$IPUTILS_TFTP" == "y" ]; then
- install -m 644 doc/tftpd.8 $INSTALL_ROOT/usr/share/man/man8/tftpd.8
- fi &&
- if [ "$IPUTILS_RDISC" == "y" ]; then
- install -m 644 doc/rdisc.8 $INSTALL_ROOT/usr/share/man/man8/rdisc.8
- fi
-fi
+true
diff --git a/net/iputils-base/PRE_BUILD b/net/iputils-base/PRE_BUILD
new file mode 100755
index 0000000000..27ba77ddaf
--- /dev/null
+++ b/net/iputils-base/PRE_BUILD
@@ -0,0 +1 @@
+true
diff --git a/net/iputils-base/TRIGGERS b/net/iputils-base/TRIGGERS
new file mode 100755
index 0000000000..fadb1d1b5c
--- /dev/null
+++ b/net/iputils-base/TRIGGERS
@@ -0,0 +1 @@
+on_cast iputils-base dispel_self