From owner-svn-ports-head@freebsd.org Mon Mar 13 00:50:37 2017 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 F1575D07779; Mon, 13 Mar 2017 00:50:37 +0000 (UTC) (envelope-from jrm@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 AC73E16BD; Mon, 13 Mar 2017 00:50:37 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2D0oa0v048405; Mon, 13 Mar 2017 00:50:36 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2D0oa2L048401; Mon, 13 Mar 2017 00:50:36 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201703130050.v2D0oa2L048401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Mon, 13 Mar 2017 00:50:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436033 - in head/security: . py-onetime 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: Mon, 13 Mar 2017 00:50:38 -0000 Author: jrm Date: Mon Mar 13 00:50:36 2017 New Revision: 436033 URL: https://svnweb.freebsd.org/changeset/ports/436033 Log: Add new port, security/py-onetime: Encryption program using one-time pad algorithm. http://www.red-bean.com/onetime/ PR: 217735 Submitted by: vidar@karlsen.tech (maintainer) Approved by: swills (mentor, implicit) Added: head/security/py-onetime/ head/security/py-onetime/Makefile (contents, props changed) head/security/py-onetime/distinfo (contents, props changed) head/security/py-onetime/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Mar 13 00:26:35 2017 (r436032) +++ head/security/Makefile Mon Mar 13 00:50:36 2017 (r436033) @@ -880,6 +880,7 @@ SUBDIR += py-mixbox SUBDIR += py-oauth2client SUBDIR += py-oauthlib + SUBDIR += py-onetime SUBDIR += py-openssl SUBDIR += py-paramiko SUBDIR += py-paramiko1 Added: head/security/py-onetime/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-onetime/Makefile Mon Mar 13 00:50:36 2017 (r436033) @@ -0,0 +1,26 @@ +# Created by: Vidar Karlsen +# $FreeBSD$ + +PORTNAME= onetime +PORTVERSION= 1.81 +CATEGORIES= security +MASTER_SITES= http://www.red-bean.com/onetime/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vidar@karlsen.tech +COMMENT= Encryption program that uses the one-time pad algorithm + +LICENSE= PD +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python:2 shebangfix +SHEBANG_FILES= onetime + +NO_ARCH= yes + +PLIST_FILES= bin/onetime + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/onetime ${STAGEDIR}${PREFIX}/bin + +.include Added: head/security/py-onetime/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-onetime/distinfo Mon Mar 13 00:50:36 2017 (r436033) @@ -0,0 +1,3 @@ +TIMESTAMP = 1489349430 +SHA256 (onetime-1.81.tar.gz) = 36a83a83ac9f4018278bf48e868af00f3326b853229fae7e43b38d167e628348 +SIZE (onetime-1.81.tar.gz) = 1810196 Added: head/security/py-onetime/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-onetime/pkg-descr Mon Mar 13 00:50:36 2017 (r436033) @@ -0,0 +1,5 @@ +OneTime is an open source encryption program that uses the one-time pad +algorithm to allow two parties to communicate privately. It has features to +assist with pad management, and comes with built-in help. + +WWW: http://www.red-bean.com/onetime/