diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2025-08-28 09:54:13 +0200 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2025-08-28 10:01:44 +0200 |
commit | de6b97cf2f4e04aa64bee5a2b44cacdeb5f359a7 (patch) | |
tree | f56b7b79742a5db491fa2746f3722d6bf215e3eb | |
parent | net-mgmt/netbox: Update to 4.3.7 (diff) |
security/py-netbox-secrets: Update to 2.3.2
* Support for older versions of Python lower than 3.10 has been removed
with the 2.3.1 release, adjust USES=python accordingly.
Changelog since 2.3.0:
https://github.com/Onemind-Services-LLC/netbox-secrets/compare/v2.3.0...v2.3.2
-rw-r--r-- | security/py-netbox-secrets/Makefile | 6 | ||||
-rw-r--r-- | security/py-netbox-secrets/distinfo | 6 | ||||
-rw-r--r-- | security/py-netbox-secrets/files/patch-requirements.txt | 11 |
3 files changed, 17 insertions, 6 deletions
diff --git a/security/py-netbox-secrets/Makefile b/security/py-netbox-secrets/Makefile index 262894baf8bf..61ef5f4cfdf5 100644 --- a/security/py-netbox-secrets/Makefile +++ b/security/py-netbox-secrets/Makefile @@ -1,5 +1,5 @@ PORTNAME= netbox-secrets -DISTVERSION= 2.3.0 +DISTVERSION= 2.3.2 CATEGORIES= security python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,9 +14,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ${PY_SETUPTOOLS} \ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycryptodome>0:security/py-pycryptodome@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycryptodome>=3.23.0:security/py-pycryptodome@${PY_FLAVOR} -USES= python +USES= python:3.10+ USE_PYTHON= autoplist pep517 NO_ARCH= yes diff --git a/security/py-netbox-secrets/distinfo b/security/py-netbox-secrets/distinfo index 68f590c12790..bc800f38c874 100644 --- a/security/py-netbox-secrets/distinfo +++ b/security/py-netbox-secrets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750489227 -SHA256 (netbox_secrets-2.3.0.tar.gz) = c2785de9d292407cc20bd0b0e7f4f35cf30f6fba71000bea7c7789ed5cf60503 -SIZE (netbox_secrets-2.3.0.tar.gz) = 57639 +TIMESTAMP = 1756292066 +SHA256 (netbox_secrets-2.3.2.tar.gz) = 250bb3579e322ea66cde1485c1b763b5f59e1a8fb19c9804ef8a4c4de3915161 +SIZE (netbox_secrets-2.3.2.tar.gz) = 60979 diff --git a/security/py-netbox-secrets/files/patch-requirements.txt b/security/py-netbox-secrets/files/patch-requirements.txt new file mode 100644 index 000000000000..ff23282835cf --- /dev/null +++ b/security/py-netbox-secrets/files/patch-requirements.txt @@ -0,0 +1,11 @@ +Relax version requirements. + +--- requirements.txt.orig 2025-08-27 10:56:41 UTC ++++ requirements.txt +@@ -4,5 +4,5 @@ + # + # pip-compile --output-file=requirements.txt requirements.in + # +-pycryptodome==3.23.0 ++pycryptodome>=3.23.0 + # via -r requirements.in |