[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_PYPHEN
bool "python-pyphen"
help
Pure Python module to hyphenate text.
https://www.courtbouillon.org/pyphen

View File

@ -0,0 +1,8 @@
# md5, sha256 from https://pypi.org/pypi/Pyphen/json
md5 99a01a3806cc750c242cae330429a90f pyphen-0.12.0.tar.gz
sha256 b7d3dfc24b6f2178cdb2b1757ace0bd5d222de3e62c28d22ac578c5f22a13e9b pyphen-0.12.0.tar.gz
# Locally computed sha256 checksums
sha256 9f0bffde4fbbbbc61c46f6577b6f472919dba9fdffabe74e8a7e44ac5dbef7a2 LICENSE
sha256 2233a3eecf299bc271f1a9f57f0b3198343ad4ab16571d70320133002c51496b COPYING.GPL
sha256 5bbcbb737e60fe9deba08ecbd00920cfcc3403ba2e534c64fdeea49d6bb87509 COPYING.LGPL
sha256 ad192a67649aa23ac9681939840f4f241643a98da9cd8aec8de28c3b8c6ee854 COPYING.MPL

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pyphen
#
################################################################################
PYTHON_PYPHEN_VERSION = 0.12.0
PYTHON_PYPHEN_SOURCE = pyphen-$(PYTHON_PYPHEN_VERSION).tar.gz
PYTHON_PYPHEN_SITE = https://files.pythonhosted.org/packages/0e/21/9e0841aa76db69e2d74cd64ea2271151d7332fa627a5f03eb0d9ccf3da87
PYTHON_PYPHEN_SETUP_TYPE = flit
PYTHON_PYPHEN_LICENSE = LGPL-2.1+, MPL-1.1, GPL-2.0+
PYTHON_PYPHEN_LICENSE_FILES = LICENSE COPYING.GPL COPYING.LGPL COPYING.MPL
$(eval $(python-package))