svn commit: r400171 - in head/security: . py-python-gnupg

Steve Wills swills at FreeBSD.org
Mon Oct 26 01:20:23 UTC 2015


Author: swills
Date: Mon Oct 26 01:20:21 2015
New Revision: 400171
URL: https://svnweb.freebsd.org/changeset/ports/400171

Log:
  security/py-python-gnupg: create port
  
  The gnupg module allows Python programs to make use of the functionality
  provided by the GNU Privacy Guard (abbreviated GPG or GnuPG). Using this
  module, Python programs can encrypt and decrypt data, digitally sign documents
  and verify digital signatures, manage (generate, list and delete) encryption
  keys, using proven Public Key Infrastructure (PKI) encryption technology based
  on OpenPGP.
  
  WWW: http://packages.python.org/python-gnupg/index.html
  
  PR:		199551
  Submitted by:	Christer Edwards <christer.edwards at gmail.com>

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Mon Oct 26 00:46:14 2015	(r400170)
+++ head/security/Makefile	Mon Oct 26 01:20:21 2015	(r400171)
@@ -846,6 +846,7 @@
     SUBDIR += py-pyptlib
     SUBDIR += py-pyscard
     SUBDIR += py-pysha3
+    SUBDIR += py-python-gnupg
     SUBDIR += py-python-registry
     SUBDIR += py-rekall
     SUBDIR += py-rekall-core

Added: head/security/py-python-gnupg/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-python-gnupg/Makefile	Mon Oct 26 01:20:21 2015	(r400171)
@@ -0,0 +1,18 @@
+# Created by: Christer Edwards <christer.edwards at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	python-gnupg
+PORTVERSION=	0.3.7
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	christer.edwards at gmail.com
+COMMENT=	Python wrapper for the GNU Privacy Guard (GPG or GnuPG)
+
+LICENSE=	GPLv3
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/security/py-python-gnupg/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-python-gnupg/distinfo	Mon Oct 26 01:20:21 2015	(r400171)
@@ -0,0 +1,2 @@
+SHA256 (python-gnupg-0.3.7.tar.gz) = 7843861c897709279e22b4932f3aed0a84cda46e4a5624a756f92c32a17ee9c1
+SIZE (python-gnupg-0.3.7.tar.gz) = 24725

Added: head/security/py-python-gnupg/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-python-gnupg/pkg-descr	Mon Oct 26 01:20:21 2015	(r400171)
@@ -0,0 +1,8 @@
+The gnupg module allows Python programs to make use of the functionality
+provided by the GNU Privacy Guard (abbreviated GPG or GnuPG). Using this
+module, Python programs can encrypt and decrypt data, digitally sign documents
+and verify digital signatures, manage (generate, list and delete) encryption
+keys, using proven Public Key Infrastructure (PKI) encryption technology based
+on OpenPGP.
+
+WWW: http://packages.python.org/python-gnupg/index.html


More information about the svn-ports-all mailing list