mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 04:20:38 -09:00
package/python-pyasyncore: new package
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>
This commit is contained in:
committed by
Thomas Petazzoni
parent
f290f8de22
commit
01aa65bc57
@@ -1088,6 +1088,9 @@ F: configs/freescale_imx6ullevk_defconfig
|
||||
N: Falco Hyfing <hyfinglists@gmail.com>
|
||||
F: package/python-pymodbus/
|
||||
|
||||
N: Fiona Klute <fiona.klute@gmx.de>
|
||||
F: package/python-pyasyncore/
|
||||
|
||||
N: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
|
||||
F: configs/asus_tinker-s_rk3288_defconfig
|
||||
F: board/asus/tinker-s/
|
||||
|
||||
@@ -1253,6 +1253,7 @@ menu "External python modules"
|
||||
source "package/python-pyalsa/Config.in"
|
||||
source "package/python-pyasn1/Config.in"
|
||||
source "package/python-pyasn1-modules/Config.in"
|
||||
source "package/python-pyasyncore/Config.in"
|
||||
source "package/python-pybind/Config.in"
|
||||
source "package/python-pycairo/Config.in"
|
||||
source "package/python-pycares/Config.in"
|
||||
|
||||
10
package/python-pyasyncore/Config.in
Normal file
10
package/python-pyasyncore/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_PYTHON_PYASYNCORE
|
||||
bool "python-pyasyncore"
|
||||
help
|
||||
Make asyncore available for Python 3.12 onwards.
|
||||
|
||||
This is a compatibility package using the code removed from
|
||||
the standard libary, upstream does not intend any
|
||||
maintenance.
|
||||
|
||||
https://github.com/simonrob/pyasyncore
|
||||
5
package/python-pyasyncore/python-pyasyncore.hash
Normal file
5
package/python-pyasyncore/python-pyasyncore.hash
Normal file
@@ -0,0 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/pyasyncore/json
|
||||
md5 f97e2b69f1fa11470867b395c2fabf84 pyasyncore-1.0.4.tar.gz
|
||||
sha256 2c7a8b9b750ba6260f1e5a061456d61320a80579c6a43d42183417da89c7d5d6 pyasyncore-1.0.4.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 f4f80c98161f5632004d44713b5cb95e400145b40cbc0297f1f50c27b54befdb LICENSE
|
||||
14
package/python-pyasyncore/python-pyasyncore.mk
Normal file
14
package/python-pyasyncore/python-pyasyncore.mk
Normal file
@@ -0,0 +1,14 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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))
|
||||
Reference in New Issue
Block a user