diff --git a/dev-python/ring-doorbell/Manifest b/dev-python/ring-doorbell/Manifest index 869c992ff..294a750c8 100644 --- a/dev-python/ring-doorbell/Manifest +++ b/dev-python/ring-doorbell/Manifest @@ -1,3 +1,5 @@ DIST ring-doorbell-0.6.2.tar.gz 27778 BLAKE2B ce784dab66275b71d83cb6dd063694ae6d24958642c884b3a54bdbaa953decb017ca3b183b76ee24b0c8d80c7082449141172476b17f64f22f14b8998456f61b SHA512 432fadf43459d746cea86d2eff98b254db6ea606167a0ff732c9362edea4f252e8a1a25e78ea0edf80c4ad29921d975f38841c1b878a02ff60381c760ea594ed +DIST ring-doorbell-0.7.1.tar.gz 23501 BLAKE2B b6b5f412f1f408815b890cb6af8348aaeafbce9ae00d55918ce7a852b4a729b6b6a3bd1a91dfb95e2b1a7c556629850b16fe0aa9e04500b4f647db87a521530d SHA512 075739974fe1941520964b77d8f91a456337e364054edba972e5c33a223b12a76032607b595c41a057110cf8ffe9c3bd423882f2ad10b07074371edade81a673 EBUILD ring-doorbell-0.6.2.ebuild 1007 BLAKE2B a956512865ce4ed6237efffa20ff8c9361b8570ff0ce1661f6b415ee889d23b53ff654373adeca7cdad93927d2f1305667fd2b354b57df463d0e66634fb91ec1 SHA512 81196b5e50662a235c40e964dc0b6a2684dc90017841080c3c87ab5dff002c5b3978e9ad0b524f6b0956e5e89145fb9d6753b63f8890e5052b6a83afc442d285 +EBUILD ring-doorbell-0.7.1.ebuild 1007 BLAKE2B a956512865ce4ed6237efffa20ff8c9361b8570ff0ce1661f6b415ee889d23b53ff654373adeca7cdad93927d2f1305667fd2b354b57df463d0e66634fb91ec1 SHA512 81196b5e50662a235c40e964dc0b6a2684dc90017841080c3c87ab5dff002c5b3978e9ad0b524f6b0956e5e89145fb9d6753b63f8890e5052b6a83afc442d285 MISC metadata.xml 473 BLAKE2B f7e6bc1ce278b7792e6ac78c589af1c8acf1deb440143defa8ad0040d460c20325efc5da42df2aab2ae30ea8634444e72a3922cf7373d60a0bb7ccce5ab4296b SHA512 0b5daf3ee7f7e0a147d355f6459fe203330caf44902f94d1875485b5e4feccb619d0fb869226f1caa6839b0b1824fe495959c6b353a9ebe52c07f62870ca7d1b diff --git a/dev-python/ring-doorbell/ring-doorbell-0.7.1.ebuild b/dev-python/ring-doorbell/ring-doorbell-0.7.1.ebuild new file mode 100644 index 000000000..c9acbea3c --- /dev/null +++ b/dev-python/ring-doorbell/ring-doorbell-0.7.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +MY_PN=${PN/-/_} +DESCRIPTION="A Python library to communicate with Ring Door Bell (https://ring.com/)" +HOMEPAGE="https://github.com/tchellomello/python-ring-doorbell https://pypi.org/project/ring-doorbell/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DOCS="README.rst" + +RDEPEND=">=dev-python/requests-2.0.0[${PYTHON_USEDEP}] + >=dev-python/requests-oauthlib-1.3.0[${PYTHON_USEDEP}] + >=dev-python/oauthlib-3.0.0[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}]" + +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +S="${WORKDIR}/${MY_PN}-${PV}" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}