pyasynchat is a compatibility package that provides the asynchat module removed from the standard library in Python 3.12. It is needed to support fail2ban without a bundled copy and should be removed as soon as nothing in Buildroot depends on it. Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
554 B
Makefile
15 lines
554 B
Makefile
################################################################################
|
|
#
|
|
# python-pyasynchat
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PYASYNCHAT_VERSION = 1.0.4
|
|
PYTHON_PYASYNCHAT_SOURCE = pyasynchat-$(PYTHON_PYASYNCHAT_VERSION).tar.gz
|
|
PYTHON_PYASYNCHAT_SITE = https://github.com/simonrob/pyasynchat/releases/download/v$(PYTHON_PYASYNCHAT_VERSION)
|
|
PYTHON_PYASYNCHAT_SETUP_TYPE = setuptools
|
|
PYTHON_PYASYNCHAT_LICENSE = PSF-2.0
|
|
PYTHON_PYASYNCHAT_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|