security/py-python-nmap: Add new port

PR:		289288
Event:		EuroBSDCon 2025
This commit is contained in:
Yusuf Yaman
2025-09-28 07:57:39 +00:00
committed by Bernhard Froehlich
parent 05a83aacaa
commit bb7385d033
4 changed files with 29 additions and 0 deletions
+1
View File
@@ -1045,6 +1045,7 @@
SUBDIR += py-python-gnupg
SUBDIR += py-python-gvm
SUBDIR += py-python-jose
SUBDIR += py-python-nmap
SUBDIR += py-python-nss
SUBDIR += py-python-openid
SUBDIR += py-python-pam
+18
View File
@@ -0,0 +1,18 @@
PORTNAME= python-nmap
DISTVERSION= 0.7.1
CATEGORIES= security python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nxjoseph@protonmail.com
COMMENT= Use nmap and access scan results from Python3
WWW= https://pypi.org/project/python-nmap/ \
http://xael.org/pages/python-nmap-en.html
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/gpl-3.0.txt
USES= python:build,run
USE_PYTHON= autoplist distutils flavors
.include <bsd.port.mk>
+3
View File
@@ -0,0 +1,3 @@
TIMESTAMP = 1756968165
SHA256 (python-nmap-0.7.1.tar.gz) = f75af6b91dd8e3b0c31f869db32163f62ada686945e5b7c25f84bc0f7fad3b64
SIZE (python-nmap-0.7.1.tar.gz) = 44366
+7
View File
@@ -0,0 +1,7 @@
python-nmap is a python library which helps in using nmap port scanner.
It allows to easilly manipulate nmap scan results and will be a perfect
tool for systems administrators who want to automatize scanning task
and reports. It also supports nmap script outputs.
It can even be used asynchronously. Results are returned one
host at a time to a callback function defined by the user.