bump garminconnect-aio-0.1.4

This commit is contained in:
Andreas Billmeier 2021-06-12 19:42:15 +02:00 committed by Andreas Billmeier
parent c5e8f1d9ee
commit 8534be5ec5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 0 deletions

View File

@ -109,6 +109,7 @@
* update homeassistant-2021.6.2, remove many olds, allow Python 3.9 (not fully tested)
* remove broken homeassistant-min-2021.5.3-r1.ebuild
* update dwdwfsapi-1.0.4
* bump garminconnect-aio-0.1.4
2021-06-04
* cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

View File

@ -1,3 +1,5 @@
DIST garminconnect-aio-0.1.1.tar.gz 4753 BLAKE2B f70e181500f03a94c92697d223227e5e0e013a2be4d8d1a5d4b097ed44463719ab6e72f69b3f52ee9d98ddc7f449fc7e1c7803a1c4de270a3fe078844aaeb3c4 SHA512 e7a546f51297dd7135e1a3ca5b7aa7d0c7a2c31b41547d721b82f98c57c2e5f4b3c3602fa8c4ed9d10a259256438fd351272f5d2559b5a539f52c66dbd6fa895
DIST garminconnect-aio-0.1.4.tar.gz 7933 BLAKE2B 9c43aaf68681cebb06c5494919a77dfa51cbfab861bd566fb257df1ce2539c6bda98741442f5e154e0df06912a2949f1089c86d8f01a39b5f3c7397bc2b3e2e6 SHA512 88e92d4ba75e3a53a168c8834d4aa7749aa50860541460e8ff2a2450a543320b7ca94835e8c700d6e856e214b5762a6976a9e1e810a6bee33c72ad5c80607780
EBUILD garminconnect-aio-0.1.1.ebuild 924 BLAKE2B d51768d30787faced74622e1fb9c266e4f3968b6ce5811dca5718c90174559aeae98ecd148dace955aeea0ea9285a552b235a4f4fe3c5888d656588ddcd8ccb1 SHA512 b869e68a9c04c48cd86f6f35ae9bc797529d8c24b526e8b2c4ec3bf8f630ddaaa6ba9147b98335283617d32a043fc285ce0b65b4366f45ee0ed50623e6b689e0
EBUILD garminconnect-aio-0.1.4.ebuild 924 BLAKE2B d51768d30787faced74622e1fb9c266e4f3968b6ce5811dca5718c90174559aeae98ecd148dace955aeea0ea9285a552b235a4f4fe3c5888d656588ddcd8ccb1 SHA512 b869e68a9c04c48cd86f6f35ae9bc797529d8c24b526e8b2c4ec3bf8f630ddaaa6ba9147b98335283617d32a043fc285ce0b65b4366f45ee0ed50623e6b689e0
MISC metadata.xml 459 BLAKE2B 77b10b4f392e700d0e30e8c3dab4ec9e91e1d038c5f05f8062a0d5445d0998359a80a4c5fa391224ec89f68972070b6ca6509c8ad2e041788fa0215e704b7399 SHA512 d3ea982305bfac5d7cc3846f1dc1d6ffb508fb9144a624cd68d11e4e138979aa375d39e6d31a2b64daa4cea3e116932d1057bc4e6cb7958db97890018cc33344

View File

@ -0,0 +1,36 @@
# 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 Garmin Connect Python 3 API wrapper"
HOMEPAGE="https://github.com/cyberjunky/python-garminconnect-aio https://pypi.org/project/garminconnect-aio/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT license"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.6[${PYTHON_USEDEP}]
dev-python/yarl[${PYTHON_USEDEP}]
dev-python/brotlipy[${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
}