[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,9 @@
config BR2_PACKAGE_PYTHON_HUMANIZE
bool "python-humanize"
help
Python humanize package contains various common humanization
utilities, like turning a number into a fuzzy human readable
duration ('3 minutes ago') or into a human readable size or
throughput.
http://github.com/jmoiron/humanize

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/humanize/json
md5 04f5b334283e1f7f0dfeccf7d5a4b880 humanize-3.11.0.tar.gz
sha256 4160cdc63fcd0daac27d2e1e218a31bb396fc3fe5712d153675d89432a03778f humanize-3.11.0.tar.gz
# Locally computed sha256 checksums
sha256 8ba6c18112a431400ad3c743f70670079b302545d98884fc2f28a91c383a0380 LICENCE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-humanize
#
################################################################################
PYTHON_HUMANIZE_VERSION = 3.11.0
PYTHON_HUMANIZE_SOURCE = humanize-$(PYTHON_HUMANIZE_VERSION).tar.gz
PYTHON_HUMANIZE_SITE = https://files.pythonhosted.org/packages/a6/d0/e06993724937f2aab3e7085d137d453968aaac0f74661ef9c90528a79d61
PYTHON_HUMANIZE_SETUP_TYPE = setuptools
PYTHON_HUMANIZE_LICENSE = MIT
PYTHON_HUMANIZE_LICENSE_FILES = LICENCE
$(eval $(python-package))