bump xbox-webapi-2.0.8

This commit is contained in:
Andreas Billmeier 2020-10-15 06:30:07 +02:00 committed by Andreas Billmeier
parent 28e745ad01
commit 4ff8019675
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 41 additions and 0 deletions

View File

@ -1,3 +1,6 @@
2020-10-15
* bump xbox-webapi-2.0.8
2020-10-14
* add greeclimate-0.9.0
* update omnilogic-0.4.2

View File

@ -1,3 +1,5 @@
DIST xbox-webapi-2.0.7.tar.gz 292094 BLAKE2B 705c821adf27fc01fccece385cf6b34e936e7d07531a59996b1eedd6d388ad36af3b36ef96860a5e7bfb5203de40978a5e9df3424ddba2af524a656c13ada6f7 SHA512 4f07018a60c93560cd9b260cefaba2bf9bb0133f4c90011ccadb6a838706a517947f69e04e41610786e2439918a7a5473e478085a1f0339960b19468d6dee4b0
DIST xbox-webapi-2.0.8.tar.gz 292341 BLAKE2B a82890d1716d2e29f4c574a704d1b75263d6cf08fca349ce6afc613983d52ad2c9ba7a2321fb796a7c0a5a29a96e034e33884f0ebbd6fd450df25815dfeca0c4 SHA512 86fe6fcb0983c4f6aba371e38243f59d202992fa448f8099643418ed137346934a28a21f66d03ce75e96c2de03fa6ac735af6c39c4f4842292fb0945fbe05279
EBUILD xbox-webapi-2.0.7.ebuild 927 BLAKE2B d81d4aa4a7977fb483dff918726d08c2a7447b2a551521433047dfda0329d25e364ab6b73ab03e7b724cd53269f87ddcf4f865441bbb62c60373d8a16c839d18 SHA512 2ad9a485bf7fc7280d65d99c0605bf17c582c4b21d73ba79b4db7e556ec82605563c065a84ea9aba0420cf23c29af07c109006444e5ff4df2567089425b17e27
EBUILD xbox-webapi-2.0.8.ebuild 927 BLAKE2B d81d4aa4a7977fb483dff918726d08c2a7447b2a551521433047dfda0329d25e364ab6b73ab03e7b724cd53269f87ddcf4f865441bbb62c60373d8a16c839d18 SHA512 2ad9a485bf7fc7280d65d99c0605bf17c582c4b21d73ba79b4db7e556ec82605563c065a84ea9aba0420cf23c29af07c109006444e5ff4df2567089425b17e27
MISC metadata.xml 330 BLAKE2B 680fd6a35843f55e103d03b0cf8064360f2e95391b32a3b1c6ee6b663db238938ce9627ee23582ac1529821a2bf2feb62c63aa796536fb3fa04bbabc82383187 SHA512 38ad19361e649f7e6d3bf5922712eccce0cb86990269f76bff9c28aa9f89482e06ee118733591801a1f41df768e99fc017ffb34565910876a5e75925197142c1

View File

@ -0,0 +1,36 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A library to authenticate with Windows Live/Xbox Live and use their API"
HOMEPAGE="https://github.com/OpenXbox/xbox-webapi-python https://pypi.org/project/xbox-webapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/appdirs[${PYTHON_USEDEP}]
dev-python/ms-cv[${PYTHON_USEDEP}]
dev-python/pydantic[${PYTHON_USEDEP}]
dev-python/ecdsa[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
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
}