Index: head/net/traefik/Makefile =================================================================== --- head/net/traefik/Makefile (revision 460219) +++ head/net/traefik/Makefile (revision 460220) @@ -1,40 +1,40 @@ # $FreeBSD$ PORTNAME= traefik -PORTVERSION= 1.4.6 +PORTVERSION= 1.5.0 DISTVERSIONPREFIX= v CATEGORIES= net MAINTAINER= riggs@FreeBSD.org COMMENT= High availability reverse proxy and load balancer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= go USE_GITHUB= yes GH_ACCOUNT= containous GH_SUBDIR= src/github.com/containous/traefik GH_TUPLE= jteeuwen:go-bindata:a0ff256:gobindata/src/github.com/jteeuwen/go-bindata USE_RC_SUBR= traefik USERS= traefik GROUPS= traefik PLIST_FILES= bin/traefik \ "@sample etc/traefik.toml.sample" do-build: @cd ${WRKSRC}/src/github.com/jteeuwen/go-bindata/go-bindata; \ ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -v -x @cd ${WRKSRC}/src/github.com/containous/traefik; \ ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go generate && \ ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -v -x ./cmd/traefik do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/containous/traefik/traefik ${STAGEDIR}${PREFIX}/bin/traefik ${INSTALL_DATA} ${WRKSRC}/src/github.com/containous/traefik/traefik.sample.toml ${STAGEDIR}${PREFIX}/etc/traefik.toml.sample .include Index: head/net/traefik/distinfo =================================================================== --- head/net/traefik/distinfo (revision 460219) +++ head/net/traefik/distinfo (revision 460220) @@ -1,5 +1,5 @@ -TIMESTAMP = 1514981812 -SHA256 (containous-traefik-v1.4.6_GH0.tar.gz) = b6d5eeeef38d925d91b26a2be42609f9336590cac10115b2413eb938ba3fb10b -SIZE (containous-traefik-v1.4.6_GH0.tar.gz) = 7431119 +TIMESTAMP = 1517145075 +SHA256 (containous-traefik-v1.5.0_GH0.tar.gz) = 16296b8f5cc4b7280f2eb40ff47f1242e42ff3fcc79e937367598b5de3d30f62 +SIZE (containous-traefik-v1.5.0_GH0.tar.gz) = 8055244 SHA256 (jteeuwen-go-bindata-a0ff256_GH0.tar.gz) = 06c7bb64ab428a28eb3633ae19fafb6b7b241d384ef45ac0728b1c5fbec64961 SIZE (jteeuwen-go-bindata-a0ff256_GH0.tar.gz) = 17868 Index: head/net/traefik/files/patch-generate.go =================================================================== --- head/net/traefik/files/patch-generate.go (revision 460219) +++ head/net/traefik/files/patch-generate.go (revision 460220) @@ -1,10 +1,14 @@ ---- generate.go.orig 2017-09-07 20:04:03 UTC +--- generate.go.orig 2018-01-23 16:34:04 UTC +++ generate.go -@@ -4,6 +4,6 @@ Copyright - - //go:generate rm -vf autogen/gen.go +@@ -1,9 +1,9 @@ + //go:generate rm -vf autogen/gentemplates/gen.go + //go:generate rm -vf autogen/genstatic/gen.go //go:generate mkdir -p static --//go:generate go-bindata -pkg autogen -o autogen/gen.go ./static/... ./templates/... -+//go:generate src/github.com/jteeuwen/go-bindata/go-bindata/go-bindata -pkg autogen -o autogen/gen.go ./static/... ./templates/... +-//go:generate go-bindata -pkg gentemplates -nometadata -nocompress -o autogen/gentemplates/gen.go ./templates/... ++//go:generate src/github.com/jteeuwen/go-bindata/go-bindata/go-bindata -pkg gentemplates -nometadata -nocompress -o autogen/gentemplates/gen.go ./templates/... + //go:generate gofmt -s -w autogen/gentemplates/gen.go +-//go:generate go-bindata -pkg genstatic -nocompress -o autogen/genstatic/gen.go ./static/... ++//go:generate src/github.com/jteeuwen/go-bindata/go-bindata/go-bindata -pkg genstatic -nocompress -o autogen/genstatic/gen.go ./static/... package main +