bump adafruit-circuitpython-dht-3.7.0

This commit is contained in:
Andreas Billmeier 2021-12-25 14:07:38 +01:00 committed by Andreas Billmeier
parent 8d77e64e92
commit 00255a978a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 2 deletions

View File

@ -1,3 +1,5 @@
DIST adafruit-circuitpython-dht-3.6.0.tar.gz 30215 BLAKE2B 6eb6cb95ce57ced727dca5294f28f7dace52e8c70a7937501f6db2a15e29b8ea70a11d4529b482c5917ad0b99802607da433f6f6939b1b8290e9cd90401217e7 SHA512 64a9d17f5d73851d89eed5c4fa241ab3bcade10a4016ab2677ffc37dc1e527ea43c566ccc9c0f3300375e6b8899fd42e15482120c1a9394228d25870966f4c51
EBUILD adafruit-circuitpython-dht-3.6.0.ebuild 809 BLAKE2B c646153ac970351ad063b162b009bea0fdae406141a0a7b39b1f08a0bfb6fd5d698d60f16b069428c923bce790069c7c8291f9734aa701cd29dff7616da14595 SHA512 c8043287452f0f457bed62eb2daa1bb16c586b0fbde8e8a0bd2a99b6a9b5b87721962eab5cb9593ceeebd90d711f3c8705f3173f89e66b0d0b2a13a49a7fc824
DIST adafruit-circuitpython-dht-3.7.0.tar.gz 31487 BLAKE2B c55ca4e6070e1db8304936507fa8f80af84795e6b4b1ff6ff254b0ff0bff7a53101986207896002120d8d612614559488b0a2259dd32cadd443a88e5ee178a22 SHA512 86272354aaa17713e33e1ace141239a32a299408ff1d8077a2c797b942e2920d0ee2e0110919234f7164f117ffe58d4fc8a1b0061799fd553d3df079c6214597
EBUILD adafruit-circuitpython-dht-3.6.0.ebuild 807 BLAKE2B 466791468bc5939d92c390116593ce62893104060fabf515eff6405bf4c730be155c936701fd044bd347575504a3b4f511cdef7ee8a4ff732813e3db84b5394b SHA512 54b7b47052ca0d2b11760bb7d35001b20ec9b3d3199f5448a853f6dd6786c49248f3e3d2b3b68b1f8d367ba7a5f318c9b47a1eab3ee80bc68cfdd106f15a7e0e
EBUILD adafruit-circuitpython-dht-3.7.0.ebuild 807 BLAKE2B 466791468bc5939d92c390116593ce62893104060fabf515eff6405bf4c730be155c936701fd044bd347575504a3b4f511cdef7ee8a4ff732813e3db84b5394b SHA512 54b7b47052ca0d2b11760bb7d35001b20ec9b3d3199f5448a853f6dd6786c49248f3e3d2b3b68b1f8d367ba7a5f318c9b47a1eab3ee80bc68cfdd106f15a7e0e
MISC metadata.xml 484 BLAKE2B 32601a3d855d4ca6c32b5431effa176d1b9c8f686c9f2ea638623e748f1e229d046000c28cef6cd3448bc993c59cef0482ff200734be9ed0b208374ced167778 SHA512 69d6d8432330f87b5689a35f77a95f537827b9a498b173b5a0aaa5d7c0c78c1e2ec89b376be22849e914144601544acb4eb9902a454754c656dfb6acc957fd49

View File

@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="CircuitPython support for DHT11 and DHT22 type temperature/humidity devices"
HOMEPAGE="https://github.com/adafruit/Adafruit_CircuitPython_DHT https://pypi.org/project/adafruit-circuitpython-dht/"
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.rst"
RDEPEND="dev-python/Adafruit-Blinka[${PYTHON_USEDEP}]"
BDEPEND="
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
}