security/py-sslyze: Allow build with py-cryptography 38.0.0+

- Bump PORTREVISION for package change
This commit is contained in:
Po-Chuan Hsieh 2022-10-09 23:32:28 +08:00
parent be52cd2d44
commit 7c7cdf2dc5
No known key found for this signature in database
GPG key ID: 9A4BD10F002DD04B
2 changed files with 7 additions and 4 deletions

View file

@ -1,6 +1,6 @@
PORTNAME= sslyze
PORTVERSION= 5.0.5
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,7 +12,7 @@ WWW= https://github.com/nabla-c0d3/sslyze
LICENSE= AGPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=2.6<38.0.0:security/py-cryptography@${PY_FLAVOR} \
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=2.6<39.0.0:security/py-cryptography@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}nassl>=4.0.1<5.0.0:security/py-nassl@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pydantic>=1.7<1.11:devel/py-pydantic@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}tls-parser>=2.0.0<3.0.0:security/py-tls-parser@${PY_FLAVOR}

View file

@ -1,8 +1,11 @@
--- setup.py.orig 2022-05-14 09:12:21 UTC
+++ setup.py
@@ -100,7 +100,7 @@ setup(
@@ -98,9 +98,9 @@ setup(
# Dependencies
install_requires=[
"nassl>=4.0.1,<5.0.0",
"cryptography>=2.6,<38.0.0",
- "cryptography>=2.6,<38.0.0",
+ "cryptography>=2.6,<39.0.0",
"tls-parser>=2.0.0,<3.0.0",
- "pydantic>=1.7,<1.10",
+ "pydantic>=1.7,<1.11",