pyasyncore is a compatibility package that provides the asyncore 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-pyasyncore
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PYASYNCORE_VERSION = 1.0.4
|
|
PYTHON_PYASYNCORE_SOURCE = pyasyncore-$(PYTHON_PYASYNCORE_VERSION).tar.gz
|
|
PYTHON_PYASYNCORE_SITE = https://github.com/simonrob/pyasyncore/releases/download/v$(PYTHON_PYASYNCORE_VERSION)
|
|
PYTHON_PYASYNCORE_SETUP_TYPE = setuptools
|
|
PYTHON_PYASYNCORE_LICENSE = PSF-2.0
|
|
PYTHON_PYASYNCORE_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|