From owner-svn-ports-all@freebsd.org Sat Jan 5 13:35:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EF13149B400; Sat, 5 Jan 2019 13:35:02 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E6F6B82ADA; Sat, 5 Jan 2019 13:35:01 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A6ACC19431; Sat, 5 Jan 2019 13:35:01 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x05DZ1Gw074119; Sat, 5 Jan 2019 13:35:01 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x05DZ0ak074116; Sat, 5 Jan 2019 13:35:00 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <201901051335.x05DZ0ak074116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: egypcio set sender to egypcio@FreeBSD.org using -f From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= Date: Sat, 5 Jan 2019 13:35:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489334 - in head/www: . onionbalance X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: in head/www: . onionbalance X-SVN-Commit-Revision: 489334 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E6F6B82ADA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jan 2019 13:35:02 -0000 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 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/