1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00

security/py-certomancer: Add py-certomancer 0.11.0

Quickly construct, mock & deploy PKI test configurations using simple
declarative configuration. Includes CRL, OCSP and time stamping service
provisioning.
This commit is contained in:
Po-Chuan Hsieh 2023-07-09 18:15:49 +08:00
parent 853523a04d
commit 4288ad7380
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
5 changed files with 47 additions and 0 deletions

View File

@ -877,6 +877,7 @@
SUBDIR += py-certbot-dns-standalone
SUBDIR += py-certbot-nginx
SUBDIR += py-certifi
SUBDIR += py-certomancer
SUBDIR += py-certstream
SUBDIR += py-ckcc-protocol
SUBDIR += py-coincurve

View File

@ -0,0 +1,28 @@
PORTNAME= certomancer
PORTVERSION= 0.11.0
CATEGORIES= security python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= PKI testing tool
WWW= https://github.com/MatthiasValvekens/certomancer
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=61:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1crypto>=1.5.0:devel/py-asn1crypto@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}click>=7.1.2:devel/py-click@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}oscrypto>=1.2.1:security/py-oscrypto@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.1:devel/py-dateutil@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}yaml>=5.4.1:devel/py-yaml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}tzlocal>=2.1:devel/py-tzlocal@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1688166028
SHA256 (certomancer-0.11.0.tar.gz) = f414455830fde27265b12dc50a7f619a63479597761f96200e082c8a8d3e55b5
SIZE (certomancer-0.11.0.tar.gz) = 74450

View File

@ -0,0 +1,12 @@
--- pyproject.toml.orig 2023-05-14 07:59:10 UTC
+++ pyproject.toml
@@ -1,7 +1,7 @@
[build-system]
requires = [
- "setuptools>=67.4",
- "wheel", "pytest-runner",
+ "setuptools>=61",
+ "wheel",
]
build-backend = "setuptools.build_meta"

View File

@ -0,0 +1,3 @@
Quickly construct, mock & deploy PKI test configurations using simple
declarative configuration. Includes CRL, OCSP and time stamping service
provisioning.