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

Implement local-backend

This commit is contained in:
j1nx
2021-01-09 18:47:29 +01:00
parent bb7e6c3d3b
commit 9f904fb811
45 changed files with 440 additions and 15 deletions

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_JSON_DATABASE
bool "python-json-database"
select BR2_PACKAGE_PYTHON_FASTENERS # runtime
select BR2_PACKAGE_PYTHON_PYXDG # runtime
help
searchable json database with persistence.
https://github.com/HelloChatterbox/json_database

View File

@ -0,0 +1,3 @@
# md5, sha256 from https://pypi.org/pypi/json-database/json
md5 4d24414c6cf394fbc75ad37297a88351 json_database-0.5.2.tar.gz
sha256 822ddf0525f5c09de85846d210a6775fba82094d3378fa7352511b5d1f0d1b09 json_database-0.5.2.tar.gz

View File

@ -0,0 +1,12 @@
################################################################################
#
# python-json-database
#
################################################################################
PYTHON_JSON_DATABASE_VERSION = 0.5.2
PYTHON_JSON_DATABASE_SOURCE = json_database-$(PYTHON_JSON_DATABASE_VERSION).tar.gz
PYTHON_JSON_DATABASE_SITE = https://files.pythonhosted.org/packages/e1/f0/3a50ed9deed6b55697e30d874605900a5694e8653b9d9747597b1a670dee
PYTHON_JSON_DATABASE_SETUP_TYPE = setuptools
$(eval $(python-package))