summaryrefslogtreecommitdiff
path: root/net-analyzer/arping
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2025-02-24 19:24:56 +0000
committerV3n3RiX <venerix@koprulu.sector>2025-02-24 19:24:56 +0000
commitd4653056cc74d97f24bef0d56b4ebe11c53c8b76 (patch)
tree5d4be0715302fad2089468027fadaa0372afd1d1 /net-analyzer/arping
parent575bcb9220287a6f0d2577db1fd9fe55d9d8b745 (diff)
gentoo auto-resync : 24:02:2025 - 19:24:56
Diffstat (limited to 'net-analyzer/arping')
-rw-r--r--net-analyzer/arping/Manifest1
-rw-r--r--net-analyzer/arping/files/arping-2.23-configure.ac-seccomp-disable.patch31
2 files changed, 0 insertions, 32 deletions
diff --git a/net-analyzer/arping/Manifest b/net-analyzer/arping/Manifest
index 2422504f707e..d6bc3b1637a6 100644
--- a/net-analyzer/arping/Manifest
+++ b/net-analyzer/arping/Manifest
@@ -1,4 +1,3 @@
-AUX arping-2.23-configure.ac-seccomp-disable.patch 1282 BLAKE2B 8a5a4d2b98ee89c667a33349f327fdd65dfc97aa476376e4a2fa9a92d117dd28d9a4e9a70e8f1b1a5277e6addac3e9fc197edccbc4effe826bef54746b8b5256 SHA512 9bce555c0390bbea73096a0b00fd3eabfb5a9aa78cd3daef63c3c03118a9c7b9295f8c06b33c2a4f86c28b572f1c1422c60c7fb6e4e958271cce9eb4e11bc903
DIST arping-2.25.tar.gz 62032 BLAKE2B a7b5bdfb693ee31781509584b4a0363e856d8134cebe1119fee974a57c399f1128a306b85e3f3669d4fe8f7031dfb87b9cfcc2f8df76b6f969310a12460363ad SHA512 7cfc1ed73bd7621911f9b1b0ad23680c7dde6f8674a0223e6341dc6e40c7d49bb293bc519e9e9de8abaa9209ad7fedad902901235f87b8d21395f3396739b922
EBUILD arping-2.25.ebuild 1320 BLAKE2B c9d8a5be96ee9e9444d77671ef3ff5df46b0046b256d25275e2f96f1c2d96a0f193cc5433a949cb83e5305cae7dcaed7f15eac84e49e186bb933b9701e4f1cfc SHA512 098b455f1b0a6f12bf1e9a93b66de8e19a1c5b0c8566cbac4f967032721567623f769147cf66df5f25dfa398eb767bff4f46876c4a0ff3679df12793d78777c4
EBUILD arping-9999.ebuild 1326 BLAKE2B 5b4fc5d8585fd9bde201627a903b7976c008ec8088081285cc13e548400ff019def07172e4e054545aff97752fa6d1e83b53d46744825f8496a39d94b99396dd SHA512 ffaf5525939e19bd0cfef9d96103095122f84e24eb94a4667ecfc3077bc879d7030cddeecc4a196734848f008ece0b5abff3256e9406cecf16425bc540120a25
diff --git a/net-analyzer/arping/files/arping-2.23-configure.ac-seccomp-disable.patch b/net-analyzer/arping/files/arping-2.23-configure.ac-seccomp-disable.patch
deleted file mode 100644
index 53b59da1a961..000000000000
--- a/net-analyzer/arping/files/arping-2.23-configure.ac-seccomp-disable.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-https://github.com/ThomasHabets/arping/pull/51
-
-From 47622ccc97591f55899f8fff325af241b89df09f Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Mon, 16 May 2022 06:24:27 +0000
-Subject: [PATCH] configure.ac: make --disable-seccomp work
-
-The first branch ("[action-if-given]") is taken even if --disable-seccomp
-is passed. So, in that branch, check whether the user disabled it or not.
-
-Without this, we'd get a failure when seccomp is detected but we want
-to disable it:
-```
-./configure --disable-seccomp
-[...]
-checking for library containing clock_gettime... none required
-configure: error: --enable-seccomp given but seccomp libraries not present
-```
-
-Signed-off-by: Sam James <sam@gentoo.org>
---- a/configure.ac
-+++ b/configure.ac
-@@ -35,7 +35,7 @@ AC_CHECK_LIB([pcap], [pcap_open_live], ,[AC_MSG_ERROR([libpcap not found])])
- AC_SEARCH_LIBS([clock_gettime], [rt])
-
- AC_ARG_ENABLE([seccomp], [Enable seccomp priv drops by default (-z to turn on, -Z for off)], [
-- if test "$ac_cv_lib_seccomp_seccomp_init" = "no"; then
-+ if test x"$enableval" != x"no" && test "$ac_cv_lib_seccomp_seccomp_init" = "no"; then
- AC_MSG_ERROR([--enable-seccomp given but seccomp libraries not present])
- fi
- AC_DEFINE([DEFAULT_SECCOMP], [1], [Enable seccomp by default])