add motionblinds-0.1.6

This commit is contained in:
Andreas Billmeier 2020-11-24 19:46:45 +01:00 committed by Andreas Billmeier
parent cdd101c73c
commit dcc7429462
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* bump solax-0.2.5
* update sentry-sdk-0.19.4
* bump denonavr-0.9.7
* add motionblinds-0.1.6
2020-11-21 homeassistant-0.118.2
* bump pymyq-2.0.10

View File

@ -0,0 +1,3 @@
DIST motionblinds-0.1.6.tar.gz 10898 BLAKE2B f5ff48cb581fe6bfc57d9d27c662a222300bfdfc2711f29c255489f8610333b91709e023f47edbbdc244ff263034314a27555485cb047862cdff7b8432824ae1 SHA512 c60100b81fb6c864e574d4b18db73fcf6b951ab2647b810444b2eb556351e50ed0edae061c78a3dc5d12d0ee3db18cac214317b778677bee411cd3e3cf6f91dd
EBUILD motionblinds-0.1.6.ebuild 767 BLAKE2B 87e67fe95593722cd94f2054ca12c54a34fe6b5644cd79c814b5f5ddaf8d5b7cf7d58ec74f3d34571d532bcef657e7fed860847361e43924fa03850bd50a8250 SHA512 788a3ccda257035afde6d3e43c859caa81468f5c955cbb7bd6f4faa28afdf4c1b1eb912f18c7dbcb46966a5e0512261691cdc741982740a10d42973340ae99e6
MISC metadata.xml 460 BLAKE2B 4e3dd3f756cdb4c5ccf4840441692f83f9f670410cfc6ef5c3152d47cf39bc2df6793306abf8fd7f051c7072d97ac4818bb2afb688e063a04ef388a7c48813ce SHA512 b7c5a5cca32c5a3ee235b322b9326927faac4be0378f6c508ec901d93a51dc31e5348c7854971489e695ee4d46268f8b0daf372a28cf576cb8e2d21480a20b7a

View File

@ -0,0 +1,15 @@
<?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">motionblinds</remote-id>
<maintainer status="unknown">
<email>starkiller.og@gmail.com</email>
<name>starkillerOG</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Python library for interfacing with Motion Blinds"
HOMEPAGE="https://github.com/starkillerOG/motion-blinds https://pypi.org/project/motionblinds/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/pycryptodomex[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}