diff --git a/dev-python/aioflo/Manifest b/dev-python/aioflo/Manifest index 1a400e76c..7ca6b7d13 100644 --- a/dev-python/aioflo/Manifest +++ b/dev-python/aioflo/Manifest @@ -1,3 +1,5 @@ DIST aioflo-0.4.1.tar.gz 9477 BLAKE2B 52541ce19ca35199133a8f01a506636e5509cff33bdc93c8e8d8cb889fdd38a9ccfe6f97a43ba272652eeef62d4d55a916cf33afd080fd0b2268067e93491a19 SHA512 a0863b19b9b0a85eb87eefe373b84cd767c482ba00f183f6ebfa895e7887a2bd7b5c62615b573ced4ed1caaacd6ca4178559a9a5ab1e29bcb75febb42d09d209 +DIST aioflo-2021.11.0.tar.gz 9692 BLAKE2B 030a658798f425922c3d948fb135eb0c82ebd96015176d872824f6ec05f327ba02614f477715fa9b162e21fa0fdb616dc18be35bfcdd4398098344096f71f9a8 SHA512 287b7c868aaec726e4ce7ed31193563cbd9c5c07959d347541f83f08faeaf33d4b649db83cc7b2653ec8f7542352fbd624002e22eb084c15f1892f80700546f5 EBUILD aioflo-0.4.1.ebuild 762 BLAKE2B dea371719fce0010d7ba4fdffc420fcb05e4e9362fc4c7958f50d7fd1253c47eab8cffcb6683e97c87e7a95de1eb4232046765b8c63e77b2b1e37d2f50c5e1cf SHA512 d32ba194564fbe6f2473ed30a52eaf221c93dfab9ad84535a2d285f1354e1f620488e723d978629477749ecafcda8d4524716e44bf33671d23350c6af69df9c6 +EBUILD aioflo-2021.11.0.ebuild 760 BLAKE2B 6d3623cae409f9898dd72a896bdd07c7ad72f43407d7ba82b9e3e7e8433a4b91ee8445ed8d2fe076d70dc76a389f89c4ad64c6d60390b45485d1e88400017532 SHA512 374e5b3bec0be3d743c432a118d8fc9cac5bb0e07150c3a32eb5502416037b055f8d094cd9a4f8056e6bc04bf45226bc59b9fe9698939ae62eb797a5383e2827 MISC metadata.xml 449 BLAKE2B cfb15823b8108d60e7e1d32c2e2fc22b030d5f9215691dd1e181ce25b1a19f8094b4854e2db32690273fa1f03fe3839db73b19f22c0e3eccd6d951ce43d4f461 SHA512 eefb584182dfb347f8827d2ed575356fa2a85081cae6621f1dc33e3035c1071435a95fa47975bbf92a7e44c69f31cf7a30dec073558c1403f1ca6f7cc4db2f2d diff --git a/dev-python/aioflo/aioflo-2021.11.0.ebuild b/dev-python/aioflo/aioflo-2021.11.0.ebuild new file mode 100644 index 000000000..0ff7700e4 --- /dev/null +++ b/dev-python/aioflo/aioflo-2021.11.0.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="A Python3, async-friendly library for Flo by Moen Smart Water Detectors" +HOMEPAGE="https://github.com/bachya/aioflo https://pypi.org/project/aioflo/" +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.8.0[${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 +} diff --git a/dev-python/aioflo/aioflo-2021.11.0.ebuild~ b/dev-python/aioflo/aioflo-2021.11.0.ebuild~ new file mode 100644 index 000000000..eec74cbd5 --- /dev/null +++ b/dev-python/aioflo/aioflo-2021.11.0.ebuild~ @@ -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 Python3, async-friendly library for Flo by Moen Smart Water Detectors" +HOMEPAGE="https://github.com/bachya/aioflo https://pypi.org/project/aioflo/" +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.6.2[${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 +}