diff --git a/dev-python/pyecoforest/Manifest b/dev-python/pyecoforest/Manifest new file mode 100644 index 000000000..36e5bd213 --- /dev/null +++ b/dev-python/pyecoforest/Manifest @@ -0,0 +1,3 @@ +DIST pyecoforest-0.3.0.tar.gz 9878 BLAKE2B c453b85f5c841d28b43e743e45bcdcbd40cf8fbd8ae6cfc05b499130f7e68fa21460f929eabedda565b46108688f5d2b025794509bfe36718d39ac87df20d041 SHA512 50be04ac1c76202844804a2d193d76ab7b0eee05f53f1aaff2ee6a505b4543933181db415ef53f39e449d925f6bf2063a951f5c73c998cc8b29e6cda5080815b +EBUILD pyecoforest-0.3.0.ebuild 766 BLAKE2B bd568d3b9518f92dfa311cf656875be4842d9e5da8fc5a4f5f2f17643303126a797c64c261c4e54c49bfb9225ef3da16a7a861c038037b062528bd319fe759e9 SHA512 7ce68b86e41b1c3ea368be746835c7539c066e9aee95ee690716397020968c215488e8833f8c005d4172c237dd3ddcbc738920d459dc07933dd5f4aeb1d1e21b +MISC metadata.xml 523 BLAKE2B 37b4ac15d4a18ed632ba391f5f3e18c42b38fe46fdbd547dba6e56a8d460d5223381da5e3aa463bd47c65107d87051018d44a18f6e255fd45de0f06c4f435141 SHA512 46ea3ae3ce3fddedcf1655cc776b8acbd717b1663c4dada8c4bebb8c12d366e20119423d0806a4a5180c65b8a64abf2b29e3a2ce46c44bbd425ec9eeb7b48da7 diff --git a/dev-python/pyecoforest/metadata.xml b/dev-python/pyecoforest/metadata.xml new file mode 100644 index 000000000..2986f147c --- /dev/null +++ b/dev-python/pyecoforest/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + + pyecoforest + pjanuario/pyecoforest + + prnjanuario@gmail.com + Pedro Januário + + + diff --git a/dev-python/pyecoforest/pyecoforest-0.3.0.ebuild b/dev-python/pyecoforest/pyecoforest-0.3.0.ebuild new file mode 100644 index 000000000..a252cffbc --- /dev/null +++ b/dev-python/pyecoforest/pyecoforest-0.3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 pypi + +DESCRIPTION="Python library for ecoforest local device." +HOMEPAGE="https://github.com/pjanuario/pyecoforest https://pypi.org/project/pyecoforest/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/httpx[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/respx[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest