diff --git a/dev-python/aionotion/Manifest b/dev-python/aionotion/Manifest index b94288c19..57f04c96f 100644 --- a/dev-python/aionotion/Manifest +++ b/dev-python/aionotion/Manifest @@ -1,3 +1,5 @@ DIST aionotion-1.1.0.tar.gz 9543 BLAKE2B 445fdef7b80f6a41e6d70de39bdb9444f7e11cb76559777eeb4895934d630bb6bfdbebbc8cb3c1b3bbe6b5ad6dde438406c1b1caee350dfb453122955cdbb742 SHA512 a88ba601275a1e50a32b4666a1876f0982875ee76a60d8afa282ef8226900b25879b119aaff25616915d0b990f28c3e48648dcc70ebbc8cce95b6554ad82f88f -EBUILD aionotion-1.1.0.ebuild 697 BLAKE2B c8e54e908252ca3567f1754a0c31bc1f41b90425fa72bdedb851348d765ca149c5d4b594e89ba157ddfb62f0313ba51d5011fd0dc74872182a77be71971ec68d SHA512 80bdde43c684fa482ddfdcb8db7be09bbe6e1a2475b647625ce66bf40fcaf176554b340a7915d02cb0fa80ede21c76016b3157a05d245e668b1bd7cbf4fab6c3 +DIST aionotion-3.0.2.tar.gz 8316 BLAKE2B fce6c11544257183068eeae5429b7b4e03e581e55f8669a2924c92eb06162451806c6c50e67589b698545c7372d9f21069d6a80fec7c1f5735b2f5ac08428dbf SHA512 ae5ffbade34175b66c2d3bdb0a5609a95f371d1fddfbd0d5f5f78609b43a90b708324e665377a7c6250f8fdd53eb6df4ef9bf25955e41ee49d497d8f06343d41 +EBUILD aionotion-1.1.0.ebuild 697 BLAKE2B e43c9e5c42bd3d48b44c619906770ca6c3a506b3505b4f4388d7900e74bc19ddde0a42fd616a5681e0d767d6984f3d45b9a21bd5ea7159e7fe449b4731618b1f SHA512 4f5ee0873718dc31beec2d0d44fcbd3050cd54e952ffca48db470a6cca7b1c562c59e2d176ff180f938210046fed8191e157e285c830066ee197a75ae92dbd50 +EBUILD aionotion-3.0.2.ebuild 800 BLAKE2B 7ab5806ac1e353474b7a7801bed8aef4ca8a1ba83ec58d200df30ea0a2762f799ec19a3be6daba7d2164f5bbc973bc735a994c66b52d24196866e22de82a14c4 SHA512 f815fd9be81aa3a50f634969f9095c5a0fdb3620546ce14536109b0f1c71410043b9605c24b014fa4dca79b805ca1654e75c48261d257e2e64e83f575828fe16 MISC metadata.xml 452 BLAKE2B 1c345e3e94df6560774648c140b60732e16e5afc86ae5d9aaf3e4714161dbf638bac0e625f1d1f5c3bb3d65e287b7548468cd9bb166a60df7c7e689e564e80be SHA512 62553ff914a9039b496c8dc8fcb710678b3e7a7e8445a34bde0a273c4e6f49d6f683ef4b15a8b92b0fffd10e4681b84b50b07e1d1d6f2c973b3aa3ffe94567fb diff --git a/dev-python/aionotion/aionotion-1.1.0.ebuild b/dev-python/aionotion/aionotion-1.1.0.ebuild index 63648e5ac..b64e170e6 100644 --- a/dev-python/aionotion/aionotion-1.1.0.ebuild +++ b/dev-python/aionotion/aionotion-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI="7" -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 diff --git a/dev-python/aionotion/aionotion-3.0.2.ebuild b/dev-python/aionotion/aionotion-3.0.2.ebuild new file mode 100644 index 000000000..b1051b020 --- /dev/null +++ b/dev-python/aionotion/aionotion-3.0.2.ebuild @@ -0,0 +1,33 @@ +# 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 simple Python 3 library for Notion Home Monitoring" +HOMEPAGE="https://github.com/bachya/aionotion https://pypi.org/project/aionotion/" +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.md" + +RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-aiohttp[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}