Date: Sat, 5 Jan 2019 13:35:00 +0000 (UTC) From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= <egypcio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489334 - in head/www: . onionbalance Message-ID: <201901051335.x05DZ0ak074116@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: egypcio Date: Sat Jan 5 13:35:00 2019 New Revision: 489334 URL: https://svnweb.freebsd.org/changeset/ports/489334 Log: [NEW PORT] www/onionbalance: Load-balancing and Redundancy for Onion Services The OnionBalance software allows for Tor onion service requests to be distributed across multiple backend Tor instances. OnionBalance provides load-balancing while also making onion services more resilient and reliable by eliminating single points-of-failure. WWW: https://onionbalance.readthedocs.io/ Approved by: araujo (mentor) Differential Revision: https://reviews.freebsd.org/D18706 Added: head/www/onionbalance/ head/www/onionbalance/Makefile (contents, props changed) head/www/onionbalance/distinfo (contents, props changed) head/www/onionbalance/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jan 5 13:20:34 2019 (r489333) +++ head/www/Makefile Sat Jan 5 13:35:00 2019 (r489334) @@ -537,6 +537,7 @@ SUBDIR += nuvolaplayer-yandex-music SUBDIR += nuvolaplayer-youtube SUBDIR += obhttpd + SUBDIR += onionbalance SUBDIR += onionshare SUBDIR += opencart SUBDIR += opera Added: head/www/onionbalance/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/onionbalance/Makefile Sat Jan 5 13:35:00 2019 (r489334) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= onionbalance +PORTVERSION= 0.1.8 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= OnionBalance-${PORTVERSION} + +MAINTAINER= egypcio@FreeBSD.org +COMMENT= Load-balancing and Redundancy for Onion Services + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyaml>=0:textproc/py-pyaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:security/py-pycrypto@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}setproctitle>=0:devel/py-setproctitle@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}stem>=0:security/py-stem@${PY_FLAVOR} \ + tor:security/tor + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/www/onionbalance/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/onionbalance/distinfo Sat Jan 5 13:35:00 2019 (r489334) @@ -0,0 +1,3 @@ +TIMESTAMP = 1546352794 +SHA256 (OnionBalance-0.1.8.tar.gz) = 63a989c08aa10b41cd0edef5fd0b00c3251689d59bad8b88875078f68f03e78c +SIZE (OnionBalance-0.1.8.tar.gz) = 55919 Added: head/www/onionbalance/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/onionbalance/pkg-descr Sat Jan 5 13:35:00 2019 (r489334) @@ -0,0 +1,6 @@ +The OnionBalance software allows for Tor onion service requests to be +distributed across multiple backend Tor instances. OnionBalance provides +load-balancing while also making onion services more resilient and +reliable by eliminating single points-of-failure. + +WWW: https://onionbalance.readthedocs.io/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901051335.x05DZ0ak074116>