Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Apr 2020 15:39:57 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r532957 - in head/security: . py-pgpy
Message-ID:  <202004251539.03PFdvZm069610@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Sat Apr 25 15:39:57 2020
New Revision: 532957
URL: https://svnweb.freebsd.org/changeset/ports/532957

Log:
  Add security/py-pgpy:  Pretty Good Privacy for Python
  
  PGPy is a Python (2 and 3) library for implementing Pretty Good Privacy into
  Python programs, conforming to the OpenPGP specification per RFC 4880.
  
  WWW: https://github.com/SecurityInnovation/PGPy
  
  PR:		245335
  Submitted by:	contact@evilham.com

Added:
  head/security/py-pgpy/
  head/security/py-pgpy/Makefile   (contents, props changed)
  head/security/py-pgpy/distinfo   (contents, props changed)
  head/security/py-pgpy/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Apr 25 15:15:21 2020	(r532956)
+++ head/security/Makefile	Sat Apr 25 15:39:57 2020	(r532957)
@@ -934,6 +934,7 @@
     SUBDIR += py-passlib
     SUBDIR += py-pbkdf2
     SUBDIR += py-pgpdump
+    SUBDIR += py-pgpy
     SUBDIR += py-plaso
     SUBDIR += py-potr
     SUBDIR += py-pyaes

Added: head/security/py-pgpy/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-pgpy/Makefile	Sat Apr 25 15:39:57 2020	(r532957)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	pgpy
+PORTVERSION=	0.5.2
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	PGPy-${PORTVERSION}
+
+MAINTAINER=	contact@evilham.com
+COMMENT=	Pretty Good Privacy for Python
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cryptography>=2.6:security/py-cryptography@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pyasn1>=0:devel/py-pyasn1@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-pgpy/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-pgpy/distinfo	Sat Apr 25 15:39:57 2020	(r532957)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585942192
+SHA256 (PGPy-0.5.2.tar.gz) = a702668a8b8fb84889ecd840da63c9e323d19bc2132cc5478d534ede3ec49444
+SIZE (PGPy-0.5.2.tar.gz) = 73523

Added: head/security/py-pgpy/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-pgpy/pkg-descr	Sat Apr 25 15:39:57 2020	(r532957)
@@ -0,0 +1,4 @@
+PGPy is a Python (2 and 3) library for implementing Pretty Good Privacy into
+Python programs, conforming to the OpenPGP specification per RFC 4880.
+
+WWW: https://github.com/SecurityInnovation/PGPy



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