diff --git a/net/wireguard-kmod/Makefile b/net/wireguard-kmod/Makefile index 131a1e20a673..d524f8ecc890 100644 --- a/net/wireguard-kmod/Makefile +++ b/net/wireguard-kmod/Makefile @@ -1,20 +1,19 @@ PORTNAME= wireguard-kmod -PORTVERSION= 0.0.20220610 -PORTREVISION= 1 +PORTVERSION= 0.0.20220615 CATEGORIES= net net-vpn MASTER_SITES= https://git.zx2c4.com/wireguard-freebsd/snapshot/ DISTNAME= wireguard-freebsd-${PORTVERSION} MAINTAINER= decke@FreeBSD.org COMMENT= WireGuard implementation for the FreeBSD kernel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/../COPYING USES= kmod tar:xz uidfix WRKSRC_SUBDIR= src PLIST_FILES= ${KMODDIR}/if_wg.ko .include diff --git a/net/wireguard-kmod/distinfo b/net/wireguard-kmod/distinfo index a1bbe2c7fe76..f45d8322d8f8 100644 --- a/net/wireguard-kmod/distinfo +++ b/net/wireguard-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654889136 -SHA256 (wireguard-freebsd-0.0.20220610.tar.xz) = 518779c383e8087a60a7ec7b0969158a48b2f19a34a13b62683c982960295f17 -SIZE (wireguard-freebsd-0.0.20220610.tar.xz) = 46064 +TIMESTAMP = 1655302401 +SHA256 (wireguard-freebsd-0.0.20220615.tar.xz) = ad6c42d20a7c0ad2989e729dd41ea5a6a019426b762dfd0c6417e340935cca82 +SIZE (wireguard-freebsd-0.0.20220615.tar.xz) = 46744 diff --git a/net/wireguard-kmod/files/patch-Makefile b/net/wireguard-kmod/files/patch-Makefile deleted file mode 100644 index 7fcb0b959840..000000000000 --- a/net/wireguard-kmod/files/patch-Makefile +++ /dev/null @@ -1,23 +0,0 @@ -From ccf37db6e6b983bafcd7a6a7abd7e066026b388f Mon Sep 17 00:00:00 2001 -From: "Jason A. Donenfeld" -Date: Fri, 10 Jun 2022 22:28:48 +0200 -Subject: build: include compat.h for all files - -54b2075 ("build: only include compat.h for if_wg.c and fix build with an -obj directory") scoped compat.h to if_wg.c, which broke building on -12.3. - -Signed-off-by: Jason A. Donenfeld ---- - src/Makefile | 2 +- - ---- Makefile -+++ Makefile -@@ -6,6 +6,6 @@ SRCS= opt_inet.h opt_inet6.h device_if.h bus_if.h ifdi_if.h - - SRCS+= if_wg.c wg_noise.c wg_cookie.c crypto.c - --CFLAGS.if_wg.c+= -include ${.CURDIR}/compat.h -+CFLAGS+= -include ${.CURDIR}/compat.h - - .include diff --git a/net/wireguard-kmod/files/patch-compat.h b/net/wireguard-kmod/files/patch-compat.h deleted file mode 100644 index 568f5c28ad0a..000000000000 --- a/net/wireguard-kmod/files/patch-compat.h +++ /dev/null @@ -1,14 +0,0 @@ -Fix typing mistake in FreeBSD version - -Submitted by: Michael Butler ---- compat.h.orig 2022-06-10 17:21:17 UTC -+++ compat.h -@@ -8,7 +8,7 @@ - - #include - --#if __FreeBSD_version < 1400517 -+#if __FreeBSD_version < 1400057 - #include - #define sbcreatecontrol(a, b, c, d, e) sbcreatecontrol(a, b, c, d) - #endif