svn commit: r444913 - branches/2017Q3/security/zeronet

Kubilay Kocak koobs at FreeBSD.org
Mon Jul 3 05:50:41 UTC 2017


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


More information about the svn-ports-all mailing list