[NEW] devel/go-bindata-assetfs: serves embedded files with net/http support

go-bindata-assetfs serves embedded files from go-bindata with Go's
  net/http support, allowing packages to serve http static content.

  WWW: https://github.com/elazarl/go-bindata-assetfs
This commit is contained in:
Vinícius Zavam 2019-08-12 08:15:05 +00:00
parent 43d013a29d
commit ab5b15e3f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=508711
4 changed files with 45 additions and 0 deletions

View file

@ -851,6 +851,7 @@
SUBDIR += gnustep
SUBDIR += gnustep-make
SUBDIR += go-bindata
SUBDIR += go-bindata-assetfs
SUBDIR += go-git
SUBDIR += go-glide
SUBDIR += go-godef

View file

@ -0,0 +1,33 @@
# $FreeBSD$
PORTNAME= go-bindata-assetfs
PORTVERSION= g20180223
CATEGORIES= devel www
MAINTAINER= egypcio@FreeBSD.org
COMMENT= Serves embedded files from go-bindata with Go's net/http support
LICENSE= BSD2CLAUSE
RUN_DEPENDS= go-bindata>=0:devel/go-bindata
USES= go
USE_GITHUB= nodefault
GO_PKGNAME= github.com/elazarl/${PORTNAME}/${PORTNAME}
GH_TUPLE= elazarl:${PORTNAME}:38087fe:elazarl_gbd/github.com/elazarl/${PORTNAME} \
golang:net:ca1201d:golang_net/golang.org/x/net \
golang:sys:51ab0e2:golang_sys/golang.org/x/sys \
PLIST_FILES= bin/${PORTNAME}
do-build:
@cd ${WRKSRC} && \
${RLN} ${WRKSRC} src && \
${SETENV} ${MAKE_ENV} ${GO_ENV} GOPATH=${WRKSRC} ${GO_CMD} \
build ${GO_BUILDFLAGS} -o bin/${PORTNAME} ${GO_PKGNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

View file

@ -0,0 +1,7 @@
TIMESTAMP = 1565348812
SHA256 (elazarl-go-bindata-assetfs-38087fe_GH0.tar.gz) = b08df214d8cc9e4004fc399414cbe18de80f666a38ad49d79c34f7378e2f13c8
SIZE (elazarl-go-bindata-assetfs-38087fe_GH0.tar.gz) = 3988
SHA256 (golang-net-ca1201d_GH0.tar.gz) = d70d188cea7e5c254eac97d3a63e6b959b18c159cb0393cd38e01277fe377eff
SIZE (golang-net-ca1201d_GH0.tar.gz) = 1099085
SHA256 (golang-sys-51ab0e2_GH0.tar.gz) = dc0fffb69ff5a4e83b3bf3d4817b8cacfa85f36ab93855030e3ce8937cc89b88
SIZE (golang-sys-51ab0e2_GH0.tar.gz) = 1454786

View file

@ -0,0 +1,4 @@
go-bindata-assetfs serves embedded files from go-bindata with Go's net/http
support, allowing packages to serve static content.
WWW: https://github.com/elazarl/go-bindata-assetfs