package/python-pyndiff: new package

Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Adam Duskett 2021-10-12 10:48:37 -07:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 8c17fd9a5b
commit 1665e0a79b
4 changed files with 29 additions and 0 deletions

View File

@ -1153,6 +1153,7 @@ menu "External python modules"
source "package/python-pymupdf/Config.in"
source "package/python-pymysql/Config.in"
source "package/python-pynacl/Config.in"
source "package/python-pyndiff/Config.in"
source "package/python-pyopenssl/Config.in"
source "package/python-pyparsing/Config.in"
source "package/python-pyparted/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_PYNDIFF
bool "python-pyndiff"
select BR2_PACKAGE_PYTHON_XMLJSON # runtime
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
help
Generate human-readable ndiff output when comparing 2 Nmap
XML scan files.
https://github.com/rackerlabs/pyndiff

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pyndiff/json
md5 32a9f994509cb883bbfeb563171f2668 pyndiff-1.0.2.tar.gz
sha256 8a519b18a7bbb315c043d4543719ce9fb6db8098bfcdd04cb8054b276cc91368 pyndiff-1.0.2.tar.gz
# Locally computed sha256 checksums
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pyndiff
#
################################################################################
PYTHON_PYNDIFF_VERSION = 1.0.2
PYTHON_PYNDIFF_SOURCE = pyndiff-$(PYTHON_PYNDIFF_VERSION).tar.gz
PYTHON_PYNDIFF_SITE = https://files.pythonhosted.org/packages/83/3b/fb13918710c4fba40367140f22e3449998f4f66869a7564d0e547ad99ef8
PYTHON_PYNDIFF_SETUP_TYPE = setuptools
PYTHON_PYNDIFF_LICENSE = Apache-2.0
PYTHON_PYNDIFF_LICENSE_FILES = LICENSE
$(eval $(python-package))