Index: head/net/traefik/Makefile =================================================================== --- head/net/traefik/Makefile (revision 553179) +++ head/net/traefik/Makefile (revision 553180) @@ -1,50 +1,46 @@ # $FreeBSD$ PORTNAME= traefik -PORTVERSION= 2.3.1 +PORTVERSION= 2.3.2 CATEGORIES= net MASTER_SITES= LOCAL/riggs/${PORTNAME} MAINTAINER= riggs@FreeBSD.org COMMENT= High availability reverse proxy and load balancer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= go-bindata:devel/go-bindata USES= go:modules tar:xz USE_RC_SUBR= traefik GO_BUILDFLAGS= -ldflags "-s -w \ -X github.com/traefik/traefik/v2/pkg/version.Version=${DISTVERSION} \ -X github.com/traefik/traefik/v2/pkg/version.Codename=portbuild \ -X github.com/traefik/traefik/v2/pkg/version.BuildDate=`date -u '+%Y-%m-%d_%I:%M:%S%p'`" GO_TARGET= ./cmd/traefik CGO_ENABLED= 0 USERS= traefik GROUPS= traefik PLIST_FILES= bin/traefik \ - "@sample etc/traefik.toml.sample" + "@sample etc/traefik.toml.sample" \ + "@sample etc/traefik.yml.sample" # Preparing the vendor dir for a self-contained tarball now works by just -# executing 'make gomod-vendor' and bundling the resulting ${WRKSRC}/vendor. +# running 'go mod vendor' as a user and bundling the resulting +# ${WRKSRC}/vendor directory. # Building the UI with node + yarn is no longer necessary. -post-patch: - # Install a sample configuration file which at least allows the daemon - # to start without manual tweaking. - ${REINPLACE_CMD} -e 's|:80|:8088|' \ - -e 's|:443|:8433|' \ - -e 's|\[providers.docker|# \[providers.docker|' ${WRKSRC}/traefik.sample.toml - pre-build: cd ${GO_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} generate post-install: ${INSTALL_DATA} ${WRKSRC}/traefik.sample.toml ${STAGEDIR}${PREFIX}/etc/traefik.toml.sample + ${INSTALL_DATA} ${WRKSRC}/traefik.sample.yml ${STAGEDIR}${PREFIX}/etc/traefik.yml.sample .include Index: head/net/traefik/distinfo =================================================================== --- head/net/traefik/distinfo (revision 553179) +++ head/net/traefik/distinfo (revision 553180) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602282919 -SHA256 (traefik-2.3.1.tar.xz) = 4c270456282773e234057d8a7959856d7a61eac930a5f159cb4f7ea19dabcab6 -SIZE (traefik-2.3.1.tar.xz) = 13105328 +TIMESTAMP = 1603469984 +SHA256 (traefik-2.3.2.tar.xz) = 99a8fb607113e80cd317d4dd693601e35a910b60ec6cacbb6451241da53720b8 +SIZE (traefik-2.3.2.tar.xz) = 14088976 Index: head/net/traefik/files/patch-traefik.sample.toml =================================================================== --- head/net/traefik/files/patch-traefik.sample.toml (nonexistent) +++ head/net/traefik/files/patch-traefik.sample.toml (revision 553180) @@ -0,0 +1,24 @@ +--- traefik.sample.toml.orig 2020-10-19 18:27:54 UTC ++++ traefik.sample.toml +@@ -23,10 +23,10 @@ + # Default: + [entryPoints] + [entryPoints.web] +- address = ":80" ++ address = ":8088" + + [entryPoints.websecure] +- address = ":443" ++ address = ":8443" + + ################################################################ + # Traefik logs configuration +@@ -100,7 +100,7 @@ + # Optional + # Default: false + # +- # insecure = true ++ insecure = true + + # Enabled Dashboard + # Property changes on: head/net/traefik/files/patch-traefik.sample.toml ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/traefik/files/patch-traefik.sample.yml =================================================================== --- head/net/traefik/files/patch-traefik.sample.yml (nonexistent) +++ head/net/traefik/files/patch-traefik.sample.yml (revision 553180) @@ -0,0 +1,31 @@ +--- traefik.sample.yml.orig 2020-10-19 18:27:54 UTC ++++ traefik.sample.yml +@@ -23,10 +23,10 @@ global: + # + entryPoints: + web: +- address: :80 ++ address: :8088 + + websecure: +- address: :443 ++ address: :8443 + + ################################################################ + # Traefik logs configuration +@@ -94,13 +94,13 @@ entryPoints: + # + # Optional + # +-#api: ++api: + # Enable the API in insecure mode + # + # Optional + # Default: false + # +-# insecure: true ++ insecure: true + + # Enabled Dashboard + # Property changes on: head/net/traefik/files/patch-traefik.sample.yml ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property