diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-09-10 12:38:09 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-09-10 12:38:09 +0800 |
commit | 863fe020f337286ee61bbc6d51a765d3ef512c4d (patch) | |
tree | ab52ca7c83501706ce3709f56242ba680f3451f4 | |
parent | security/py-greenbone-feed-sync: Fix RUN_DEPENDS (diff) |
security/py-notus-scanner: Fix RUN_DEPENDS
- Use PY_TOMLI
- Bump PORTREVISION for dependency change
from pyproject.toml:
tomli = { version = "<3.0.0", python = "<3.11" }
Reference: https://github.com/greenbone/notus-scanner/blob/v22.7.2/pyproject.toml#L46
Approved by: portmgr (blanket)
With hat: python
-rw-r--r-- | security/py-notus-scanner/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/py-notus-scanner/Makefile b/security/py-notus-scanner/Makefile index 713e822f766c..32397f0f8582 100644 --- a/security/py-notus-scanner/Makefile +++ b/security/py-notus-scanner/Makefile @@ -1,6 +1,7 @@ PORTNAME= notus-scanner DISTVERSION= 22.7.2 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= security python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} ${PYTHON_PKGNAMEPREFIX}paho-mqtt>0:net/py-paho-mqtt@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-gnupg>0:security/py-python-gnupg@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tomli>0:textproc/py-tomli@${PY_FLAVOR} \ + ${PY_TOMLI} \ ${PYTHON_PKGNAMEPREFIX}sentry-sdk>0:devel/py-sentry-sdk@${PY_FLAVOR} \ mosquitto:net/mosquitto |