(re-)add withings-api-2.1.3

This commit is contained in:
Andreas Billmeier 2019-11-13 17:04:06 +01:00
parent 20e95224d4
commit 66f933987c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 54 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* update async-upnp-client-0.14.12
* bump psutil-5.6.5
* homeassistant-0.101.3-r1 fix paho-mqtt-1.4.0
* (re-)add withings-api-2.1.3
2019-11-11 new modules from dev tree
* aiodns & aionotify, fix checksums in manifest

View File

@ -0,0 +1,3 @@
DIST withings-api-2.1.3.tar.gz 13240 BLAKE2B 7993297768b19a3eb819ef2beab73b0706cdda39ff418f8431c1ea1cb0bfff89603715463884d26a3d2bcc064e8978608421a360d2b54923386cd6270da03167 SHA512 4b3e4590b653f195e44b779acc2beb578bd6e68760b1623c01579b255a2677099028ddc916eb1707bf9b6ce792a195d885d9e2d3a84162b42fb7a0596cc2f7b7
EBUILD withings-api-2.1.3.ebuild 736 BLAKE2B 4855bc8871120fb3437eedf0b5727a179bc6573947a82721dd25fa4dda69f42d7a47460896702d1b3e349d4b64a00ed583980f29c6521fc01b5415742c1559fc SHA512 ac28a236e1785bdb85695c2c1993bc5d62cbad11ca7f6d149cbd9ebeff03b38ff4ff9ef3a51c47dcace1920c9b312d8d738f2789b0a708f2275b31bebdc282cf
MISC metadata.xml 481 BLAKE2B a885b2700454da7dc681473df5f4dac9811c15648907ae95c83766218703ec62437181d5cada2ce0eca85756b38540ad53a14966342f57fcaf2db4521a76fa3a SHA512 b27ba56d0c106255e96b80597764463180f4ee4f8e146a70d7513e6f57105f0fb84a37b0460ce4a70f6891223be57dbef6b3251b713b7851312efaf8e26b5ae9

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">withings-api</remote-id>
<maintainer status="unknown">
<email>robbie.van.gorkom@protonmail.com</email>
<name>Robbie Van Gorkom</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# 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
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Library for the Withings API"
HOMEPAGE="https://github.com/vangorra/python_withings_api https://pypi.org/project/withings-api/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
S=${WORKDIR}/${MY_P}
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
}