From 3386af58d66f412d3e392c816c63f8f484d61819 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 5 Dec 2021 11:25:30 +0100 Subject: [PATCH] update aiocoap-0.4.3 --- dev-python/aiocoap/Manifest | 2 ++ dev-python/aiocoap/aiocoap-0.4.3.ebuild | 32 +++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 dev-python/aiocoap/aiocoap-0.4.3.ebuild diff --git a/dev-python/aiocoap/Manifest b/dev-python/aiocoap/Manifest index 016599d3e..519a45a15 100644 --- a/dev-python/aiocoap/Manifest +++ b/dev-python/aiocoap/Manifest @@ -1,4 +1,6 @@ AUX aiocoap-0.4a1-no-umlaut.patch 264 BLAKE2B 4c1ba684d5d60ee324a572f04a6345d098b4b32334610eea53085bddcc081d4564cbee1fbb15462ff84d53c5a49757cc13ed2122f85dd87718a613864dabe2bc SHA512 6334856a9538a5e748353fcf1accb174241a5c4846ead94e9b77ec5617dc3718f4e56e10e834d218182e2c65e70bebfb402a756595156836da7323420bbd9437 +DIST aiocoap-0.4.3.tar.gz 210162 BLAKE2B 571eba2d60749a88954c16061fa9e9343ccad6b7e9233aa11fe9fdb1c3e502b8b4d6bbcca5db70bce425d9a78ae754320e3391b1bfc04b0f4118492820d21e05 SHA512 8d4617b3bf825698860cee592e821ce354a11c07422e06f91017d28e6c7e561b529a43a0b40c887b8faf6ec79f21cfedaab210766e2df1d9c8428e4a62087e1e DIST aiocoap-0.4_beta3.tar.gz 192446 BLAKE2B c9e312d8ceeecc4ee2ae25298d5a0b4a0bc750b4e853db9ffd5bfb55ce2e274fec8a8f93e2fbafb8c174c8a097959d05d47f0a239d4db89fd958b874a9032883 SHA512 e1c6326f294b4afed53af22c517143856ce7cc253322fe90762aa30991e5095112ce9ae996cfb55b168b0a1fc15da625bc01493bf8ba4d18cc6293753db49072 +EBUILD aiocoap-0.4.3.ebuild 715 BLAKE2B f942c2f9f3758eb92b96bc3a0610916a1e62905bbdda7ef5dfa2c521dc374b9a8df7a0f590e9eb44f2b59b78a39136df4129a7dd1b2f28c4c4c9bf67dbddf0ec SHA512 adba8ff4cfb6a3cc193df6bc6102203c57b490f710e9edf3b6fac316b523d9249dceaba19debe5ad45c708e8e3fc6a687e12d4568e1feef45c5936116d9fc249 EBUILD aiocoap-0.4_beta3.ebuild 704 BLAKE2B a317346a14c2ae5a62511ba8aace8489cc9b7938d8bd4aa94a9857b27f967624629d86f3eae66c0f2d0e79d98bfba05f3eaffd9da47ad755a3dcf2eedc1d4e2b SHA512 33703c26e42b1e37eaf1fae7b0cc94ef862867811f3b448f2d3f60c964e3c3dd1738f8e15f0302b438d85d14728e08ca3a0a8e07fd1ce702021e94245a874865 MISC metadata.xml 482 BLAKE2B 53699f2f3a15b1e916f02a7c86f9bb6d60e06ceaded7d3d316ddb349db6c6b9f7484a9db7efd5f8409e98f06a1c9b4fa65f4dc7a660daeae890fe38e6402fb27 SHA512 cd667a9d72ee23a8080a0194ccb182d087becc0455a097376b4e081cd2e91d3e9b24f53021950a74d0c90b8f83184ee13c2e98acf6265b965e488489dcc1d7cd diff --git a/dev-python/aiocoap/aiocoap-0.4.3.ebuild b/dev-python/aiocoap/aiocoap-0.4.3.ebuild new file mode 100644 index 000000000..6c182b976 --- /dev/null +++ b/dev-python/aiocoap/aiocoap-0.4.3.ebuild @@ -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="Python CoAP library" +HOMEPAGE="https://github.com/chrysn/aiocoap https://pypi.org/project/aiocoap/" +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/dtlssocket-0.1.11[${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 +}