diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 7bb24b5b2..a0a78c265 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -25,6 +25,8 @@ * bump meteofrance-api-0.1.1 * fix 2 RDEPEND typos * update homeassistant-0.114.4, 3 new useflags by request (https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/20) + * update withings-api-2.1.6 + * bump withings-api-2.1.8 2020-08-26 diff --git a/dev-python/withings-api/Manifest b/dev-python/withings-api/Manifest index 876b82e15..a5d32ae6b 100644 --- a/dev-python/withings-api/Manifest +++ b/dev-python/withings-api/Manifest @@ -1,3 +1,7 @@ DIST withings-api-2.1.3.tar.gz 13240 BLAKE2B 7993297768b19a3eb819ef2beab73b0706cdda39ff418f8431c1ea1cb0bfff89603715463884d26a3d2bcc064e8978608421a360d2b54923386cd6270da03167 SHA512 4b3e4590b653f195e44b779acc2beb578bd6e68760b1623c01579b255a2677099028ddc916eb1707bf9b6ce792a195d885d9e2d3a84162b42fb7a0596cc2f7b7 +DIST withings-api-2.1.6.tar.gz 14243 BLAKE2B 11fe5e34d34c36e0e3c46d2b35df134e0e61ba567d7001b07d3464dd97f1f8e6e9b0f5c5f76012f45d3e201e0ae78a04e7cb744357a7f3f5a421e9c1be11e217 SHA512 1338f70ac0c4ca663b125f657e79f094cd357bf5ad6793179cb73fdd7800098c6ab6c1a86fd0bd0b504ce016345fc69aa9909eba122d6284b011f4a6d34f6f18 +DIST withings-api-2.1.8.tar.gz 15149 BLAKE2B 82b65713afd0cf063148495b34ab74166dd8bd7aaa6dd00117812daebb58c33c6429a6c79c9dccea1d73c56d57388ca98457db26478240522f4bdadd7f8212f9 SHA512 20bb07be4074922bde4755d7bfffa3776652eb8916a3aede5bdd8340512c50a4ec96940c8f0b03fa10f7418fc409a990b42cc3decc123e641558caab541f7013 EBUILD withings-api-2.1.3.ebuild 745 BLAKE2B b291fd07fb2a7660d5ff9c3195dd40ad4cf956be8672a09d41f66ecf00f49dda95240968fdaaff8449c6e6444e4ca9250b5dc68614850bf8ca8473af2bd424fc SHA512 448c7a9099e7b77ae6ec6f68f0c439e1c58538d1256948350d11e51792d130effbaae8d7a7a0ded8d4d50929684340cfe0fa49d7303911ccd251e5c8cff8c1c3 +EBUILD withings-api-2.1.6.ebuild 952 BLAKE2B 69652b8c5612a94eabdf1e2ad2950aa77124bead267844ea48dd78a2982e900aa25f524ae97467c8cbd0c979c0d7def8a6fe632ed575cdd4c606ad6fff5ea392 SHA512 75f208a3cf94211b49e38e26fe5b373c3fe2f1beb72d9debfa36f3a11add75ab90cc3418db9e0d86f0748eaaaab1451c31c3b1a735bb9fd09ba43ad69419c163 +EBUILD withings-api-2.1.8.ebuild 952 BLAKE2B 69652b8c5612a94eabdf1e2ad2950aa77124bead267844ea48dd78a2982e900aa25f524ae97467c8cbd0c979c0d7def8a6fe632ed575cdd4c606ad6fff5ea392 SHA512 75f208a3cf94211b49e38e26fe5b373c3fe2f1beb72d9debfa36f3a11add75ab90cc3418db9e0d86f0748eaaaab1451c31c3b1a735bb9fd09ba43ad69419c163 MISC metadata.xml 474 BLAKE2B 3b353fd03cef949c4dfd8e7a4dbd533a7dd61d0943bd2a6586b666c5b319de1b6c38941dd97e30f0717e5cb85e218e8894d5113297a75ac2da8492830967a335 SHA512 7e781231f05656924e31330707a7141e55f16e058e1efff0a6fa9613e5796fa1ad13d6d83adff531180270ab84ef1bd9dff05bacbbec410f8629f7befc9b6daf diff --git a/dev-python/withings-api/withings-api-2.1.6.ebuild b/dev-python/withings-api/withings-api-2.1.6.ebuild new file mode 100644 index 000000000..342896fff --- /dev/null +++ b/dev-python/withings-api/withings-api-2.1.6.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{7..8} ) + +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 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +S=${WORKDIR}/${MY_P} + +RDEPEND=">=dev-python/arrow-0.15.2[${PYTHON_USEDEP}] + >=dev-python/requests-oauth-0.4.1[${PYTHON_USEDEP}] + >=dev-python/requests-oauthlib-1.2[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-3.7.4.2[${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 +} diff --git a/dev-python/withings-api/withings-api-2.1.8.ebuild b/dev-python/withings-api/withings-api-2.1.8.ebuild new file mode 100644 index 000000000..342896fff --- /dev/null +++ b/dev-python/withings-api/withings-api-2.1.8.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{7..8} ) + +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 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +S=${WORKDIR}/${MY_P} + +RDEPEND=">=dev-python/arrow-0.15.2[${PYTHON_USEDEP}] + >=dev-python/requests-oauth-0.4.1[${PYTHON_USEDEP}] + >=dev-python/requests-oauthlib-1.2[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-3.7.4.2[${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 +}