From owner-svn-ports-head@freebsd.org Fri Mar 19 19:12:26 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D125D57FA1C; Fri, 19 Mar 2021 19:12:26 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F2D6f5ZVgz3kGW; Fri, 19 Mar 2021 19:12:26 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B252C1A63B; Fri, 19 Mar 2021 19:12:26 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12JJCQoj022516; Fri, 19 Mar 2021 19:12:26 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12JJCPbP021204; Fri, 19 Mar 2021 19:12:25 GMT (envelope-from decke@FreeBSD.org) Message-Id: <202103191912.12JJCPbP021204@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Fri, 19 Mar 2021 19:12:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568811 - in head/net: . wireguard-kmod X-SVN-Group: ports-head X-SVN-Commit-Author: decke X-SVN-Commit-Paths: in head/net: . wireguard-kmod X-SVN-Commit-Revision: 568811 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Mar 2021 19:12:26 -0000 Author: decke Date: Fri Mar 19 19:12:25 2021 New Revision: 568811 URL: https://svnweb.freebsd.org/changeset/ports/568811 Log: Kernel module for FreeBSD to support Wireguard. At this time this code is new, unvetted, possibly buggy, and should be considered "experimental". It might contain security issues. We gladly welcome your testing and bug reports, but do keep in mind that this code is new, so some caution should be exercised at the moment for using it in mission critical environments. WWW: https://git.zx2c4.com/wireguard-freebsd/ Added: head/net/wireguard-kmod/ head/net/wireguard-kmod/Makefile (contents, props changed) head/net/wireguard-kmod/distinfo (contents, props changed) head/net/wireguard-kmod/pkg-descr (contents, props changed) head/net/wireguard-kmod/pkg-message (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Mar 19 19:07:11 2021 (r568810) +++ head/net/Makefile Fri Mar 19 19:12:25 2021 (r568811) @@ -1528,6 +1528,7 @@ SUBDIR += widentd SUBDIR += wireguard SUBDIR += wireguard-go + SUBDIR += wireguard-kmod SUBDIR += wireshark SUBDIR += wireshark-lite SUBDIR += wlan2eth Added: head/net/wireguard-kmod/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wireguard-kmod/Makefile Fri Mar 19 19:12:25 2021 (r568811) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= wireguard-kmod +PORTVERSION= 0.0.20210319 +CATEGORIES= net +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= ${WRKDIR}/${DISTNAME}/COPYING + +IGNORE_FreeBSD_11= only for FreeBSD 12.1 and newer + +USES= kmod tar:xz uidfix + +WRKSRC= ${WRKDIR}/${DISTNAME}/src + +PLIST_FILES= ${KMODDIR}/if_wg.ko + +.include Added: head/net/wireguard-kmod/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wireguard-kmod/distinfo Fri Mar 19 19:12:25 2021 (r568811) @@ -0,0 +1,3 @@ +TIMESTAMP = 1616180810 +SHA256 (wireguard-freebsd-0.0.20210319.tar.xz) = 96836d90a8daad863ccd9503e3bad4ca6c4c25df4892fc1e55b7a8f7b03afbcd +SIZE (wireguard-freebsd-0.0.20210319.tar.xz) = 46516 Added: head/net/wireguard-kmod/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wireguard-kmod/pkg-descr Fri Mar 19 19:12:25 2021 (r568811) @@ -0,0 +1,9 @@ +Kernel module for FreeBSD to support Wireguard. + +At this time this code is new, unvetted, possibly buggy, and should be +considered "experimental". It might contain security issues. We gladly +welcome your testing and bug reports, but do keep in mind that this code +is new, so some caution should be exercised at the moment for using it +in mission critical environments. + +WWW: https://git.zx2c4.com/wireguard-freebsd/ Added: head/net/wireguard-kmod/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wireguard-kmod/pkg-message Fri Mar 19 19:12:25 2021 (r568811) @@ -0,0 +1,11 @@ +[ +{ type: install + message: <