dg aioridwell-0.2.0

This commit is contained in:
Andreas Billmeier 2021-12-05 21:23:51 +01:00 committed by Andreas Billmeier
parent 12a565c33c
commit 1094d84233
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 37 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST aioridwell-0.2.0.tar.gz 10426 BLAKE2B 4757b8ac661cec8f945f6cdfdc3c480a3467b741e7f23f6f90d9780adf25c9e73ffd546ec7c18e57e8328bed2a1e14b24b4b2069fe3907aec0f148333c4e2907 SHA512 d341f5862e661dd41c80bab80042d36128bf31dd91ab9fcc8e61672515fa7b2202465816c7dcfb120ab67ffdb4ea3f5b91414c0de2a57a01edd48c1ff5eb3daf
DIST aioridwell-2021.10.0.tar.gz 10447 BLAKE2B b41cec0191e4344f9a7822e63c4da7550e3b58a7c9dfbe9a3ca20a6599be71369396d74364c5ec7235ed0dfffe65098807fbb99f249a871e420a906b67258dab SHA512 f9afaf76c0386a0df2b2c6c4b76f499381c09e35fbdd5e29d8d94eb133077636b06d2715e9b8a2490c89e9ea92c518470d45b97769e77aa60281b043437087e9
EBUILD aioridwell-0.2.0.ebuild 904 BLAKE2B c330bde8199db8bcce8496e0b8878307051d482b82f3adaf8634503369b08afd6620bad005de53f35ef38c3b3f36b9ad10a849f163f6e78932a1f431ab19c7e6 SHA512 b181a5596a712fd20330c00f8948ccd488883c42575f624e902576a3dd52a10871b3a9cd4bcac9f045d65ddc3b2a7bb1c8635267670c0124fd9285d0fc386bb6
EBUILD aioridwell-2021.10.0.ebuild 904 BLAKE2B c330bde8199db8bcce8496e0b8878307051d482b82f3adaf8634503369b08afd6620bad005de53f35ef38c3b3f36b9ad10a849f163f6e78932a1f431ab19c7e6 SHA512 b181a5596a712fd20330c00f8948ccd488883c42575f624e902576a3dd52a10871b3a9cd4bcac9f045d65ddc3b2a7bb1c8635267670c0124fd9285d0fc386bb6
MISC metadata.xml 453 BLAKE2B a254e4b2fa990c63fd2686ad41923a3e8a6b9bbe0c5b124ea02855e283b4082a9c34aba9f187f13e9d9ed9996bad137c341befaaa8a59481e9f80308896e7a8e SHA512 394b2c887437def807d2901503c2824a237f8fdd393440c8511d0b62602ed6b0511c758ba580eefd438500912706c3fd7867cc7ad5ee80440340e55038eba4b1

View File

@ -0,0 +1,35 @@
# 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, 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 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/pyjwt-2.1.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/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}