bump raincloudy-0.0.7

This commit is contained in:
Andreas Billmeier 2019-11-23 22:46:41 +01:00
parent aca0b2b8ca
commit b617b1b415
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add raincloudy-0.0.7
* bump pyrainbird-0.4.1
* add radiotherm-2.0.0
* add RachioPy-0.1.3

View File

@ -0,0 +1,3 @@
DIST raincloudy-0.0.7.tar.gz 14544 BLAKE2B 01f142ac53849111f39f5b45734517ca2710ef9f835e5c45ac66deb5246f8e83f39221fcc5e20793d8b0959fb7aa654e15290a600247ae643d06e4b391caf140 SHA512 816012cee58015d95e8f62db59394260e9b414dc38a653a334a72ce46a638677d96b692dd3b7ec3a245774569efb5f00de5223f5d35c4c914379ab184a1b0f89
EBUILD raincloudy-0.0.7.ebuild 848 BLAKE2B 05c66c31554e0ac43887eb61d7af33f06a65681837757ab77cf2eea68cea45df08ab94bbda48b939f9a2eb7126a567507a84d947611e73735ced0b8316d80a4b SHA512 82002119efb4b9c40ea861f0a6736e9255d21c5c65f30d757a56e4213de38c1fcf2be5b3d409755b04aab2d4cbce1471a652117db7a62b15fe6d6ab82f6984bf
MISC metadata.xml 477 BLAKE2B b2a53b3140fe3c1042d9a973b1e128f2af4c40fc16dd7b83d9d153b4d1993bccb492f7f97e30cd9aa682d0de9516a2f146424498332abe32d608da153c4385ee SHA512 ce664efb0f3bfc3891d58ce4cfdfbde7992c5f507acb16a0fe24f4a339a552e768f2ef52db109f911b211889909bbeeea272235b790a1f9a08589ea79035a61b

View File

@ -0,0 +1,16 @@
<?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">raincloudy</remote-id>
<maintainer status="unknown">
<email>tchello.mello@gmail.com</email>
<name>Marcelo Moreira de Mello</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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="A Python library to communicate with Melnor RainCloud Smart Garden Watering Irrigation Timer (https://wwww.melnor.com/)"
HOMEPAGE="https://github.com/tchellomello/raincloudy https://pypi.org/project/raincloudy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/beautifulsoup:4[${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
}