Skip to content

Commit db7e24a

Browse files
committed
dev-python/motionblindsble: new package, add 0.0.9
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3129 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent b1cd97a commit db7e24a

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

dev-python/motionblindsble/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST motionblindsble-0.0.9.tar.gz 19653 BLAKE2B e446216414af165fb3bf1be107205207c998dbe5afd9a2da0a1cd3094c1b920885dbe04acf89b264c1d3fe7b266c80b121810fe363cda8a17cedd948684f3b74 SHA512 da1d1c69dde939c5e2697c8041d15e64e9081939d187bed9692694ea9f264c1651e650540d919d82606f9740d8e5fabb08b436b1ef1bf81f3be219bc0f20d5ed
2+
EBUILD motionblindsble-0.0.9.ebuild 821 BLAKE2B 77a25e078158d2c922d852d61fe004f028971d65bdc123ff3b2d7a361a68b255dd39be1aaaa2a0ab77309eedeac32986534e51c02e5746ffe4d753a8867913df SHA512 e2f85a0078b20ac780110fe580644b915c9c68feb849279d1fa2a270a8ae1ab94be9b28a35eb1cfee7eb89534843643aabf9ff917980fa5380b42955fb6e8c20
3+
MISC metadata.xml 522 BLAKE2B 164b926f5d3c0ea661f77acfab954f7140c284431aed5a13a55fb3580fe688abc6460be21e11338c2bb97470dddfd7d316f4d0328c6eea33830084be06145b4f SHA512 359dee144ddb01b9f7b722654fdc19d47a7bc61ed1ebfafc1fb88890ccedb93641b243c472016280d784ff40245aada337d75b7d44037103582955cd68d4c799
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">motionblindsble</remote-id>
10+
<remote-id type="github">LennP/PyPi-Motionblinds_BLE</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>LennP</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..12} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Python library for interfacing with Motionblinds using Bluetooth Low Energy (BLE)."
11+
HOMEPAGE="https://github.com/LennP/PyPi-Motionblinds_BLE https://pypi.org/project/motionblindsble/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND="dev-python/bleak[${PYTHON_USEDEP}]
22+
dev-python/bleak-retry-connector[${PYTHON_USEDEP}]
23+
dev-python/pycryptodome[${PYTHON_USEDEP}]"
24+
25+
src_prepare() {
26+
sed -i "s/packages=find_packages()/packages=find_packages(exclude=['tests*'])/g" -i setup.py || die
27+
eapply_user
28+
}
29+
30+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)