Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Mar 2017 00:50:36 +0000 (UTC)
From:      Joseph Mingrone <jrm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r436033 - in head/security: . py-onetime
Message-ID:  <201703130050.v2D0oa2L048401@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <vidar@karlsen.tech>
+# $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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703130050.v2D0oa2L048401>