Date: Mon, 3 Jul 2017 05:50:40 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444913 - branches/2017Q3/security/zeronet Message-ID: <201707030550.v635oeC2023718@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Mon Jul 3 05:50:39 2017 New Revision: 444913 URL: https://svnweb.freebsd.org/changeset/ports/444913 Log: MFH: r444912 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 <peter icebear net> Submitted by: Yuri Victorovich <yuri rawbw com> (maintainer) Approved by: ports-secteam (blanket) Modified: branches/2017Q3/security/zeronet/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/security/zeronet/Makefile ============================================================================== --- branches/2017Q3/security/zeronet/Makefile Mon Jul 3 05:48:40 2017 (r444912) +++ branches/2017Q3/security/zeronet/Makefile Mon Jul 3 05:50:39 2017 (r444913) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707030550.v635oeC2023718>