dev-python/pyecoforest: new package, add 0.3.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-17 18:56:33 +02:00 committed by Andreas Billmeier
parent 75a5e29a89
commit 1de54dec44
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 53 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyecoforest</remote-id>
<remote-id type="github">pjanuario/pyecoforest</remote-id>
<maintainer status="unknown">
<email>prnjanuario@gmail.com</email>
<name>Pedro Januário</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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