bump pyicloud-0.9.2

This commit is contained in:
Andreas Billmeier 2020-01-29 20:08:02 +01:00
parent 28d6459ffa
commit 416d03541c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 0 deletions

View File

@ -11,6 +11,7 @@
* bump haanna-0.14.1
* bump homeassistant-pyozw-0.1.8
* bump pre-commit-2.0.0
* bump pyicloud-0.9.2
2020-01-27
* bump huawei-lte-api-1.4.7

View File

@ -1,3 +1,5 @@
DIST pyicloud-0.9.1.tar.gz 17486 BLAKE2B 4bfccacdd21f8ec5c246ba30b9116d7897d68cfcd3c207692f0d077f03ea1000626090b44d7477e562669a78e04bab4d0bf8f4d7c499c2c237e940bdd6934f40 SHA512 9536656aef11b3f5051866177f7b636861e163d25a863d0fe47419c29f31689425661ed8b1ade28466090066605343f1c8fe061ae288b92569f9f82c8d304611
DIST pyicloud-0.9.2.tar.gz 19342 BLAKE2B c2c8d6ca24aac52d548e29cb16d4f9518eb389d795721bf205fb829f84b0d2e0d7311dacb7b45eda26667671a3f89f6d870a6901a4cb1bb3331913c00297cc1a SHA512 55f9db7177af746bb7f5e26838c886c7a878eb347a82e90e44e62c292a14e22f215c1572e6a636b44991a323efc471c981a54b62bce42108e789e2d5effd5f8e
EBUILD pyicloud-0.9.1.ebuild 1108 BLAKE2B a2aa85e54b2891225a024e01424339c2a9dac318bf1a77c430b8027a09af31873f11e629fd56ef22b6f8533536980d7f7816554ebc14b9a27e1d430c60f51539 SHA512 c67a2e4086c60b5a4ee34aec40774881a316e2652751cda4ba47137f76d26395f8edd3f46c1aab1d68123ac02cb685b995c54a0ec233e361fdd0076004dd8adc
EBUILD pyicloud-0.9.2.ebuild 1108 BLAKE2B a2aa85e54b2891225a024e01424339c2a9dac318bf1a77c430b8027a09af31873f11e629fd56ef22b6f8533536980d7f7816554ebc14b9a27e1d430c60f51539 SHA512 c67a2e4086c60b5a4ee34aec40774881a316e2652751cda4ba47137f76d26395f8edd3f46c1aab1d68123ac02cb685b995c54a0ec233e361fdd0076004dd8adc
MISC metadata.xml 312 BLAKE2B 4d6f0720773d8b40e32f582f83d38a1d9b2a7a516d863f3b2771e35034ffba7094739ed0b49eedba480e251bca426bff0807f2a26f031b9d3870743e9cccf360 SHA512 c71c5bc9fb0acadc762d9c627593b5650e79843abbdd9ac5abf8b7858e68b2c71897fe8b8208ab31611e162c40f5401390260000c795e7df8fe8433e5dcc6050

View File

@ -0,0 +1,39 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="PyiCloud is a module which allows pythonistas to interact with iCloud webservices."
HOMEPAGE="https://github.com/picklepete/pyicloud https://pypi.org/project/pyicloud/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-1.2[${PYTHON_USEDEP}]
dev-python/keyring[${PYTHON_USEDEP}]
dev-python/keyrings_alt[${PYTHON_USEDEP}]
>=dev-python/click-6[${PYTHON_USEDEP}]
<dev-python/click-7[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
dev-python/tzlocal[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/certifi[${PYTHON_USEDEP}]
dev-python/future[${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
}