dev-python/aioridwell: add 2023.1.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-12 08:17:32 +01:00 committed by Andreas Billmeier
parent a6706720e4
commit 72028411d9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 43 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST aioridwell-2022.11.0.tar.gz 12129 BLAKE2B a9f03a6bc9c02d28e42cfb5c7dced2ee1c38c83cb8d5acea87bdbe550288c2780113e12235248325c5454e356322f5b55064a51a3019340b72f87d95ac672ae6 SHA512 76fc7a16b55ca5a255a4fcd7dab1539ac5b5fb4f64e2b93b2674854482de557528d27e26983f6c6f074c719effbfe0aafc2b7800a9c04c9b02bec2cd6d7ec121
DIST aioridwell-2022.3.0.tar.gz 11204 BLAKE2B 406689804b27b817ccaf38cb957c3eb39cb319197cbe1f9cc77330f89d2195d31cf73810c18eb780a701eb487ec48bf8c6059b307c4639ccb3c7dcc33477cb50 SHA512 0e94ce4d1931bd07027a3d1cbdf41c6cd139349b8066a9c1a05ae8b461dd3e79ca17de97434f269e5045895a04c6342f89658683aea648265fb2a70c1f5bb2ee
DIST aioridwell-2023.1.0.tar.gz 12569 BLAKE2B 20a6c7b595cf9a2fca9adaa3c5cd12b0b5dc79644558a72915cb6f6cd25da994251b6996af62ab4a61e242baf6f24f886a8fbdd26b7528572c3ae0b4a22ef87a SHA512 f796611626e92dd4cf3e2c4520f1111391d6057b4c1bb79cdd1529de854a40e5af629f6286a9e0242aef13526e69a57f65749cbb23fadf475f48197f17257727
EBUILD aioridwell-2022.11.0.ebuild 1028 BLAKE2B a6f6679d352a322b4932a66750cf1dfc8a8a6a982366b30171644d42657efe2847a3def8b66339ab04022db731c601af082f808e04771bed9e7b4da9ab602b30 SHA512 434ae5a404c13c3ed3fadb4d1df137ad952863fd9522d7fa324c860ab9ccc6d3b8670a557efbee8174a635be68ece9561884f0c711b6194cfbcb1b215c8ba002
EBUILD aioridwell-2022.3.0.ebuild 1028 BLAKE2B 01cb4e05171393364a64b1d24d86059a74c5362d9c8920d18bdadc3c7a13288c9c3f41a48ea1f25ad45b99ec0a14eb96e61b7fc72b696ad536a5e563436a7291 SHA512 51cd09443f228cc52995e9b30b2848877d9323916a9fdc89fbe2801f850a998a08d8a073eee6461b82f9216413bad5898b54a56c212caf3ae0ccc5104a961bc6
EBUILD aioridwell-2023.1.0.ebuild 1074 BLAKE2B 72fe4d39b629c1ec5e2afe194566ed9b48a91fd33b3683af47ac5e2a2a37260c323c13aac79642a4f7c669fe859b79a737a568395817904c378d409e3fb518e5 SHA512 37f659235bf596c8a5413b7ec589d778fcc14c2c0108043b24777219f63d862d8fb172dcaabcc3e689241451c51f2dd8aba961013906e9de8c1051b4e7876d31
MISC metadata.xml 512 BLAKE2B 9b74197b6684d13b83cab6083dac5e94d68345faa0e23dc31c414e3b37533a971f12506e1ce9a14a76869c3db2a21f1d661e9f24a2074b42ea33f1abdb5939d1 SHA512 2e7e2a545303a6044c0e4f6ac57a799c345af0e99b53d6284aac3742df22e5772abb157e390d1c09635a0057a3308fa2a5ae23ff6d34c4e035719852b74f7ba6

View File

@ -0,0 +1,41 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="A Python3, asyncio-based API for interacting with Ridwell waste recycling"
HOMEPAGE="https://github.com/bachya/aioridwell https://pypi.org/project/aioridwell/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/pyjwt-2.4.0[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.8.0[${PYTHON_USEDEP}]
>=dev-python/pytz-2021.3[${PYTHON_USEDEP}]
>=dev-python/titlecase-2.3[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/aresponses[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest