-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3462 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST wyoming-1.5.3-py3-none-any.whl 26598 BLAKE2B b950350a4ab438eb497060f1456c9b5621aef82149ef5666779e203691b5cc170117c6d6f08ab89fc10286201abbf8156af8f065e45ab8dacc4226d7c035d2a3 SHA512 9481cd6744726710edb895be5218420947f190b1e7e51d3c7f49227581f660a164413ab15324db9ab9b27478ea12344abee2df101c286fd55819ec6edc325f4f | ||
EBUILD wyoming-1.5.3.ebuild 558 BLAKE2B 483d3a93d8a8d40bb8ffbfe2e60d78ea24648bb3673ee3869f1667572bd79068089a561215c4bd916527f9f1a662375ab9340e464d8b4367ccfb057557e32842 SHA512 22435b231a9a33b3ac0c1628ef5e594f50ff0d7616fb39c598c38e629018a093e8244ee90758ac951516b8f6226b71ec98cea498a41940d9a2777af00fbec07e | ||
DIST wyoming-1.5.4-py3-none-any.whl 27641 BLAKE2B 19674887125de8f117e0c02883b008142ae675188af02f496e93c45cd778911fd0dc2f44ddf093d3c11575bc822dcea85b01b71fc856b57967bf12938bbe822a SHA512 dd3bc4fc578907701f366158cd17c9cdfde2e0c9c43e966c6a30e2b1b32eac6879875022ec7c4f890a61a585748d544e9e5018a4b34b98c396f6cfdceafe062b | ||
EBUILD wyoming-1.5.3.ebuild 558 BLAKE2B 80c5ab69f6be3ec72377831cec69eada6c99ce689f20e49c0ac2f9173e86847b6d57fbb2bc18abebc222626b30e5acbdea057a2d1261f2ea48730fa4d224e05b SHA512 a13947195189b123302bcba3fd05e18b8f957bad018feabdd255d09e97a908d3a257921b33c7d3dc5b36c7a9c519f20a4377189da7f6bcac6270801f00fe1c18 | ||
EBUILD wyoming-1.5.4.ebuild 558 BLAKE2B 80c5ab69f6be3ec72377831cec69eada6c99ce689f20e49c0ac2f9173e86847b6d57fbb2bc18abebc222626b30e5acbdea057a2d1261f2ea48730fa4d224e05b SHA512 a13947195189b123302bcba3fd05e18b8f957bad018feabdd255d09e97a908d3a257921b33c7d3dc5b36c7a9c519f20a4377189da7f6bcac6270801f00fe1c18 | ||
MISC metadata.xml 507 BLAKE2B cd73286c2b747ed18091ba71363dc2b4a755318ebe4d423c9f6b888c39943d44c316144fee14d13f9f80d751eb6cb670f74c2171606d1ce2868dba43749e124a SHA512 894fdd65c3d373664850cf576eff7ac7ef22bcbe5d7f2757d367b6eee8405da2bda3d216313a83e91745c553d0601e5d5a2b722dc8463bf454471d9e51b998ab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=standalone | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Protocol for Rhasspy Voice Assistant" | ||
HOMEPAGE="http://github.com/rhasspy/rhasspy3 https://pypi.org/project/wyoming/" | ||
SRC_URI="$(pypi_wheel_url)" | ||
S=${WORKDIR} | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
|
||
#DOCS="README.md" | ||
|
||
python_compile() { | ||
distutils_wheel_install "${BUILD_DIR}/install" "${DISTDIR}/${P}-py3-none-any.whl" | ||
} |