summaryrefslogtreecommitdiff
path: root/opt/iputils
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/iputils
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/iputils')
-rw-r--r--opt/iputils/.footprint20
-rw-r--r--opt/iputils/.signature6
-rw-r--r--opt/iputils/MAKEPKG42
3 files changed, 68 insertions, 0 deletions
diff --git a/opt/iputils/.footprint b/opt/iputils/.footprint
new file mode 100644
index 0000000..857831e
--- /dev/null
+++ b/opt/iputils/.footprint
@@ -0,0 +1,20 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/arping
+-rwxr-xr-x root/root usr/bin/ping
+-rwxr-xr-x root/root usr/bin/tracepath
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/iputils/
+-rw-r--r-- root/root usr/share/iputils/arping.html
+-rw-r--r-- root/root usr/share/iputils/ping.html
+-rw-r--r-- root/root usr/share/iputils/tracepath.html
+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/ping.8.gz
+-rw-r--r-- root/root usr/share/man/man8/tracepath.8.gz
+drwxr-xr-x root/root var/
+drwxr-xr-x root/root var/lib/
+drwxr-xr-x root/root var/lib/pkg/
+drwxr-xr-x root/root var/lib/pkg/meta/
+-rw-r--r-- root/root var/lib/pkg/meta/iputils
diff --git a/opt/iputils/.signature b/opt/iputils/.signature
new file mode 100644
index 0000000..dac2a2e
--- /dev/null
+++ b/opt/iputils/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mH1lxNMQF9qcAiBtSm2Z4L8cmo/Fb/8UOBrKwQhRP4yZ4yDCMcQtwXMTR8Ea9vVgq6qnjvAexkW3qwpr7P2zVA0=
+
+SHA256 (MAKEPKG) = 2c5febb83897eb90c24cc28c527b26812ba12732a6e997078e034cd8c30a2452
+SHA256 (.footprint) = 71c4114fb6c41f92291c2a787f7c3d977dac0567da0773c8d9677a61f7124a40
+SHA256 (iputils-20250605.tar.xz) = 6f213700dbf96b5cc4499ca70cb15ecd69c09f405b06785bb4a1a10b572b6276
+SHA256 (iputils#20250605-1.pkg.tar.gz) = 3f8238cc0ee70060724a1e0bd5e4991b11b507b7517fecd41760a77ac00a5ebb
diff --git a/opt/iputils/MAKEPKG b/opt/iputils/MAKEPKG
new file mode 100644
index 0000000..348c1b2
--- /dev/null
+++ b/opt/iputils/MAKEPKG
@@ -0,0 +1,42 @@
+#!/bin/mkpkg
+# description: Network monitoring tools including ping
+# url: https://github.com/iputils/iputils
+
+name=iputils
+version=20250605
+release=1
+depends=(libcap2)
+capabilities=(
+ /usr/bin/ping:cap_net_raw+ep
+ /usr/bin/arping:cap_net_raw+ep
+)
+source=(https://github.com/iputils/iputils/releases/download/$version/$name-$version.tar.xz)
+
+sha256sums=(
+ "6f213700dbf96b5cc4499ca70cb15ecd69c09f405b06785bb4a1a10b572b6276"
+)
+
+build() {
+ cd $name-$version
+ meson setup build \
+ --prefix=/usr \
+ --buildtype=release \
+ -DUSE_CAP=true \
+ -DUSE_IDN=false \
+ -DUSE_GETTEXT=false \
+ -DBUILD_MANS=true \
+ -DBUILD_HTML_MANS=false \
+ -DBUILD_ARPING=true \
+ -DBUILD_CLOCKDIFF=false \
+ -DBUILD_PING=true \
+ -DBUILD_TRACEPATH=true
+ samu -C build
+ DESTDIR=$PKG samu -C build install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh