git: 5ced8583d51c - main - security/wpa_supplicant-devel: Update to latest GH commit

From: Cy Schubert <cy_at_FreeBSD.org>
Date: Mon, 29 Nov 2021 20:56:21 UTC
The branch main has been updated by cy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5ced8583d51c03dc2af194285d11343c4ad6de94

commit 5ced8583d51c03dc2af194285d11343c4ad6de94
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2021-11-29 20:53:16 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2021-11-29 20:55:21 +0000

    security/wpa_supplicant-devel: Update to latest GH commit
    
    Update to the latest w1.fi commit, proxied through my GH account.
---
 security/wpa_supplicant-devel/Makefile                     |  4 ++--
 security/wpa_supplicant-devel/distinfo                     |  6 +++---
 .../files/patch-src_radius_radius__client.c                | 12 ------------
 .../wpa_supplicant-devel/files/patch-src_utils_os__unix.c  | 14 --------------
 4 files changed, 5 insertions(+), 31 deletions(-)

diff --git a/security/wpa_supplicant-devel/Makefile b/security/wpa_supplicant-devel/Makefile
index 57a9110f7ede..40613dbf082d 100644
--- a/security/wpa_supplicant-devel/Makefile
+++ b/security/wpa_supplicant-devel/Makefile
@@ -10,8 +10,8 @@ COMMENT=	Supplicant (client) for WPA/802.1x protocols
 USE_GITHUB=	yes
 GH_ACCOUNT=	cschuber
 GH_PROJECT=	hostap
-GH_TAGNAME=	b4f7506ff
-COMMIT_DATE=	2021.07.14
+GH_TAGNAME=	14ab4a816
+COMMIT_DATE=	2021.11.26
 
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/README
diff --git a/security/wpa_supplicant-devel/distinfo b/security/wpa_supplicant-devel/distinfo
index 81cfcb7a576e..2a0c1e729654 100644
--- a/security/wpa_supplicant-devel/distinfo
+++ b/security/wpa_supplicant-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1626900055
-SHA256 (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 53d221682bd21cf6cc2ec9fa2012e186754960c3aaee8b94262a1cf4076a165c
-SIZE (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 4789787
+TIMESTAMP = 1638218710
+SHA256 (cschuber-hostap-2021.11.26-14ab4a816_GH0.tar.gz) = e4ff65220bef6724448066f95ee0e76e8952d3ef8852b5338e431cfa91dd0244
+SIZE (cschuber-hostap-2021.11.26-14ab4a816_GH0.tar.gz) = 4825757
diff --git a/security/wpa_supplicant-devel/files/patch-src_radius_radius__client.c b/security/wpa_supplicant-devel/files/patch-src_radius_radius__client.c
deleted file mode 100644
index de86947f57b2..000000000000
--- a/security/wpa_supplicant-devel/files/patch-src_radius_radius__client.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/radius/radius_client.c.orig	2019-08-07 06:25:25.000000000 -0700
-+++ src/radius/radius_client.c	2021-01-11 08:35:20.860835000 -0800
-@@ -814,6 +814,9 @@
- {
- 	struct radius_client_data *radius = eloop_ctx;
- 	struct hostapd_radius_servers *conf = radius->conf;
-+#if defined(__clang_major__) && __clang_major__ >= 11
-+#pragma GCC diagnostic ignored "-Wvoid-pointer-to-enum-cast"
-+#endif
- 	RadiusType msg_type = (RadiusType) sock_ctx;
- 	int len, roundtrip;
- 	unsigned char buf[3000];
diff --git a/security/wpa_supplicant-devel/files/patch-src_utils_os__unix.c b/security/wpa_supplicant-devel/files/patch-src_utils_os__unix.c
deleted file mode 100644
index cd4f24b681c3..000000000000
--- a/security/wpa_supplicant-devel/files/patch-src_utils_os__unix.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/utils/os_unix.c.orig	2021-06-02 14:11:18.000000000 -0700
-+++ src/utils/os_unix.c	2021-06-07 16:07:39.152547000 -0700
-@@ -464,9 +464,9 @@
- int os_fdatasync(FILE *stream)
- {
- 	if (!fflush(stream)) {
--#ifdef __linux__
-+#if defined __FreeBSD__ || defined __linux__
- 		return fdatasync(fileno(stream));
--#else /* !__linux__ */
-+#else /* !__linux__ && !__FreeBSD__ */
- #ifdef F_FULLFSYNC
- 		/* OS X does not implement fdatasync(). */
- 		return fcntl(fileno(stream), F_FULLFSYNC);