svn commit: r504844 - in head/www: . filtron

Yuri Victorovich yuri at FreeBSD.org
Sat Jun 22 03:36:52 UTC 2019


Author: yuri
Date: Sat Jun 22 03:36:50 2019
New Revision: 504844
URL: https://svnweb.freebsd.org/changeset/ports/504844

Log:
  New port: www/filtron: Filtering reverse HTTP proxy

Added:
  head/www/filtron/
  head/www/filtron/Makefile   (contents, props changed)
  head/www/filtron/distinfo   (contents, props changed)
  head/www/filtron/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sat Jun 22 03:25:44 2019	(r504843)
+++ head/www/Makefile	Sat Jun 22 03:36:50 2019	(r504844)
@@ -160,6 +160,7 @@
     SUBDIR += ffproxy
     SUBDIR += ffsend
     SUBDIR += fgallery
+    SUBDIR += filtron
     SUBDIR += firefox
     SUBDIR += firefox-esr
     SUBDIR += flashplayer

Added: head/www/filtron/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/filtron/Makefile	Sat Jun 22 03:36:50 2019	(r504844)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	filtron
+PORTVERSION=	g20180218
+CATEGORIES=	www
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Filtering reverse HTTP proxy
+
+LICENSE=	AGPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go
+USE_GITHUB=	yes
+GH_ACCOUNT=	asciimoo
+GH_TAGNAME=	93f8b22
+GH_TUPLE=	\
+		klauspost:compress:v1.7.1:compress/vendor/github.com/klauspost/compress \
+		klauspost:cpuid:v1.2.1:cpuid/vendor/github.com/klauspost/cpuid \
+		valyala:bytebufferpool:v1.0.0:bytebufferpool/vendor/github.com/valyala/bytebufferpool \
+		valyala:fasthttp:v1.3.0:fasthttp/vendor/github.com/valyala/fasthttp
+
+GO_PKGNAME=	github.com/${GH_ACCOUNT}/${PORTNAME}
+
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/www/filtron/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/filtron/distinfo	Sat Jun 22 03:36:50 2019	(r504844)
@@ -0,0 +1,11 @@
+TIMESTAMP = 1561174409
+SHA256 (asciimoo-filtron-g20180218-93f8b22_GH0.tar.gz) = 80538e7d824992be74e9ac190945071e60e410cd6c99c5eac33b7ba7021ca2f7
+SIZE (asciimoo-filtron-g20180218-93f8b22_GH0.tar.gz) = 106294
+SHA256 (klauspost-compress-v1.7.1_GH0.tar.gz) = 4728ba58238042b5286744e8585f8f706358fd30ebb98d2fb48a67bbbc8e58ea
+SIZE (klauspost-compress-v1.7.1_GH0.tar.gz) = 12632704
+SHA256 (klauspost-cpuid-v1.2.1_GH0.tar.gz) = fd66be8517ba837d0f582ad095d2e42e7464c08ef2a3eaffa3bf83330223fa92
+SIZE (klauspost-cpuid-v1.2.1_GH0.tar.gz) = 279083
+SHA256 (valyala-bytebufferpool-v1.0.0_GH0.tar.gz) = 089013e3429ebe7fd2bc3527f003bf3f3f639891e5d8ba6a56010e3671465e1f
+SIZE (valyala-bytebufferpool-v1.0.0_GH0.tar.gz) = 5025
+SHA256 (valyala-fasthttp-v1.3.0_GH0.tar.gz) = 34f6190e7b5f993121cc949e2367813482ad83e6cbb51170ff92d34a40231528
+SIZE (valyala-fasthttp-v1.3.0_GH0.tar.gz) = 182300

Added: head/www/filtron/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/filtron/pkg-descr	Sat Jun 22 03:36:50 2019	(r504844)
@@ -0,0 +1,8 @@
+Reverse HTTP proxy to filter requests by different rules. Can be used between
+production webserver and the application server to prevent abuse of the
+application backend.
+
+The original purpose of this program was to defend searx, but it can be used to
+guard any web application.
+
+WWW: https://github.com/asciimoo/filtron


More information about the svn-ports-head mailing list