svn commit: r554896 - head/security/py-ssh-audit

Piotr Kubaj pkubaj at FreeBSD.org
Wed Nov 11 13:48:34 UTC 2020


Author: pkubaj
Date: Wed Nov 11 13:48:34 2020
New Revision: 554896
URL: https://svnweb.freebsd.org/changeset/ports/554896

Log:
  security/py-ssh-audit: fix run-time
  
  Traceback (most recent call last):
    File "/usr/local/bin/ssh-audit", line 10, in <module>
      from ssh_audit.ssh_audit import main  # noqa: E402
  ModuleNotFoundError: No module named 'ssh_audit'

Modified:
  head/security/py-ssh-audit/Makefile

Modified: head/security/py-ssh-audit/Makefile
==============================================================================
--- head/security/py-ssh-audit/Makefile	Wed Nov 11 13:38:27 2020	(r554895)
+++ head/security/py-ssh-audit/Makefile	Wed Nov 11 13:48:34 2020	(r554896)
@@ -3,6 +3,7 @@
 PORTNAME=	ssh-audit
 DISTVERSIONPREFIX=	v
 DISTVERSION=	2.3.1
+PORTREVISION=	1
 CATEGORIES=	security
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
@@ -14,8 +15,7 @@ LICENSE=	MIT
 USES=		python shebangfix
 USE_GITHUB=	yes
 GH_ACCOUNT=	jtesta
-USE_PYTHON=	concurrent
-NO_BUILD=	yes
+USE_PYTHON=	concurrent distutils
 NO_ARCH=	yes
 SHEBANG_FILES=	ssh-audit.py
 


More information about the svn-ports-all mailing list