package/python-tftpy: new package

tftpy is described as a pure Python implementation of the Trivial FTP
protocol. Add support for this package.

Signed-off-by: Colin Foster <colin.foster@in-advantage.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Colin Foster 2023-10-24 16:41:08 -05:00 committed by Thomas Petazzoni
parent d952b970a1
commit 8dd5390be6
5 changed files with 25 additions and 0 deletions

View File

@ -666,6 +666,7 @@ F: board/beelink/gs1/
F: configs/beelink_gs1_defconfig
N: Colin Foster <colin.foster@in-advantage.com>
F: package/python-tftpy/
F: package/rauc-hawkbit-updater/
N: Corentin Guillevic <corentin.guillevic@smile.fr>

View File

@ -1337,6 +1337,7 @@ menu "External python modules"
source "package/python-termcolor/Config.in"
source "package/python-terminaltables/Config.in"
source "package/python-texttable/Config.in"
source "package/python-tftpy/Config.in"
source "package/python-thrift/Config.in"
source "package/python-tinycss2/Config.in"
source "package/python-tinyrpc/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_TFTPY
bool "python-tftpy"
help
tftpy is a pure Python implementation of the
Trivial FTP protocol.
https://github.com/msoulier/tftpy

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 2bfbf6377f6e3b6ba647f0ac614e9cbc225d1cc35b52991860ba6ea1ec58ef9d python-tftpy-0.8.2.tar.gz
sha256 4616f0c71e62ce2e0f6cdd3aef6d3c285f8730c9304b88a9f3ce3f14c2e6f756 LICENSE

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-tftpy
#
################################################################################
PYTHON_TFTPY_VERSION = 0.8.2
PYTHON_TFTPY_SITE = $(call github,msoulier,tftpy,$(PYTHON_TFTPY_VERSION))
PYTHON_TFTPY_LICENSE = MIT
PYTHON_TFTPY_LICENSE_FILES = LICENSE.txt
PYTHON_TFTPY_SETUP_TYPE = setuptools
$(eval $(python-package))