From 2c9b8fbe41c04a94054b0540b54fcf2de0b79166 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 23 Mar 2024 07:01:01 +0000 Subject: gentoo auto-resync : 23:03:2024 - 07:01:01 --- net-analyzer/hydra/Manifest | 1 - .../hydra/files/hydra-9.4-implicit-func-decl.patch | 33 ---------------------- 2 files changed, 34 deletions(-) delete mode 100644 net-analyzer/hydra/files/hydra-9.4-implicit-func-decl.patch (limited to 'net-analyzer/hydra') diff --git a/net-analyzer/hydra/Manifest b/net-analyzer/hydra/Manifest index b0c4f78196bc..0341f84f4210 100644 --- a/net-analyzer/hydra/Manifest +++ b/net-analyzer/hydra/Manifest @@ -1,4 +1,3 @@ -AUX hydra-9.4-implicit-func-decl.patch 1325 BLAKE2B 55f9c8fed3dd32e7049cdc59e592901ee40442d7ec71a00a7214ce6bc0543077711da7481345b8b112be5a52102cf42967f3b432f600db5818aec8c936bf5ca4 SHA512 50d09d1c2a2698303bd051143437c3c582418129ba589c23488707b1fbe7cbb36ee8e6295d1c2c71cf4ea43d94d97326166e4ada2af5a2d82b94799d60e84b75 AUX hydra-9.5-no-clobber-fortify-source.patch 516 BLAKE2B 9e1ac9293ffad6aa7d7ac6b0f2363f81fedc9459b5a084dbb5ffadc6704ccfac602172e4f58386364c60742bb1aef91d0ddb0000b9a8b7683a1ba273100ed1e8 SHA512 371c5bf962550cd33077b73a6e6413f51b24968c2d99ed25629b3e2ff483fa96428677c00093169f7424f713abe2845808d1197330e9a46535f657769d0a4c8a DIST hydra-9.5.tar.gz 833798 BLAKE2B 848c5b34719c2db98b3a3bee1c47e0b2ebeea668f5c387f015c7079f800cf0607a8cb5accba25ef2e253deb44422d51cf6e012c313496942a47468e0503000e8 SHA512 a8fe42d175d184cdb82072f3a963b956d767fa908aaf1cbbc0746b6a67cfd37f8b5e3ecf9be82085a7f6c1ef57e91a8bf05bfeb41e96708899b6c8d7f05eee06 EBUILD hydra-9.5-r1.ebuild 3968 BLAKE2B 76ebe365f0371e55cdc34e85d79592d8c940ae1422e46a04518208b93c76dc44408324e517aed5bd794a26d28d63f45944e4f245d5bfedaaffd738173c682c7c SHA512 6e59e1c2b145706e677855a8b8b73e55fff3c860d58096e4ff9cfe952cc047a041b79f90d3dd60d9f738008af358458faf7eaab9fe43fba60944082c948e3338 diff --git a/net-analyzer/hydra/files/hydra-9.4-implicit-func-decl.patch b/net-analyzer/hydra/files/hydra-9.4-implicit-func-decl.patch deleted file mode 100644 index bf4dd61e33ce..000000000000 --- a/net-analyzer/hydra/files/hydra-9.4-implicit-func-decl.patch +++ /dev/null @@ -1,33 +0,0 @@ -https://github.com/vanhauser-thc/thc-hydra/pull/786 - -From 613bd02264dcc989eeeb77b83603d4c2f48f0bbc Mon Sep 17 00:00:00 2001 -From: Sam James -Date: Fri, 9 Sep 2022 04:32:05 +0100 -Subject: [PATCH] Makefile.am: add -D_GNU_SOURCE for strcasestr -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -strcasestr is not a standard function and per -the man page, needs -D_GNU_SOURCE to be visible. - -Fixes a build error: -``` -hydra-rtsp.c:20:7: error: implicit declaration of function ‘strcasestr’; did you mean ‘strcasecmp’? [-Werror=implicit-function-declaration] - 20 | if (strcasestr(s, "401 Unauthorized") != NULL) { - | ^~~~~~~~~~ - | strcasecmp -``` - -Signed-off-by: Sam James ---- a/Makefile.am -+++ b/Makefile.am -@@ -5,6 +5,7 @@ WARN_CLANG=-Wformat-nonliteral -Wstrncat-size -Wformat-security -Wsign-conversio - WARN_GCC=-Wformat=2 -Wformat-overflow=2 -Wformat-nonliteral -Wformat-truncation=2 -Wnull-dereference -Wstrict-overflow=2 -Wstringop-overflow=4 -Walloca-larger-than=4096 -Wtype-limits -Wconversion -Wtrampolines -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -fno-common -Wcast-align - CFLAGS ?= -g - OPTS=-I. -O3 $(CFLAGS) -fcommon -+CPPFLAGS += -D_GNU_SOURCE - # -Wall -g -pedantic - LIBS=-lm - DESTDIR ?= - -- cgit v1.2.3