git: b51ee23db472 - main - net/hostapd-devel: Update to the latest GH commit
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Nov 2021 20:56:22 UTC
The branch main has been updated by cy:
URL: https://cgit.FreeBSD.org/ports/commit/?id=b51ee23db472f00edda09ba78006d88ecc3ac032
commit b51ee23db472f00edda09ba78006d88ecc3ac032
Author: Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2021-11-29 20:54:15 +0000
Commit: Cy Schubert <cy@FreeBSD.org>
CommitDate: 2021-11-29 20:55:21 +0000
net/hostapd-devel: Update to the latest GH commit
Update to the latest w1.fi commit, proxied through my GH account.
---
net/hostapd-devel/Makefile | 4 ++--
net/hostapd-devel/distinfo | 6 +++---
net/hostapd-devel/files/patch-src_utils_os__unix.c | 14 --------------
3 files changed, 5 insertions(+), 19 deletions(-)
diff --git a/net/hostapd-devel/Makefile b/net/hostapd-devel/Makefile
index 1ee9304a8c6a..e006c6ff86fd 100644
--- a/net/hostapd-devel/Makefile
+++ b/net/hostapd-devel/Makefile
@@ -11,8 +11,8 @@ COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
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
diff --git a/net/hostapd-devel/distinfo b/net/hostapd-devel/distinfo
index 7d0937b9914d..e35b104ace3a 100644
--- a/net/hostapd-devel/distinfo
+++ b/net/hostapd-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1626898947
-SHA256 (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 53d221682bd21cf6cc2ec9fa2012e186754960c3aaee8b94262a1cf4076a165c
-SIZE (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 4789787
+TIMESTAMP = 1638218753
+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/net/hostapd-devel/files/patch-src_utils_os__unix.c b/net/hostapd-devel/files/patch-src_utils_os__unix.c
deleted file mode 100644
index cd4f24b681c3..000000000000
--- a/net/hostapd-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);