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

Add OVOS-Dashboard and its dependencies

This commit is contained in:
Peter Steenbergen
2021-09-22 15:46:32 +02:00
parent 0603eb27f6
commit 3b8a390b6c
29 changed files with 261 additions and 0 deletions

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_DATACLASSES
bool "python-dataclasses"
help
A backport of the dataclasses module for Python 3.6.
https://github.com/ericvsmith/dataclasses

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/dataclasses/json
md5 c9a52e322ada1406bfde9ebe3cdbbcca dataclasses-0.8.tar.gz
sha256 8479067f342acf957dc82ec415d355ab5edb7e7646b90dc6e2fd1d96ad084c97 dataclasses-0.8.tar.gz
# Locally computed sha256 checksums
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE.txt

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-dataclasses
#
################################################################################
PYTHON_DATACLASSES_VERSION = 0.8
PYTHON_DATACLASSES_SOURCE = dataclasses-$(PYTHON_DATACLASSES_VERSION).tar.gz
PYTHON_DATACLASSES_SITE = https://files.pythonhosted.org/packages/1f/12/7919c5d8b9c497f9180db15ea8ead6499812ea8264a6ae18766d93c59fe5
PYTHON_DATACLASSES_SETUP_TYPE = setuptools
PYTHON_DATACLASSES_LICENSE = Apache-2.0
PYTHON_DATACLASSES_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))