bump pyRFXtrx-0.27.0

This commit is contained in:
Andreas Billmeier 2021-06-27 20:00:04 +02:00 committed by Andreas Billmeier
parent c58b828f69
commit 82c65a52f4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST pyRFXtrx-0.26.1.tar.gz 25515 BLAKE2B 8dcfbe611d5859f979ce25d5e56f7c0224c0a1f93c336e13a2fc2d38051ef3e80283b086e0789fd1a9f5cb04ed87f46d003b610ed85d6fed7381c3e82b5962af SHA512 6cd655cbec451dde3869119a894bcb47916ecf6768fde5ff03e2f0c71172610fb379b9ac5a40fe5ba6b288f0ef2d9990cc5fa3e0e6f9377230a8e6af7733cbf4
DIST pyRFXtrx-0.27.0.tar.gz 39586 BLAKE2B 4da02d30fdd2463c26f190e574e152b0e2e9b2d598d859bcb7e7cfbcf773e67a3bda795b8c8b64f968e444710dcf5e6ad78d99c1000d7f85020182851642afdd SHA512 ec4d38c7d97ed3bd2b37c14ede37913517d6b26693d11ae90f3074d4fa75a1ed575625a6f415fda28418f7022c13960f33e4a6aa753b4687a6f4a7e09874d531
EBUILD pyRFXtrx-0.26.1.ebuild 753 BLAKE2B b8bfff84ea42b08a82186cd917f0e0344a7541342ea11dc972857d285929d2ea641e7febdba8399ed9288d9304cca4fca4b529beeec7147622dc58de06e498ed SHA512 da21ce900cdecc1296e43275a05d358931235051a6d37d7750fed0cccd09b759f6f1dd47a03e8f8b1c32b2e8b62c25812a648795d969415400f2e02f53d7a37c
EBUILD pyRFXtrx-0.27.0.ebuild 764 BLAKE2B 1cb42d64a47c9e0a423005216e57191143002ac1d61f46eb87ea6d4612aedd1cd3499048d935025d8c8bea58635b1ce63ac96ca0852e7b6a04d2520b0a3488a4 SHA512 23175f6b4cff9663f4db99fe8497f6bb0a7f4339d68abd40f43789902663a539c72aab6729e1b3cc1f7b550f5990c6bd83966da54d58dd51bf6e1d98e137c632
MISC metadata.xml 446 BLAKE2B 826745aaeaa75cbc4e55bc3875607dba7bc5a56c35ea122df2b2b73fc07bb201fa88b8cc72736c8e64815bc6481fcddf9430e92713d96f022608921dace47872 SHA512 a0b6b7e7d9613affb2999f9c9790baf3179519c4ecb0258a6a288919fae259db91b8272d0ca024814f80cbf80c84e20882d7ce66fa0b2b2cebd84d2bb61712cc

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_{8..10} )
inherit distutils-r1
DESCRIPTION="a library to communicate with the RFXtrx family of devices"
HOMEPAGE="https://github.com/Danielhiversen/pyRFXtrx https://pypi.org/project/pyRFXtrx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/pyserial-2.7[${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
}