From owner-svn-ports-all@freebsd.org Wed Feb 27 21:16:00 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 A9B74150560F; Wed, 27 Feb 2019 21:16:00 +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 47B979038A; Wed, 27 Feb 2019 21:16:00 +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 1B9EC2272F; Wed, 27 Feb 2019 21:16:00 +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 x1RLFxBe031089; Wed, 27 Feb 2019 21:15:59 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1RLFxLG031087; Wed, 27 Feb 2019 21:15:59 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <201902272115.x1RLFxLG031087@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: Wed, 27 Feb 2019 21:15:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494085 - head/www/onionshare X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: head/www/onionshare X-SVN-Commit-Revision: 494085 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 47B979038A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,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: Wed, 27 Feb 2019 21:16:00 -0000 Author: egypcio Date: Wed Feb 27 21:15:59 2019 New Revision: 494085 URL: https://svnweb.freebsd.org/changeset/ports/494085 Log: www/onionshare: update 1.3.1 to 2.0 - Receiver mode allows you to receive files with OnionShare, instead of only sending files; - Support for next generation onion services (v3); - Public mode feature, for public uses of OnionShare, - which when enabled turns off slugs in the URL and - removes the limit on how many 404 requests can be made; - If you're sharing a single file, don't zip it up; - Full support for meek_lite (Azure) bridges; - Several bugfixes; - Invisible to users, but this version includes some major refactoring of the codebase, and a robust set of unit tests which makes OnionShare easier to maintain going forward; - Allow selecting your language from a dropdown. https://raw.githubusercontent.com/micahflee/onionshare/v2.0/CHANGELOG.md Approved by: rene (mentor) Sponsored by: TorBSD Diversity Project, TDP Differential Revision: https://reviews.freebsd.org/D19376 Modified: head/www/onionshare/Makefile head/www/onionshare/distinfo Modified: head/www/onionshare/Makefile ============================================================================== --- head/www/onionshare/Makefile Wed Feb 27 20:48:49 2019 (r494084) +++ head/www/onionshare/Makefile Wed Feb 27 21:15:59 2019 (r494085) @@ -2,8 +2,7 @@ PORTNAME= onionshare DISTVERSIONPREFIX= v -DISTVERSION= 1.3.1 -PORTREVISION= 2 +DISTVERSION= 2.0 CATEGORIES= www python security MAINTAINER= egypcio@FreeBSD.org @@ -14,10 +13,13 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= tor:security/tor \ obfs4proxy:security/obfs4proxy-tor \ - ${PYTHON_PKGNAMEPREFIX}Flask>0:www/py-flask@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}stem>0:security/py-stem@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}Flask>=0:www/py-flask@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:security/py-pycrypto@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pysocks>=0:net/py-pysocks@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}stem>=0:security/py-stem@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} -USES= python:3.4+ pyqt:5 +USES= python:3.5+ pyqt:5 USE_GITHUB= yes GH_ACCOUNT= micahflee USE_PYQT= core gui sip widgets # "sip" should be "sip_build", but "import PyQt5.QtCore" wants "sip". See bug#225040 Modified: head/www/onionshare/distinfo ============================================================================== --- head/www/onionshare/distinfo Wed Feb 27 20:48:49 2019 (r494084) +++ head/www/onionshare/distinfo Wed Feb 27 21:15:59 2019 (r494085) @@ -1,3 +1,3 @@ -TIMESTAMP = 1531289450 -SHA256 (micahflee-onionshare-v1.3.1_GH0.tar.gz) = 87e1fa965482064e8c7c8bc32326f5748fd038f7d2af6f51056444db22ef0357 -SIZE (micahflee-onionshare-v1.3.1_GH0.tar.gz) = 436741 +TIMESTAMP = 1551176696 +SHA256 (micahflee-onionshare-v2.0_GH0.tar.gz) = 528ceb6234ecacabe51080e351c2e8f205cbf08cdfcfddc418586d578baa030e +SIZE (micahflee-onionshare-v2.0_GH0.tar.gz) = 2141858