From owner-svn-ports-all@freebsd.org Mon Jul 3 05:48:41 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CEB09DEAAC; Mon, 3 Jul 2017 05:48:41 +0000 (UTC) (envelope-from koobs@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 mx1.freebsd.org (Postfix) with ESMTPS id 1A4418366D; Mon, 3 Jul 2017 05:48:41 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v635meam020481; Mon, 3 Jul 2017 05:48:40 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v635mepl020480; Mon, 3 Jul 2017 05:48:40 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201707030548.v635mepl020480@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 3 Jul 2017 05:48:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444912 - head/security/zeronet X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/security/zeronet X-SVN-Commit-Revision: 444912 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 03 Jul 2017 05:48:41 -0000 Author: koobs Date: Mon Jul 3 05:48:40 2017 New Revision: 444912 URL: https://svnweb.freebsd.org/changeset/ports/444912 Log: security/zeronet: Limit to Python 2.7 Zeronet doesn't support Python 3 [1]. Limit to compatible version(s) (2.7) accordingly. [1] https://github.com/HelloZeroNet/ZeroNet/issues/149 PR: 220302 Reported by: Peter Zuidema Submitted by: Yuri Victorovich (maintainer) MFH: 2017Q3 Modified: head/security/zeronet/Makefile Modified: head/security/zeronet/Makefile ============================================================================== --- head/security/zeronet/Makefile Mon Jul 3 05:38:45 2017 (r444911) +++ head/security/zeronet/Makefile Mon Jul 3 05:48:40 2017 (r444912) @@ -27,7 +27,9 @@ SUB_FILES= zeronet-service zeronet-cmd pkg-message SUB_LIST= LOCALBASE=${LOCALBASE} USER=${USER} GROUP=${GROUP} PLIST_SUB= USER=${USER} GROUP=${GROUP} -USES= python +# ZeroNet hasn't been ported to Python 3 yet +# https://github.com/HelloZeroNet/ZeroNet/issues/149 +USES= python:2.7 NO_ARCH= yes OPTIONS_DEFINE= TOR DEBUG