mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
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
25 lines
616 B
Makefile
25 lines
616 B
Makefile
# $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>
|