add tahoma-api-0.0.14

This commit is contained in:
2019-11-24 17:59:24 +01:00
parent cb51df0090
commit c4cf5226b0
4 changed files with 53 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add tahoma-api-0.0.14
* bump python-tado-0.2.9
* add py-synology-0.3.0, python-synology-0.2.0, synology-srm-0.1.2
* add python_opendata_transport-0.1.4

View File

@@ -0,0 +1,3 @@
DIST tahoma-api-0.0.14.tar.gz 7832 BLAKE2B 8c36c3fa59853d120f8c8736f485f870feb529bf693f3ddc7cdb866652bad3123f09bd10323e2f2bdc5c361c0758c6ae45c1e26b18174646688d0c8b630eb320 SHA512 766be48bc6063831a3b10a587cecc1e63aed4544ce36e5d393e2017c1e7230c6e61d8affd5815c15483dfd0384f3ad5e19160d16943bb73bcf0ef54b4b05151c
EBUILD tahoma-api-0.0.14.ebuild 804 BLAKE2B 2053e48f6e59462bc57d7af0bbf9c31c86830c495c6a02d9906d846f3222e2a50e36b2672fb6d89aef0b7c090dd34558a0e0844a6dba7d8de756eac56e7c36a8 SHA512 30deb60049e65814770e639300900990e04940ff6cf59afdd5051e6bc1dfd2833b7d9422c17fb776ff00bc9842f8144ad2a812658856fd6c8c02e3007752e0c3
MISC metadata.xml 472 BLAKE2B 8a96262498ff8894ab5d6ddcc795fa0a902661eeeb44d1c78884c211c3eb515c4b8fed57980310ef38d890ce318fddc2e95a3ce59e4c88448b6cbff10cebcf70 SHA512 34aee32b9961d57f54569cb2790b7bfa4109c6f32e3673b1816f1fb468531958b42c52b330d9c06a7e28405080772a6fa8765fee19e67f39e5d83aac4199e79d

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">tahoma-api</remote-id>
<maintainer status="unknown">
<email>philip.kleimeyer@gmail.com</email>
<name>Philip Kleimeyer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# 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="Tahoma Api - Python connect to Tahoma REST API"
HOMEPAGE="http://github.com/philklei/tahoma-api/ https://pypi.org/project/tahoma-api/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.0[${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
}