dg aiotractive-0.5.2

This commit is contained in:
Andreas Billmeier 2021-08-29 09:31:03 +02:00 committed by Andreas Billmeier
parent bf27aae0a7
commit bbbcf80715
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST aiotractive-0.5.2.tar.gz 7850 BLAKE2B 7a66421a1662897b95d3c8a229053a54250f4f8a6399a1dc13e43afc33e209dc66269dbe601e1f36d61929b5ff5c8c706d7fdb1232c408373fcd6059c3f0c7e5 SHA512 84fb0f585c93c828e1a19fda2b8dabc71ba67dec69677246401e9a1478ad214935ea42ac3e1419bbc48d7d2d78740d681ba5d770aba14c62807ba102200f2be7
DIST aiotractive-0.5.3.tar.gz 7763 BLAKE2B 7da3b438a81a83a00e2c2447bef92a22bdb15edcda3ecd23cf32bf2c61b5331c50deb3c50cf4e07b89ef7586f2eba5a31d9d32097ca0fc33e90a83b2e3b88787 SHA512 37948074e26e56cab03dd11bfd7eb004d13b9adc49f3c39493b839eb7d7f547a1e37916e63c1a64cb7cf06a07b50c494e5fe24304608cd0be66bbe959c9bdb3d
EBUILD aiotractive-0.5.2.ebuild 796 BLAKE2B 12ecb01a96d8d97664e9414bb2acacf8cb5ebdea7a91e0ebdbf5a14832b16b5ab888905062ae36d8297b33935699a51859b4733ff9e5bde52dd337918bdd98e7 SHA512 d9069809f287626f998401b82d830a77ce72a3faa48b8032de3203ddf02e2886938982f443bb95e5547bdd3c794f7455367c0a84add4f5e621d4eae6157fbc49
EBUILD aiotractive-0.5.3.ebuild 796 BLAKE2B 12ecb01a96d8d97664e9414bb2acacf8cb5ebdea7a91e0ebdbf5a14832b16b5ab888905062ae36d8297b33935699a51859b4733ff9e5bde52dd337918bdd98e7 SHA512 d9069809f287626f998401b82d830a77ce72a3faa48b8032de3203ddf02e2886938982f443bb95e5547bdd3c794f7455367c0a84add4f5e621d4eae6157fbc49
MISC metadata.xml 460 BLAKE2B 0c908a4d5979f9bde798211118292ddb1bf68682e90bbdf2d9f86803f4289fcfb81258abfe5851f829afe5ff8dc85ee71c5e40f1cefde349c085c4439705bab5 SHA512 74610d76ddefd9b068595ab46a0bf87317c56167ca917e4c54cdc415f9ad4c0e8ef95b448195bf1b7ef172fa53373332e2ee09afbe9f7c8381e9914a83d41240

View File

@ -0,0 +1,33 @@
# 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="Asynchronous Python client for the Tractive REST API"
HOMEPAGE="https://github.com/zhulik/aiotractive https://pypi.org/project/aiotractive/"
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.7.4[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.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
}