Skip to content

Commit 6328a2c

Browse files
committed
dev-python/esphome-dashboard-api: new package, add 1.2.3
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent b7af155 commit 6328a2c

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST esphome-dashboard-api-1.2.3.tar.gz 3230 BLAKE2B 23317e31d57a1b0a6c0980c2965f8f5a706df0806791a330bb74423049cd7f11508621b664b7f5226b61831b16948785680b4f2781765cd7145c1fdb3dfc34e7 SHA512 0b07563c0cae3b73d15c0e9f7fd5f5ce3514935df89238be092f392c66d9c7a938231d01863c63a8c4d2ee939a6ba5621a15889b1a2c68d6ef98a6501bb2652f
2+
EBUILD esphome-dashboard-api-1.2.3.ebuild 739 BLAKE2B fdb164f4ca55e77a65a47317abd234bef313c599fa931a0106cee20dbc4d27885af482f54ca935688504a95ef9df2bc4c3d1867078847049da58f362119ffab4 SHA512 574edd7e10821d31d4d349c67456fdb804079b7cb4278c7c055c18c222c9ce93f5e212c51f357ba2743e883c1435cc00c78d3382c91a3c889a255f4a14b0a517
3+
MISC metadata.xml 524 BLAKE2B 4f06e9d27d254b466fd13a8a104d59b44be430944610673cd9f0a1faaa71bce0d6a824739c7f060f030fcbe62deaf5c5654255ee1eb8fdbb36e039769a034250 SHA512 eb50881e0311cfb5e82be7a74a6bb6db63319bfe2e1dac5bd8cdfb8b8642222e265a65a95f159e42e2bcba8cd115311fa466093859169d9bf11b2f564ccb11b6
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{9..11} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1
9+
10+
DESCRIPTION="API to interact with ESPHome Dashboard"
11+
HOMEPAGE="https://github.com/esphome/dashboard-api https://pypi.org/project/esphome-dashboard-api/"
12+
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
13+
14+
LICENSE="MIT"
15+
SLOT="0"
16+
KEYWORDS="amd64 arm arm64 x86"
17+
IUSE="test"
18+
RESTRICT="!test? ( test )"
19+
20+
DOCS="README.md"
21+
22+
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
23+
BDEPEND="
24+
dev-python/setuptools[${PYTHON_USEDEP}]
25+
test? (
26+
dev-python/pytest[${PYTHON_USEDEP}]
27+
)"
28+
29+
python_test() {
30+
py.test -v -v || die
31+
}
32+
33+
distutils_enable_tests pytest
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">esphome-dashboard-api</remote-id>
10+
<remote-id type="github">esphome/dashboard-api</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>ESPHome</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>

0 commit comments

Comments
 (0)