add pyicloud-0.9.1

This commit is contained in:
Andreas Billmeier 2019-11-23 09:53:22 +01:00
parent 7e5f61394b
commit c4582f2c30
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 55 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add pyicloud-0.9.1
* add pyialarm-0.3
* add Hydrawiser-0.1.1
* add aiopvapi-1.6.14

View File

@ -0,0 +1,3 @@
DIST pyicloud-0.9.1.tar.gz 17486 BLAKE2B 4bfccacdd21f8ec5c246ba30b9116d7897d68cfcd3c207692f0d077f03ea1000626090b44d7477e562669a78e04bab4d0bf8f4d7c499c2c237e940bdd6934f40 SHA512 9536656aef11b3f5051866177f7b636861e163d25a863d0fe47419c29f31689425661ed8b1ade28466090066605343f1c8fe061ae288b92569f9f82c8d304611
EBUILD pyicloud-0.9.1.ebuild 1108 BLAKE2B a2aa85e54b2891225a024e01424339c2a9dac318bf1a77c430b8027a09af31873f11e629fd56ef22b6f8533536980d7f7816554ebc14b9a27e1d430c60f51539 SHA512 c67a2e4086c60b5a4ee34aec40774881a316e2652751cda4ba47137f76d26395f8edd3f46c1aab1d68123ac02cb685b995c54a0ec233e361fdd0076004dd8adc
MISC metadata.xml 334 BLAKE2B 8e2fe237ccc9826b2f42f8a433d812001d530650a3153441e4b9c4c0edf1e19a5d90aedf7cc6c1d8c509d94a4b13b1848a6d4b9d5d515f411da6bca57752ce40 SHA512 a32ae4d71606ef80007aa6d933e68f2d52088808e351d0b87c24eed51c85fd4569e34941ef4dbef303c508a02bcc5ff08da9c53f0901fd3d751555ce1425f64a

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pyicloud</remote-id>
</upstream>
</pkgmetadata>

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
}