bump pyserial-asyncio-0.5

This commit is contained in:
Andreas Billmeier 2020-12-14 18:47:35 +01:00 committed by Andreas Billmeier
parent b6aebac488
commit 73a49fa9db
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* bump hass-nabucasa-0.39.0
* bump home-assistant-frontend-20201210.0
* update pyserial-3.5 from main repo
* bump pyserial-asyncio-0.5
2020-12-09
* update pyarlo-0.2.4

View File

@ -1,3 +1,5 @@
DIST pyserial-asyncio-0.4.tar.gz 28435 BLAKE2B af19d65332e73efd5611a529c9a7f6aff96d21d06fcf5d78651a6852c8882b2f9ab2af3f373d197e6fd6b0cb75930a7ee849476780a26a4520671d4898e2cf3c SHA512 15b92068d1a6b6a34d2edc8bfdaafddffa5f932acb6294b522539318df766c0c373c3cdd7eab4b09e1c718d20d59d9916e70e70ea2430f725ede58c39f5f955a
DIST pyserial-asyncio-0.5.tar.gz 30286 BLAKE2B da223edfc16276142da70975e0207a5f798daeb45b188fe693d3434cc5598784cb51763cd8f8735d078f8c94349da84e94bbc5a47a9f146d8055b01522aa2621 SHA512 a354cdd277afea02821929060d4d710308b2442d74a827e01aba7fbdb847a9d8da2977eae0dadb79a30c21fbd34405dcd98975ffd1bc282ac8b843dfe7b4e559
EBUILD pyserial-asyncio-0.4-r1.ebuild 761 BLAKE2B 1c7aa3beb691b6ff4b0a672d62b83a64db41148dd116cedb604cb55aacc1305245b44c4a4fddd5fbe8f1ef7fb880e001e5065469ac9130bd782dddac2a48d485 SHA512 6df258dbf48385322ecde89ddd53e7f7e319aa00c59277d39eee06907c5ef5d30cb93e640005182dd3b2df58606ad03ff2a57121632883b6a1aab8af658d7f3a
EBUILD pyserial-asyncio-0.5.ebuild 747 BLAKE2B 90a19e681b7393361c42dfa42bc7ca252028aedefc25bda43a68b1a5c3cb69e4c9b76d57919520f148ff4d96fd961173da5b17c9dd2947e8981f94f138caf592 SHA512 f0ce6bfa5d70a83caeb2c4fcdd1ec83f458875bc816846fbf968c80b53fc2364317b750b64c4e472e11a991913cf5a79fa34e68bb416638f452282c19f9600bb
MISC metadata.xml 335 BLAKE2B 73c210fe56f0b63d0330907a913c6ea3ce66fbaad77c8616e041defc119bc5e269cfa1e47861384e77fda01559e4538d1847e107e5f8e4d40bf6206314387fbd SHA512 4b54186f6873c36141059d5629d1a521cb5488b301d1e1cb7bc5dfdffc8ffb740cbd5cc9a015120f9148302bddd9acfdea20b0167a967e3fb0b2c0a94e233028

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 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 Serial Port Extension - Asynchronous I/O support"
HOMEPAGE="https://github.com/pyserial/pyserial-asyncio https://pypi.org/project/pyserial-asyncio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 amd64-linux x86-linux"
IUSE="test"
RDEPEND="dev-python/pyserial[${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
}