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

MycroftOS: Implementation of a very first initial bootable version

- Add Buildroot patches to downgrade / upgrade package dependencies
  in line with the Mycroft A.I. software stack requirements.
- Add buildroot additional package dependencies in line with the
  Mycroft A.I. software stack requirements.
- Update rpi3 defconfig file.
- Implement initial root_fs overlay filestructure.
- Addition of some quick and dirty helper scripts.
- Update of README to reflect these changes.
This commit is contained in:
Peter Steenbergen
2018-10-30 15:55:12 +01:00
parent b68a2beb9e
commit 55846e484a
209 changed files with 2282 additions and 36 deletions

View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_PYTHON_GOOGLE_API_PYTHON_CLIENT
bool "python-google-api-python-client"
select BR2_PACKAGE_PYTHON_HTTPLIB2 # runtime
select BR2_PACKAGE_PYTHON_GOOGLE_AUTH # runtime
select BR2_PACKAGE_PYTHON_GOOGLE_AUTH_HTTPLIB2 # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_URITEMPLATE # runtime
help
Google API Client Library for Python.
http://github.com/google/google-api-python-client/

View File

@ -0,0 +1,6 @@
# md5, sha256 from https://pypi.org/pypi/google-api-python-client/json
sha256 bb1f27740f6596f8272a2e1033d93d68e27e8ed5d22d6ab957e3f1d3f8ce05f6 google-api-python-client-1.6.4.tar.gz
md5 c5d7139bf56a4e29a0edaedc46e291a1 google-api-python-client-1.7.4.tar.gz
sha256 5d5cb02c6f3112c68eed51b74891a49c0e35263380672d662f8bfe85b8114d7c google-api-python-client-1.7.4.tar.gz
# Locally computed sha256 checksums
sha256 3d0e3d178675046db71fca9a0ee61e59acb4e76a15f934e408e75dfb93758a24 LICENSE

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-google-api-python-client
#
################################################################################
PYTHON_GOOGLE_API_PYTHON_CLIENT_VERSION = 1.6.4
PYTHON_GOOGLE_API_PYTHON_CLIENT_SOURCE = google-api-python-client-$(PYTHON_GOOGLE_API_PYTHON_CLIENT_VERSION).tar.gz
PYTHON_GOOGLE_API_PYTHON_CLIENT_SITE = https://files.pythonhosted.org/packages/b4/b3/f9be3f2ec31491c8f74e5c7905fabe890dedb4e1e8db5c951df3c167be41
PYTHON_GOOGLE_API_PYTHON_CLIENT_SETUP_TYPE = setuptools
PYTHON_GOOGLE_API_PYTHON_CLIENT_LICENSE_FILES = LICENSE
$(eval $(python-package))