Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Nov 2020 13:48:34 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r554896 - head/security/py-ssh-audit
Message-ID:  <202011111348.0ABDmYjw048447@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011111348.0ABDmYjw048447>