mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
77fbc0af7f
https://github.com/pyca/pyopenssl/blob/main/CHANGELOG.rst#2610-2026-04-24 (like pyca/cryptography, 26.2.0 has been out for two days)
31 lines
764 B
Makefile
31 lines
764 B
Makefile
COMMENT= Python interface to the OpenSSL library
|
|
|
|
MODPY_DISTV= 26.1.0
|
|
DISTNAME= pyopenssl-${MODPY_DISTV}
|
|
PKGNAME= py-openssl-${MODPY_DISTV}
|
|
CATEGORIES= security devel
|
|
|
|
HOMEPAGE= https://github.com/pyca/pyopenssl
|
|
|
|
# Apache 2
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += ${MODPY_WANTLIB}
|
|
WANTLIB += crypto pthread ssl
|
|
|
|
RUN_DEPENDS= security/py-cryptography>=46.0.0,<48
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
MODULES= lang/python
|
|
MODPY_PI= Yes
|
|
MODPY_PYBUILD= setuptools
|
|
# deselect a few tests which cause problems:
|
|
# - test_it_works_*: DTLS tests which error out and stop others from running
|
|
# (add -v to see individual test names)
|
|
MODPY_PYTEST_ARGS= -k 'not test_it_works_at_all and not test_it_works_with_srtp'
|
|
|
|
TEST_DEPENDS= devel/py-flaky \
|
|
devel/py-pretend
|
|
|
|
.include <bsd.port.mk>
|