Date: Wed, 23 Jun 2021 21:27:48 GMT From: Kevin Bowling <kbowling@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: b774f59d2df7 - main - security/py-requests-credssp: Fix dependencies Message-ID: <202106232127.15NLRmQ3063873@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kbowling: URL: https://cgit.FreeBSD.org/ports/commit/?id=b774f59d2df7d9df10c3b39f68796360e79c89e8 commit b774f59d2df7d9df10c3b39f68796360e79c89e8 Author: Pavel Timofeev <timp87@gmail.com> AuthorDate: 2021-06-23 21:26:32 +0000 Commit: Kevin Bowling <kbowling@FreeBSD.org> CommitDate: 2021-06-23 21:27:36 +0000 security/py-requests-credssp: Fix dependencies The module requires and uses spnego for NTLM. PR: 256361 Approved by: maintainer timeout --- security/py-requests-credssp/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/security/py-requests-credssp/Makefile b/security/py-requests-credssp/Makefile index 048ef0cf05c4..74781bb2ebc7 100644 --- a/security/py-requests-credssp/Makefile +++ b/security/py-requests-credssp/Makefile @@ -1,5 +1,6 @@ PORTNAME= requests-credssp PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -9,12 +10,12 @@ COMMENT= Authentication handler for using CredSSP with Python Requests LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ntlm-auth>=0:security/py-ntlm-auth@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openssl>=16.0.0:security/py-openssl@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyasn1>=0.3.1:devel/py-pyasn1@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyspnego>0:security/py-pyspnego@${PY_FLAVOR} USES= python:3.6+ USE_PYTHON= autoplist distutils
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106232127.15NLRmQ3063873>