diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c07ecf2f8..70bdb71ae 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,6 +5,7 @@ * bump pychromecast-7.0.1 * bump pymyq-2.0.5 * add poolsense-0.0.[5,8] + * add pydexcom-0.2.0 2020-06-29 * bump aioguardian-1.0.0 diff --git a/dev-python/pydexcom/Manifest b/dev-python/pydexcom/Manifest new file mode 100644 index 000000000..3c97bb27e --- /dev/null +++ b/dev-python/pydexcom/Manifest @@ -0,0 +1,3 @@ +DIST pydexcom-0.2.0.tar.gz 6845 BLAKE2B acc0fdfe7497b055d3e22f531ce71c639f2cbc8d3326affec6c373a4d656c6d1e29cc243ad0264da50bd652d56a53235508633ebaea65a2ee24239fa6a91b83a SHA512 d909f0e47034e318e36a7d12b19167832c87e4a88dc27f2fe3cccfea62ef61280a7323f63371385003ea551f18576cbeb861c8571e2a04f1eda359fb33e6930b +EBUILD pydexcom-0.2.0.ebuild 728 BLAKE2B 129150a386ef7e4d8e5a1f1262ea499ae471d901fa6cefb7d2ba8b618ee0c4b7229ac9c16e073ad74e6885d930cb4a066086612cc6efa225687d66118e8f2ba0 SHA512 d814424a76ecd137206ebba24ff3b59df970a9dbda1eb0ffcce0f1c6c60486df5ef558154c5272834d92122fd33c4344e3fde216be978e60489f2ec0480164ac +MISC metadata.xml 451 BLAKE2B e7c085652235b67b06ed4e0ed18885a586eadc9a423798485e36d3d26a3cc99d021ee6c44331d34bd1203fbdb9350f8568f35918df4360cd25755ef4c0b681f9 SHA512 83ddc52d85451825429570cc025dd78e209866cb3b11764f51745bec80f758ad816b722ff3f49eab70b93037df44cc2d9f07e748b2c9557d44613b6e64e7d9ac diff --git a/dev-python/pydexcom/metadata.xml b/dev-python/pydexcom/metadata.xml new file mode 100644 index 000000000..52763f58b --- /dev/null +++ b/dev-python/pydexcom/metadata.xml @@ -0,0 +1,15 @@ + + + + + b@edevau.net + Andreas Billmeier + + + pydexcom + + gagedbenne@gmail.com + Gage Benne + + + diff --git a/dev-python/pydexcom/pydexcom-0.2.0.ebuild b/dev-python/pydexcom/pydexcom-0.2.0.ebuild new file mode 100644 index 000000000..a1750e589 --- /dev/null +++ b/dev-python/pydexcom/pydexcom-0.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Python API to interact with Dexcom Share API" +HOMEPAGE="https://github.com/gagebenne/pydexcom https://pypi.org/project/pydexcom/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~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 +}