add python-tado

This commit is contained in:
2019-03-19 20:11:03 +01:00
parent 2cb09f9b2c
commit b7fffebfc2
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
DIST python-tado-0.2.3.tar.gz 3071 BLAKE2B 931bcca00331b8b91885c092a9012de37fcac3664e71a24421426415cd7876a2fe95a8907bd2378bb7b2ce84f1b66367119e3bf0b4f0adbb8d463ca064df932e SHA512 3e092d9f25b96c2936cf43700b1cbf61135387c235a6d319e3583f9ca0b4c11c860df5e4c77e492cf6dc062411cf856f651c8525276ebf3f3f8178425a06f7da
DIST python-tado-0.2.8.tar.gz 17446 BLAKE2B 58c7b1681f2574cbac7384e44c6153d00641c2a49533c2444874fb9989d73cebf7d241746ed9fc192c8ba8bea58188641a550955fd9cc533c019674a0d395321 SHA512 76e9289376046ca58ab3a9244434f408428ee7185cf6d243581a9842234fc7024e481d3bce11e1464d42c6aaa3b5a9447b007fdb8a4a102dfb4989bf968049f8
EBUILD python-tado-0.2.3.ebuild 719 BLAKE2B c89c34abb39a87e6402f47f7cc1a21328a9df91dfd2456b063bb64a4477f8458f4d5c3c56d1b17768d02b8dcaa833bad2b6297481cc309602b6c541f6dc874fe SHA512 a6db51fe892753470765a085b4295d81d73ff2531e815d68fef5f8393c0b7bff651693db16e1e10b0eea0ac109542e5020da482650e0368954591444499d4254
EBUILD python-tado-0.2.8.ebuild 719 BLAKE2B c89c34abb39a87e6402f47f7cc1a21328a9df91dfd2456b063bb64a4477f8458f4d5c3c56d1b17768d02b8dcaa833bad2b6297481cc309602b6c541f6dc874fe SHA512 a6db51fe892753470765a085b4295d81d73ff2531e815d68fef5f8393c0b7bff651693db16e1e10b0eea0ac109542e5020da482650e0368954591444499d4254
MISC metadata.xml 495 BLAKE2B 8161e9799bf3fe20c6a3ca52c721353fda624947130a89716a0683fd34100b9b00a9f8ecb69348096a709d938e0775f5fef7a1fe653e6738a4de6717578afb22 SHA512 2c7a7030d14a17ec377c0476a85b2e1af1e870e7ee4093a5bb484e6ca7857bc0fcb5f3cc647903ea4c34ff5ff5d2549a5bff80d7226e3f7dda238d1d99b4cf3d

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">python-tado</remote-id>
<maintainer status="unknown">
<email>chrism0dwk@gmail.com, w.malgadey@gmail.com</email>
<name>chrism0dwk, w.malgadey</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="PyTado from chrism0dwk, modfied by w.malgadey"
HOMEPAGE="https://github.com/wmalgadey/PyTado https://pypi.org/project/python-tado/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="PyTado from chrism0dwk, modfied by w.malgadey"
HOMEPAGE="https://github.com/wmalgadey/PyTado https://pypi.org/project/python-tado/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}