security/py-pyaff4: replace pyblake2 with pynacl

Import minimal upstream commit to switch from pyblake2 to pynacl.
This allows us to build run this port with python311:

af2ce19c5a

Full-blown update to latest version requires adding missing ports to tree.

PR:		277134
Approved by:	antoine (maintainer)
2024Q2
Ruslan Makhmatkhanov 2024-02-19 14:39:18 +03:00
parent d2e373f81e
commit 314e0d5a8c
2 changed files with 25 additions and 2 deletions

View File

@ -1,5 +1,6 @@
PORTNAME= pyaff4
DISTVERSION= 0.26.post6
PORTREVISION= 1
CATEGORIES= security devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -14,10 +15,10 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}python-snappy>=0.5.1:archivers/py-python-snappy@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}rdflib>=4.2.2:textproc/py-rdflib@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}intervaltree>=2.1.0:devel/py-intervaltree@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyblake2>=0.9.3:security/py-pyblake2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}expiringdict>=1.1.4:devel/py-expiringdict@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}html5lib>=0:www/py-html5lib@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pynacl>0:security/py-pynacl@${PY_FLAVOR}
NO_ARCH= yes
USES= python zip

View File

@ -0,0 +1,22 @@
https://github.com/aff4/pyaff4/commit/af2ce19c5a2ad61d68309a856ded93cee2901ea4
--- pyaff4/hashes.py.orig 2017-12-05 20:36:26 UTC
+++ pyaff4/hashes.py
@@ -16,7 +16,7 @@ import hashlib
from pyaff4 import lexicon
from pyaff4.rdfvalue import *
import hashlib
-import pyblake2
+import nacl.hash
def new(datatype):
return map[datatype]()
@@ -54,7 +54,7 @@ map = {
lexicon.HASH_SHA256: hashlib.sha256,
lexicon.HASH_SHA512: hashlib.sha512,
lexicon.HASH_MD5: hashlib.md5,
- lexicon.HASH_BLAKE2B: pyblake2.blake2b
+ lexicon.HASH_BLAKE2B: nacl.hash.blake2b
}
nameMap = {