git: 2376f5dc1a11 - main - security/py-trezor: drop dependency on blake2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 18 Feb 2024 17:09:06 UTC
The branch main has been updated by rm: URL: https://cgit.FreeBSD.org/ports/commit/?id=2376f5dc1a11ee9ef35084bd0047ad06a7acd2ae commit 2376f5dc1a11ee9ef35084bd0047ad06a7acd2ae Author: Ruslan Makhmatkhanov <rm@FreeBSD.org> AuthorDate: 2024-02-18 17:08:06 +0000 Commit: Ruslan Makhmatkhanov <rm@FreeBSD.org> CommitDate: 2024-02-18 17:08:06 +0000 security/py-trezor: drop dependency on blake2 Dependency on external blake2 implementation was dropped since 0.11.5: https://github.com/trezor/trezor-firmware/blob/main/python/CHANGELOG.md#changed-10 it is now using implementation from python's hashlib module. So just drop it from Makefile. PR: 277132 Approved by: ehaupt (maintainer) --- security/py-trezor/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/py-trezor/Makefile b/security/py-trezor/Makefile index 23463e8ee124..931615843553 100644 --- a/security/py-trezor/Makefile +++ b/security/py-trezor/Makefile @@ -1,5 +1,6 @@ PORTNAME= trezor PORTVERSION= 0.13.8 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,7 +22,6 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=7:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}libusb1>=1.6.4:devel/py-libusb1@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mnemonic>=0.20:security/py-mnemonic@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}protobuf>=2.5.0:devel/py-protobuf@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyblake2>=0.9.3:security/py-pyblake2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.4.0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.10:devel/py-typing-extensions@${PY_FLAVOR}