dev-python/azure-kusto-ingest: new package, add 3.1.0
Closes: #3387 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
a0cdf54503
commit
f1189929ad
@ -73,6 +73,7 @@
|
||||
|awair|Library to integrate the Awair GraphQL API into Home Assistant|N|Y|Y|0.84|
|
||||
|aws|Interact with Amazon Web Services|N|N|Y|0.91|
|
||||
|axis|Communicating with newer devices from Axis Communications|Y|Y|Y||
|
||||
|azure_data_explorer|allows you to forward events to Azure Data Explorer|N|N|Y|2024.6.0b4|
|
||||
|backup|allows you to create and download backups for your Home Assistant Core|Y|Y|Y|2022.4.0b0|
|
||||
|baf|Integrates Big Ass Fans devices into Home Assistant|N|N|Y|2022.6.0b0|
|
||||
|baidu|Text-to-speech platform uses Baidu TTS engine to read a text with natural soundi|N|Y|Y|0.59|
|
||||
|
@ -130,7 +130,7 @@ The Ebuild we have since `0.97.0`, as soon as I know that at least one user is a
|
||||
### `app-misc/homeassistant-full`
|
||||
|
||||
WARNING: This one currently breaks (caused by shell limitations) emerge with an 'Argument list too long' error. It compiles with a [kernel hack](https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/190#issuecomment-1002). Thanks to @gcampagnoli.
|
||||
This Ebuild contains USE Flags for (nearly) all components of Home Assistant with external dependencies. Most components compile, but these are too many (for me) to run tests for all of them on a regular schedule. It holds **987** USE Flags.
|
||||
This Ebuild contains USE Flags for (nearly) all components of Home Assistant with external dependencies. Most components compile, but these are too many (for me) to run tests for all of them on a regular schedule. It holds **988** USE Flags.
|
||||
|
||||
A list of all components aka USEFlags is generated with every release [DOMAINTABLE.md](DOMAINTABLE.md)
|
||||
|
||||
|
3
dev-python/azure-kusto-ingest/Manifest
Normal file
3
dev-python/azure-kusto-ingest/Manifest
Normal file
@ -0,0 +1,3 @@
|
||||
DIST azure-kusto-ingest-3.1.0.tar.gz 16305 BLAKE2B ac319dbb70f782829e3daca5d830358dfc8434f4b45f135b2b6306af55555eac0c71e07a8d4b1cdc7c70e189888f2df754bdbcfccda94a01b35700d2d2604d8f SHA512 1c8cfd1f01ef9fb950c90145f123026ee27fe2482670b99080c497793f7fa2ca3a1bda088f42316bdba0f1261ae8094c7f433ac072255f00cb3e4b1e1fb1cef0
|
||||
EBUILD azure-kusto-ingest-3.1.0.ebuild 821 BLAKE2B fa3a6244967953087c1000a3bd174d0ff4b8970333441d3fdd1a20bdd2de27fc368dc41ab3d1cf754d349219345d1e540fffd70ec67c09f479be07f40e36f956 SHA512 5c6f8b7a5150e597f270a156de5c12e69f9ac2fb1c0a92edc06e623b5120a3a4f1a44a9c56e90d7d2dd0b96859ddca9ae5b6ec62cd46f4f871f2423435a75dee
|
||||
MISC metadata.xml 539 BLAKE2B 8ee1f2f27d459dd85273f00c405f761fa77b4e9440b21551dbce7022c2a8bc0dce1c7ddf63418b79c8947bf493f689d95b749d96315852d099a3d4de6dc5d145 SHA512 6456804a4107548120587d29aa07e5bbcadfe31197236c9294eec21a46ee474687052c902967ecac71461a3b088c73e9420cbb2e81134d77527d302f3f8b0ee9
|
@ -0,0 +1,32 @@
|
||||
# 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=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Kusto Ingest Client"
|
||||
HOMEPAGE="https://github.com/Azure/azure-kusto-python https://pypi.org/project/azure-kusto-ingest/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
#DOCS="README.md"
|
||||
|
||||
RDEPEND="~dev-python/azure-kusto-data-${PV}[${PYTHON_USEDEP}]
|
||||
>=dev-python/azure-storage-blob-12[${PYTHON_USEDEP}]
|
||||
>=dev-python/azure-storage-queue-12[${PYTHON_USEDEP}]
|
||||
>=dev-python/tenacity-8.0.0[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e '/namespace_packages/d' setup.py || die
|
||||
distutils-r1_src_prepare
|
||||
}
|
16
dev-python/azure-kusto-ingest/metadata.xml
Normal file
16
dev-python/azure-kusto-ingest/metadata.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>b@edevau.net</email>
|
||||
<name>Andreas Billmeier</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">azure-kusto-ingest</remote-id>
|
||||
<remote-id type="github">Azure/azure-kusto-python</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>kustalk@microsoft.com</email>
|
||||
<name>Microsoft Corporation</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
Loading…
Reference in New Issue
Block a user