diff options
author | fullermd@over-yonder.net <fullermd@over-yonder.net> | 2025-05-26 07:42:28 +0000 |
---|---|---|
committer | Xavier Beaudouin <kiwi@FreeBSD.org> | 2025-05-26 09:56:09 +0000 |
commit | 5f890d753f568452ab44a551dbabd5878cea99f1 (patch) | |
tree | fdea9a4a6b6d0e19a0ca031972e71b7ede3a7a41 | |
parent | 89d40665b271d8c1f903a9a2cb23897830d39d0a (diff) |
sysutils/py-salt: Add missing cryptography dependancy
Add cryptography to PYTHON_USES.
Salt requires the cryptography library, and will happily
fill up /var/log/salt with backtraces in the minion log
if it doesn't have it.
PR: 284715
Approved by: 0mp (mentor)
Approved by: maintainer timeout
Differential Revision: https://reviews.freebsd.org/D50530
-rw-r--r-- | sysutils/py-salt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/py-salt/Makefile b/sysutils/py-salt/Makefile index 5e580171cd52..45103b573591 100644 --- a/sysutils/py-salt/Makefile +++ b/sysutils/py-salt/Makefile @@ -1,6 +1,6 @@ PORTNAME= salt PORTVERSION= 3006.9 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= sysutils python MASTER_SITES= PYPI @@ -33,7 +33,7 @@ USES= cpe python CPE_VENDOR= saltstack CPE_PRODUCT= salt -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist cryptography distutils NO_ARCH= yes CONFLICTS= py[0-9]*-salt-2019* |