bump motionblinds-0.4.7

This commit is contained in:
Andreas Billmeier 2021-01-09 08:10:55 +01:00 committed by Andreas Billmeier
parent 18ab6bed43
commit f537f5fcf9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* update aiokef-0.2.17
* update zigpy-deconz-0.11.0
* update hyperion-py-0.6.1
* bump motionblinds-0.4.7
2020-12-21
* update meteofrance-api-1.0.1

View File

@ -1,3 +1,5 @@
DIST motionblinds-0.1.6.tar.gz 10898 BLAKE2B f5ff48cb581fe6bfc57d9d27c662a222300bfdfc2711f29c255489f8610333b91709e023f47edbbdc244ff263034314a27555485cb047862cdff7b8432824ae1 SHA512 c60100b81fb6c864e574d4b18db73fcf6b951ab2647b810444b2eb556351e50ed0edae061c78a3dc5d12d0ee3db18cac214317b778677bee411cd3e3cf6f91dd
DIST motionblinds-0.4.7.tar.gz 17121 BLAKE2B 158c1be0ac3b776896e339c8e389dd3a47d0cf7edc909ac58a57d0b56b99f234907ac74492d0a75f55a397e408d8a2f2ccefe3f2fef58935eb67b4f2ee0db05c SHA512 ce53347bc2b765e2c671ee13e2147ec3b500adf0b5eeeaa9cb176fc38e840f45eef40b4568cd946dc6c68aedf1c1b528022a21e4ea1c1a3470903a17cdc58bbd
EBUILD motionblinds-0.1.6.ebuild 767 BLAKE2B 87e67fe95593722cd94f2054ca12c54a34fe6b5644cd79c814b5f5ddaf8d5b7cf7d58ec74f3d34571d532bcef657e7fed860847361e43924fa03850bd50a8250 SHA512 788a3ccda257035afde6d3e43c859caa81468f5c955cbb7bd6f4faa28afdf4c1b1eb912f18c7dbcb46966a5e0512261691cdc741982740a10d42973340ae99e6
EBUILD motionblinds-0.4.7.ebuild 767 BLAKE2B f99438f5a248e870e5b385fed86416b13c13ecbefe68f07970420536a1e9942a8f5a9d9dbc66fe1797c2bef45f8c471aa646fb32eb0c6fc7ae9b37eb50c7aa23 SHA512 300c4a4858dd13730e244d46d465a2e41dc354dfdbd9fb174cfa49434b67a431f55b606bcf2926e38706c8419f2679fc1260a8bf6f27e29bfd6da269662aa01d
MISC metadata.xml 460 BLAKE2B 4e3dd3f756cdb4c5ccf4840441692f83f9f670410cfc6ef5c3152d47cf39bc2df6793306abf8fd7f051c7072d97ac4818bb2afb688e063a04ef388a7c48813ce SHA512 b7c5a5cca32c5a3ee235b322b9326927faac4be0378f6c508ec901d93a51dc31e5348c7854971489e695ee4d46268f8b0daf372a28cf576cb8e2d21480a20b7a

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
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
}