dev-python/esphome-dashboard-api: add 1.3.0
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
8900b9f7f6
commit
0a7eb0b994
@ -606,11 +606,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
|
||||
|
||||
## Licenses
|
||||
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
|
||||
There are 2376 Ebuilds in total, 2358 of them have in total 2399 (43 different) licenses assigned.
|
||||
There are 2377 Ebuilds in total, 2359 of them have in total 2400 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1354|
|
||||
|MIT|1355|
|
||||
|Apache-2.0|545|
|
||||
|GPL-3|150|
|
||||
|BSD|125|
|
||||
|
@ -1,3 +1,5 @@
|
||||
DIST esphome-dashboard-api-1.2.3.tar.gz 3230 BLAKE2B 23317e31d57a1b0a6c0980c2965f8f5a706df0806791a330bb74423049cd7f11508621b664b7f5226b61831b16948785680b4f2781765cd7145c1fdb3dfc34e7 SHA512 0b07563c0cae3b73d15c0e9f7fd5f5ce3514935df89238be092f392c66d9c7a938231d01863c63a8c4d2ee939a6ba5621a15889b1a2c68d6ef98a6501bb2652f
|
||||
EBUILD esphome-dashboard-api-1.2.3.ebuild 673 BLAKE2B 5647e5767e35954b48197f4f0a6a181a724b7e969a20906c3fba96913963a5079c1d163770994f3e3dc99c1e5afcc375ddeb4228ef15e7276eeeb2d08ffa23f1 SHA512 bf823d9fa44936abb9807175b56b5835ea23d45a0e20936399ca73292fddef01930c39ab9dc4075f08b492e7eeadfe36d4d3d571eb7e1975d564bfd02ae07b55
|
||||
DIST esphome_dashboard_api-1.3.0.tar.gz 3333 BLAKE2B 2aa8c1cc6afc0267505b27a1fd6f984f7927170ad4aafe259840e0866354280aca53bef827e5e12961344607fccfde0329e219b84c3b79aea3d749b79eef76e0 SHA512 f483e03f5668979c02709f23f63755acc5846e9307ea37852d7018305759a51a2c0b916507309c2056d6e2cb44af8c5407570c245c72a069bbc251038c200dfe
|
||||
EBUILD esphome-dashboard-api-1.2.3.ebuild 682 BLAKE2B b6784c570a6febbf2c41f0e8780b8c76b70542bf616f38f826a406e7385064b8dce89a8c91f89fd76b90157cd99be6b4f0cc49d4b4928ca64f3feacd47e8ef5c SHA512 aa0f1341b97819de24d1b5cfa1e83241ae6928c1783b72b7abdb4dac71a124639a4e5e33a6db0612e77db70d616546d220ccf5a64d6e22c156fa79818232ed73
|
||||
EBUILD esphome-dashboard-api-1.3.0.ebuild 597 BLAKE2B c9f46414e4326d2430aa2cc168875211acb9d5f29b2543c3565216c3fa85747cb632bf7214adbd26873914bb165466a66575be28bc0b2be6a7b4c85f6bc11066 SHA512 48a95894a37f75e2129a5aea3d6d85664b2e19f90601116b8e3c0761b28f960e4465a0ca78bccf870cc3799d9747aa2bc9f6df916019ee06edc19f949981a18c
|
||||
MISC metadata.xml 524 BLAKE2B 4f06e9d27d254b466fd13a8a104d59b44be430944610673cd9f0a1faaa71bce0d6a824739c7f060f030fcbe62deaf5c5654255ee1eb8fdbb36e039769a034250 SHA512 eb50881e0311cfb5e82be7a74a6bb6db63319bfe2e1dac5bd8cdfb8b8642222e265a65a95f159e42e2bcba8cd115311fa466093859169d9bf11b2f564ccb11b6
|
||||
|
@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
@ -0,0 +1,24 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="API to interact with ESPHome Dashboard"
|
||||
HOMEPAGE="https://github.com/esphome/dashboard-api https://pypi.org/project/esphome-dashboard-api/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/orjson[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user