update asyncio-dgram-1.2.0

This commit is contained in:
Andreas Billmeier 2021-03-14 16:34:46 +01:00 committed by Andreas Billmeier
parent c8b966baad
commit d01e006034
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 0 deletions

View File

@ -55,6 +55,7 @@
* update simplisafe-python-9.6.7
* bump HAP-python-3.3.2
* update spotipy-2.17.1
* udpate asyncio-dgram-1.2.0
2021-02-17
* bump HATasmota-0.2.9

View File

@ -1,3 +1,5 @@
DIST asyncio-dgram-1.0.1.tar.gz 9347 BLAKE2B 70bb6eec854603c12ba5761a01cc987898829e8275bf1883a1f8286dbadb9744ef402b105c6f652ed8e2d37d903a959ab3517a7bcb3ffa809ddce028855d731b SHA512 1fc7ff4ff5d53988b9f59a5aa229f48ded09283054e3dff9b65ec89df87da668461e16c56fbcdc5797d235986f402e10cef4a6906a535655bdd99064cdb904c1
DIST asyncio-dgram-1.2.0.tar.gz 9792 BLAKE2B f1f668409e6f4c34ba8706e3d7ef35abfff8379e51b381697cf741e168f22dc3bb5978f32e0c30cdbdf534cc0945662a218e44737d2156a94bb2ba4cb2a2b5b0 SHA512 c339ae658f3e6e5a41455a53889aca440f7a0713acce115f215aba3cb5e597226e3528eabaf78a0c9a455194404f9bd32a2518639a0123fceb73e9ee9ab6930f
EBUILD asyncio-dgram-1.0.1.ebuild 697 BLAKE2B dbe038bd11be76735d98bda071bbe9cec297e7d9b4a9b241a114eba16a88e317ad05cb67db44ad25144e976d9dcc6c4819aa0938676618ee673b95074592e836 SHA512 2a0c56e3770ff3fe0a4c5fc9663c680e321fb2bc858b17a2db27067cbbf034cdd7f78bcf28f918c4053ebdd7150af4f0839c199722f33a8e58a82b00926d40a2
EBUILD asyncio-dgram-1.2.0.ebuild 782 BLAKE2B 6901c9408a5d7fe361a13f3d79d26ca4999b3fca8b9676ba2a2eb005fcb1ba7deaa4456ceef4525f5516cce2d8380c4a8ff0217be018af6f2917a42afc8ed4f0 SHA512 5c309196504e01af826d1d441a4b27964384f3ac14dd863803acaddf8cc7441ed7aaa68a6c39ee0a8e4dbd45e48badfa914eece420f9b9f0fbb89db07be68413
MISC metadata.xml 464 BLAKE2B 37de3616cc77cd2b3cfba5d6870ad9ed009819f2049994020def376b5d0ef66bd3d3b2c66367aad1f00257a3b6595f5c52742a5767465c90c5f78a4ce31ae7e6 SHA512 b0fa1f0517019c626c942f519016f9d9bbfd90eea7630e07356558623d16205b91179342c5280f634e19fa455bc13ebe6e173e693a3cb693fce7db84fc712057

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Higher level Datagram support for Asyncio"
HOMEPAGE="https://github.com/jsbronder/asyncio-dgram https://pypi.org/project/asyncio-dgram/"
SRC_URI="https://github.com/jsbronder/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}