mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-06-05 22:19:21 +02:00
Switch to HolmesV
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
From c33439e2093fe832effcdbe4f04fb912140a40e2 Mon Sep 17 00:00:00 2001
|
||||
From: j1nx <p.steenbergen@j1nx.nl>
|
||||
Date: Sun, 16 May 2021 11:36:09 +0200
|
||||
Subject: [PATCH 1/1] Add entry_points for binaries
|
||||
|
||||
---
|
||||
setup.py | 15 ++++++++++++++-
|
||||
1 file changed, 14 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index d8b11261..96feec0f 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -87,5 +87,18 @@ setup(
|
||||
|
||||
},
|
||||
packages=find_packages(include=['mycroft*']),
|
||||
- include_package_data=True
|
||||
+ include_package_data=True,
|
||||
+
|
||||
+ entry_points={
|
||||
+ 'console_scripts': [
|
||||
+ 'mycroft-speech-client=mycroft.client.speech.__main__:main',
|
||||
+ 'mycroft-messagebus=mycroft.messagebus.service.__main__:main',
|
||||
+ 'mycroft-skills=mycroft.skills.__main__:main',
|
||||
+ 'mycroft-audio=mycroft.audio.__main__:main',
|
||||
+ 'mycroft-echo-observer=mycroft.messagebus.client.ws:echo',
|
||||
+ 'mycroft-audio-test=mycroft.util.audio_test:main',
|
||||
+ 'mycroft-enclosure-client=mycroft.client.enclosure.__main__:main',
|
||||
+ 'mycroft-cli-client=mycroft.client.text.__main__:main'
|
||||
+ ]
|
||||
+ }
|
||||
)
|
||||
--
|
||||
2.20.1
|
||||
|
25
buildroot-external/package/python-holmesv/0002-Shut-up.patch
Normal file
25
buildroot-external/package/python-holmesv/0002-Shut-up.patch
Normal file
@@ -0,0 +1,25 @@
|
||||
From 24635b3feccacadfbc14151eb108eb92d2ca710e Mon Sep 17 00:00:00 2001
|
||||
From: j1nx <p.steenbergen@j1nx.nl>
|
||||
Date: Sun, 16 May 2021 11:40:29 +0200
|
||||
Subject: [PATCH 1/1] Shut up
|
||||
|
||||
---
|
||||
mycroft/skills/skill_updater.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/mycroft/skills/skill_updater.py b/mycroft/skills/skill_updater.py
|
||||
index 500e7168..ee7ab5c6 100644
|
||||
--- a/mycroft/skills/skill_updater.py
|
||||
+++ b/mycroft/skills/skill_updater.py
|
||||
@@ -121,7 +121,7 @@ class SkillUpdater:
|
||||
platform_default_skills = default_skill_groups.get(self.msm.platform)
|
||||
if platform_default_skills is None:
|
||||
log_msg = 'No default skills found for platform {}'
|
||||
- LOG.info(log_msg.format(self.msm.platform))
|
||||
+ #LOG.info(log_msg.format(self.msm.platform))
|
||||
else:
|
||||
default_skills.update(platform_default_skills)
|
||||
|
||||
--
|
||||
2.20.1
|
||||
|
@@ -0,0 +1,25 @@
|
||||
From 9a4b0be48247d33c51e82a94bcfc175dbe666cfe Mon Sep 17 00:00:00 2001
|
||||
From: j1nx <p.steenbergen@j1nx.nl>
|
||||
Date: Sun, 16 May 2021 11:43:32 +0200
|
||||
Subject: [PATCH 1/1] Set version to OpenVoiceOS
|
||||
|
||||
---
|
||||
mycroft/version/__init__.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/mycroft/version/__init__.py b/mycroft/version/__init__.py
|
||||
index 7280ce64..f8e6b266 100644
|
||||
--- a/mycroft/version/__init__.py
|
||||
+++ b/mycroft/version/__init__.py
|
||||
@@ -31,7 +31,7 @@ CORE_VERSION_BUILD = 1
|
||||
CORE_VERSION_TUPLE = (CORE_VERSION_MAJOR,
|
||||
CORE_VERSION_MINOR,
|
||||
CORE_VERSION_BUILD)
|
||||
-CORE_VERSION_STR = '.'.join(map(str, CORE_VERSION_TUPLE)) + "(HolmesV)"
|
||||
+CORE_VERSION_STR = '.'.join(map(str, CORE_VERSION_TUPLE)) + "(OpenVoiceOS)"
|
||||
|
||||
|
||||
class VersionManager:
|
||||
--
|
||||
2.20.1
|
||||
|
7
buildroot-external/package/python-holmesv/Config.in
Normal file
7
buildroot-external/package/python-holmesv/Config.in
Normal file
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_PYTHON_HOLMESV
|
||||
bool "python-holmesv"
|
||||
help
|
||||
Mycroft Core, the Mycroft Artificial Intelligence platform.
|
||||
packaged as importable library.
|
||||
|
||||
https://mycroft.ai/
|
@@ -0,0 +1 @@
|
||||
sha256 c2647e9bd49d64c30e6b173b781ccd2325a0bc61c90b8e9f8ed47fd150948616 python-holmesv-302277ec47185e1728ca7b08ef8a647d1102c585.tar.gz
|
12
buildroot-external/package/python-holmesv/python-holmesv.mk
Normal file
12
buildroot-external/package/python-holmesv/python-holmesv.mk
Normal file
@@ -0,0 +1,12 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-holmesv
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_HOLMESV_VERSION = 302277ec47185e1728ca7b08ef8a647d1102c585
|
||||
PYTHON_HOLMESV_SITE = $(call github,HelloChatterbox,HolmesV,$(PYTHON_HOLMESV_VERSION))
|
||||
PYTHON_HOLMESV_SETUP_TYPE = setuptools
|
||||
PYTHON_HOLMESV_LICENSE_FILES = LICENSE
|
||||
|
||||
$(eval $(python-package))
|
Reference in New Issue
Block a user