aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2023-05-18 10:08:02 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2023-05-18 10:08:02 +0000
commit68ca6857b571a1304bc3f2fc73ae67663bb397f8 (patch)
tree7bc7c00f0021cbfff8bff3134bddb6a596fa5d89
parent700e3aec61f795d3e149cfc3a6a628ab3378fef9 (diff)
downloadports-68ca6857b571a1304bc3f2fc73ae67663bb397f8.tar.gz
ports-68ca6857b571a1304bc3f2fc73ae67663bb397f8.zip
security/py-keyrings.alt: adjust optional dependency (unbreak)
In commit a16d8f14ce3b, deprecation of `security/py-pycrypto' had not been handled completely: one optional dependency which is off by default was still referencing the expiring port. According to release notes, EncryptedFileKeyring now supports both pycryptodome and pycryptodomex (preferring the latter), so prefer the latter. Reported by: someone on t.me/freebsd_ru
-rw-r--r--security/py-keyrings.alt/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/py-keyrings.alt/Makefile b/security/py-keyrings.alt/Makefile
index bb77f7242bd3..5756b2a3546c 100644
--- a/security/py-keyrings.alt/Makefile
+++ b/security/py-keyrings.alt/Makefile
@@ -29,7 +29,7 @@ ENCRYPTED_FILE_DESC= Install pycrypto to support the Encrypted File backend
GNOME_KEYRING_DESC= Install GNOME Keyring to support the Gnome backend
PYFS_DESC= Install pyfilesystem to support the pyfs backend
-ENCRYPTED_FILE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.5:security/py-pycrypto@${PY_FLAVOR}
+ENCRYPTED_FILE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycryptodomex>0:security/py-pycryptodomex@${PY_FLAVOR}
GNOME_KEYRING_USES= gnome
GNOME_KEYRING_USE= GNOME=pygobject3
PYFS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fs>=0.5:devel/py-fs@${PY_FLAVOR}