From owner-svn-ports-head@freebsd.org Wed Sep 21 12:25:29 2016 Return-Path: Delivered-To: svn-ports-head@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 B2F58BE11A2; Wed, 21 Sep 2016 12:25:29 +0000 (UTC) (envelope-from philip@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 83122994; Wed, 21 Sep 2016 12:25:29 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8LCPSBO043288; Wed, 21 Sep 2016 12:25:28 GMT (envelope-from philip@FreeBSD.org) Received: (from philip@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8LCPSGg043285; Wed, 21 Sep 2016 12:25:28 GMT (envelope-from philip@FreeBSD.org) Message-Id: <201609211225.u8LCPSGg043285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: philip set sender to philip@FreeBSD.org using -f From: Philip Paeps Date: Wed, 21 Sep 2016 12:25:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422555 - in head/security: . py3-libnacl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 12:25:29 -0000 Author: philip Date: Wed Sep 21 12:25:28 2016 New Revision: 422555 URL: https://svnweb.freebsd.org/changeset/ports/422555 Log: Python 3 version of security/py-libnacl. Added: head/security/py3-libnacl/ head/security/py3-libnacl/Makefile (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Sep 21 12:24:21 2016 (r422554) +++ head/security/Makefile Wed Sep 21 12:25:28 2016 (r422555) @@ -937,6 +937,7 @@ SUBDIR += py-zope.security SUBDIR += py-zope.securitypolicy SUBDIR += py-zope.session + SUBDIR += py3-libnacl SUBDIR += qtkeychain-qt4 SUBDIR += qtkeychain-qt5 SUBDIR += quantis Added: head/security/py3-libnacl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py3-libnacl/Makefile Wed Sep 21 12:25:28 2016 (r422555) @@ -0,0 +1,8 @@ +# Created by: Philip Paeps +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-libnacl + +USES= python:3.2+ + +.include "${MASTERDIR}/Makefile"