[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,11 @@
config BR2_PACKAGE_PYTHON_INFLECTION
bool "python-inflection"
select BR2_PACKAGE_PYTHON3_UNICODEDATA
help
A string transformation library that singularizes and
pluralizes English words, and transforms strings from
CamelCase to underscored string.
Inflection is a port of Ruby on Rails' inflector to Python
https://github.com/jpvanhal/inflection

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/inflection/json
md5 c3287d4f0e3bdf625a52d655cc514403 inflection-0.5.1.tar.gz
sha256 1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417 inflection-0.5.1.tar.gz
# Locally computed sha256 checksums
sha256 9e9f9b4b2e7543ad1486f1328bf9ec50e5a5e2bb9caceb59652496dd61e64133 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-inflection
#
################################################################################
PYTHON_INFLECTION_VERSION = 0.5.1
PYTHON_INFLECTION_SOURCE = inflection-$(PYTHON_INFLECTION_VERSION).tar.gz
PYTHON_INFLECTION_SITE = https://files.pythonhosted.org/packages/e1/7e/691d061b7329bc8d54edbf0ec22fbfb2afe61facb681f9aaa9bff7a27d04
PYTHON_INFLECTION_SETUP_TYPE = setuptools
PYTHON_INFLECTION_LICENSE = MIT
PYTHON_INFLECTION_LICENSE_FILES = LICENSE
$(eval $(python-package))
$(eval $(host-python-package))