1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/www/go-fasthttp/Makefile
Sunpoet Po-Chuan Hsieh 96730a35b9 Add go-fasthttp 20160617
A fast HTTP implementation for Go.

Currently fasthttp is successfully used by VertaMedia in a production
serving up to 200K rps from more than 1.5M concurrent keep-alive
connections per physical server.

WWW: https://github.com/valyala/fasthttp

- While I'm here:
  - Use DISTVERSIONPREFIX
  - Add LICENSE_FILE
  - Add missing RUN_DEPENDS
  - Remove GH_PROJECT

PR:		217212
Submitted by:	Guy Tabrar <guy.tabrar@me.com>
2017-02-20 15:16:06 +00:00

26 lines
522 B
Makefile

# $FreeBSD$
PORTNAME= fasthttp
PORTVERSION= 20160617
DISTVERSIONPREFIX= v
CATEGORIES= www net
PKGNAMEPREFIX= go-
MAINTAINER= guy.tabrar@me.com
COMMENT= Fast HTTP package for Go, tuned for high performance
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= go-compress>=0:archivers/go-compress \
go-cpuid>=0:devel/go-cpuid \
go-crc32>=0:devel/go-crc32
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_GITHUB= yes
GH_ACCOUNT= valyala
USES= go
GO_PKGNAME= github.com/valyala/fasthttp
.include <bsd.port.mk>