svn commit: r482334 - head/net/wireguard-go

Bernhard Froehlich decke at FreeBSD.org
Thu Oct 18 08:00:38 UTC 2018


Author: decke
Date: Thu Oct 18 08:00:37 2018
New Revision: 482334
URL: https://svnweb.freebsd.org/changeset/ports/482334

Log:
  net/wireguard-go: Update to 0.0.20181018
  
  - Remove dep dependency because upstream switched to Go 1.11 new modules
  support. Sadly we still have to enforce oldfashioned vendoring because
  otherwise "go build" would automatically download stuff from the internet
  before building.
  
  Theoretically it should be possible to get rid of the self generated
  vendor distfile but practically I did not get it working (yet).

Modified:
  head/net/wireguard-go/Makefile
  head/net/wireguard-go/distinfo

Modified: head/net/wireguard-go/Makefile
==============================================================================
--- head/net/wireguard-go/Makefile	Thu Oct 18 08:00:37 2018	(r482333)
+++ head/net/wireguard-go/Makefile	Thu Oct 18 08:00:37 2018	(r482334)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	wireguard-go
-PORTVERSION=	0.0.20181001
+PORTVERSION=	0.0.20181018
 CATEGORIES=	net
 MASTER_SITES=	https://git.zx2c4.com/wireguard-go/snapshot/ \
 		LOCAL/decke
@@ -14,10 +14,11 @@ COMMENT=	WireGuard implementation in Go
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BUILD_DEPENDS=	go:lang/go \
-		dep:devel/dep
+BUILD_DEPENDS=	go:lang/go
 
 USES=		gmake tar:xz
+
+MAKE_ENV+=	GOFLAGS=-mod=vendor
 
 PLIST_FILES=	bin/${PORTNAME}
 

Modified: head/net/wireguard-go/distinfo
==============================================================================
--- head/net/wireguard-go/distinfo	Thu Oct 18 08:00:37 2018	(r482333)
+++ head/net/wireguard-go/distinfo	Thu Oct 18 08:00:37 2018	(r482334)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1538476185
-SHA256 (wireguard-go-0.0.20181001.tar.xz) = 46242e6ddc5f8e2cffbb5cf9634399e1d0f7b9d9634d09c35b65ac8f4bbe222a
-SIZE (wireguard-go-0.0.20181001.tar.xz) = 54388
-SHA256 (wireguard-go-0.0.20181001-vendor.tar.xz) = 622911c638df46ba174212bd9bbbbef9469ff850ce046b499938a1acd81bcdd4
-SIZE (wireguard-go-0.0.20181001-vendor.tar.xz) = 265880
+TIMESTAMP = 1539848196
+SHA256 (wireguard-go-0.0.20181018.tar.xz) = 6bedec38d12596d55cfba4b3f7dfa99d5c2555c2f0bf3b3c9a26feb7c6b073ff
+SIZE (wireguard-go-0.0.20181018.tar.xz) = 54268
+SHA256 (wireguard-go-0.0.20181018-vendor.tar.xz) = 37f1edc594fe80b29acca426da3d3062d4c87a23c622e572cabeffe244a75b8e
+SIZE (wireguard-go-0.0.20181018-vendor.tar.xz) = 285932


More information about the svn-ports-all mailing list