bump aioazuredevops-1.3.5

This commit is contained in:
Andreas Billmeier 2020-08-01 09:35:55 +02:00 committed by Andreas Billmeier
parent 91dc794dfb
commit 756a789012
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -9,6 +9,7 @@
* bump wirelesstagpy-0.4.1
* update pywemo-0.4.45
* bump pyads-3.2.1
* bump aioazuredevops-1.3.5
2020-07-29 homeassistant-0.113.2
* update homeassistant-0.113.2

View File

@ -1,3 +1,5 @@
DIST aioazuredevops-1.3.4.tar.gz 5240 BLAKE2B 5f86eeb55e0ac16c26c7e007d262355b5a480292e585ae05d475fad9e5d976cbefd5f7dcb3210a291500525f3f4b3917e0ab1763e34fc9716d289c827165abc9 SHA512 e908a94bb0f2daea53b063d3ea1a613523c0491e07c17f30e6eb58ad60ab5defab9b9134795351d9a634cf071b4ad4cd52ee14de4dbf57efba84c3a2a4df0155
DIST aioazuredevops-1.3.5.tar.gz 5241 BLAKE2B 33c90ce3d78c0644422f98f0469fa7ccdd0dc4fcc7e3c6729ed9703a2f59b99bb4684a542aeae8a22308dce3831f18efa40d2ae8a46380b8a60055bb6e26e58f SHA512 1aceec94f78b6108b6d3ef1246adf2708eebdbb39c16f981480cd8cce0b648b926bc98047f8290d865d77a42e786b4c706c03731d7ca806c5d2e29973b9d5005
EBUILD aioazuredevops-1.3.4.ebuild 770 BLAKE2B 9dd480b75a7896c2cb73ccb761df5f42470f1f5023ed9387c459479645ba8f29caec0a06ee9f75f767da1d655476f8cbb15216553c57ced9ba74cd405d4a9c7b SHA512 d84972760977da41a18c3844f7e6eea386bf5b77828a36638e7bd811b39a9e3f02dc2b3421eabcf7360aa128ae7394cf7a598c6827578dccf1401ec3bf7885e0
EBUILD aioazuredevops-1.3.5.ebuild 770 BLAKE2B 9dd480b75a7896c2cb73ccb761df5f42470f1f5023ed9387c459479645ba8f29caec0a06ee9f75f767da1d655476f8cbb15216553c57ced9ba74cd405d4a9c7b SHA512 d84972760977da41a18c3844f7e6eea386bf5b77828a36638e7bd811b39a9e3f02dc2b3421eabcf7360aa128ae7394cf7a598c6827578dccf1401ec3bf7885e0
MISC metadata.xml 449 BLAKE2B a73583c6740e317e393e7686ba0d5f3978e44b5ad72de17e26a89dd806cbe449fad95878a9ce90d33fc7daa332a64b09bada2a543b6f75e2164eb4b909dc29df SHA512 15176f922a73437ace7e8c53c3cbb21bee011bbd7e3fd0079c1f4cf30de7a7992e85eb8dffd9515c234a1aa99ea8a9e5b52e3f252c94dfee2149c55b9e30c8db

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{5..9} )
inherit distutils-r1
DESCRIPTION="Get data from the Azure DevOps API."
HOMEPAGE="https://github.com/timmo001/aioazuredevops https://pypi.org/project/aioazuredevops/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
dev-python/click-7.1.2[${PYTHON_USEDEP}]"
DEPEND="${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
}