1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

WIP: Implementing all goodies and required changes / dependencies.

This commit is contained in:
j1nx
2021-01-07 21:21:21 +01:00
parent 96ddea2de3
commit 68d555fb16
71 changed files with 1181 additions and 195 deletions

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_UNIDECODE
bool "python-unidecode"
help
ASCII transliterations of Unicode text.

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/unidecode/json
md5 5d36d06fe14172657e944ac208e9d213 Unidecode-1.1.2.tar.gz
sha256 a039f89014245e0cad8858976293e23501accc9ff5a7bdbc739a14a2b7b85cdc Unidecode-1.1.2.tar.gz
# Locally computed sha256 checksums
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-unidecode
#
################################################################################
PYTHON_UNIDECODE_VERSION = 1.1.2
PYTHON_UNIDECODE_SOURCE = Unidecode-$(PYTHON_UNIDECODE_VERSION).tar.gz
PYTHON_UNIDECODE_SITE = https://files.pythonhosted.org/packages/45/dd/544c34ddf9ab0ead3746110ad6fbdac26ca5f4a1666db22dc8aaf447d0c9
PYTHON_UNIDECODE_SETUP_TYPE = setuptools
PYTHON_UNIDECODE_LICENSE = GPL-2.0
PYTHON_UNIDECODE_LICENSE_FILES = LICENSE
$(eval $(python-package))