bump python-ecobee-api-0.1.2

This commit is contained in:
2019-10-01 17:49:57 +02:00
parent b467944652
commit 8ee264b7a5
2 changed files with 33 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST python-ecobee-api-0.0.21.tar.gz 4657 BLAKE2B ce5313189d9ff9cac455cf0c7b065f8a9b596eca8f6a036b104225aa0102e6f1e68a7825d8857b20e8b1e9b78a4d2ac1b7208d296b20579c7b38c8d672fc2c71 SHA512 94a3974726d6d68b93b8a897d2b96a4b22828d4237b772674472f825befa2f5dda051c5ccc0e7870293a123c5ec5febe8652d64e45636a1996d5fe2daaa7d2e1
DIST python-ecobee-api-0.1.2.tar.gz 5002 BLAKE2B 685bd49557cfbb41340a2d6b31c7db69454f353bcc5c72fe856bf348f9f22cb3d6dae5393f72676de0746417790c6bcd2f4dc4e391697f1863d268851643d52f SHA512 5ee1a329a273a755d41a440cec33e3ebc3c01d55927433e974f2bf23ea0be6fbc6964a056ca9ae90ece09fd17bc94922f225cce7d039198bda1096a3920e5833
EBUILD python-ecobee-api-0.0.21.ebuild 827 BLAKE2B a699d856a07eab4805dd1545c8064a75f653c7dad9a24453c58484e0c45950f1330be6b3dd4d8f925f5273172ffbdb07b58d3429ddae9bf33e29e781379f228a SHA512 7bd8012f8198e7e45db34d91405604113257569f08e990e740b77781a2f51426c5cacfa00cdc979f32896aa990e92ff15664a9155cefc3c6f4200d8a709a7132
EBUILD python-ecobee-api-0.1.2.ebuild 827 BLAKE2B a699d856a07eab4805dd1545c8064a75f653c7dad9a24453c58484e0c45950f1330be6b3dd4d8f925f5273172ffbdb07b58d3429ddae9bf33e29e781379f228a SHA512 7bd8012f8198e7e45db34d91405604113257569f08e990e740b77781a2f51426c5cacfa00cdc979f32896aa990e92ff15664a9155cefc3c6f4200d8a709a7132
MISC metadata.xml 467 BLAKE2B ea76882739f4bb0b920497f2d5cb52989c70243c911e285b8742ff042bd75247dee8b2072fcd456e30239ba5d5d9fa8e37c42474ef2fd12fc070c7ab4e030a4f SHA512 86df0a3ab7cbefbb96c0ed8397df6e074276722c809ad58a4fd17d283287f19147f27ab05e9a930f310c8d5668ede881f518045afd2bfe55b15f2d29b339b822

View File

@@ -0,0 +1,31 @@
# 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="Python API for talking to Ecobee thermostats"
HOMEPAGE="https://github.com/nkgilley/python-ecobee-api https://pypi.org/project/python-ecobee-api/"
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-2.20.0[${PYTHON_USEDEP}]
<dev-python/requests-3.0.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
}