diff --git a/dev-python/ring-doorbell/Manifest b/dev-python/ring-doorbell/Manifest index cfca9f59a..af438a160 100644 --- a/dev-python/ring-doorbell/Manifest +++ b/dev-python/ring-doorbell/Manifest @@ -1,3 +1,5 @@ DIST ring_doorbell-0.7.2.tar.gz 22945 BLAKE2B db1a4f2ced88eefa360a060fdfba98f1f6aa86f73cbe0b098e7fccf1bf8133cc3b65a34c1b6f77b9b37dfec3548eccf7c383ff221fe987c5295e8a4c1777b156 SHA512 91003ef6a77d6c80875056768a51c819ad537bb04c00bc00e02eaada00b8ed548276f0c3173ee40d62e882254b411940ca12d1a1db5c363790462d7c1f354d00 +DIST ring_doorbell-0.7.3.tar.gz 23421 BLAKE2B 58433bb6ebf46f2dc7f83617bef27e098fe56131b015f73bee4651fbe4b1ec23aaa7c442cb00eb41fed349ff4a0ef3977bc2a8da88c79688fcc14f5b5a43c4eb SHA512 6a8162f497cc817d27f938f50862ba5f74b6dd27c8cebc53fdc0a46a2d3f3dc4591c97283a205ec362a56ed98a093b236e9a54c2cb45b802044db84ce8fd7d3a EBUILD ring-doorbell-0.7.2.ebuild 884 BLAKE2B a368173a40a970c576eb4c1c8f63739d386da0b22a948e4f5dfc4e4f118048ee0d7ca46ff07728a0cfcb471d17e30206caf561fa4d15ce88c8707a4d6d505238 SHA512 9bf894345fd0fe314c9b4924002769fd8620b9998a6310d2a3372dbdc6b8e4139098f908ce361306e5644b3b756050e814a892ffaa879b2cf2c1dea0ce254c47 +EBUILD ring-doorbell-0.7.3.ebuild 889 BLAKE2B f7b56957e44f0b0809cf60974b841cc4cecf8ed84be4eaa8086fb31af443e359b004053e6297cf66722bb4d404f892e757771b29d4a1da1df802651e0fd2a27b SHA512 03c10c114b863ff06e8d731d154c7e7eaefd28ce4f996ee5af3ec0334232f61d8228ad0829cb56675699ebe2c53790cf2d945bdfb265fb6799002ef3634e1076 MISC metadata.xml 548 BLAKE2B d9d1e87c8c4f679e84076ea237657c3af883a77bcd16b43ec27d9f310b8da56bcc7cd7cf9b905e2d2a1789ece6b9334d293dc79ccb721fa5177a6f55cca2df68 SHA512 15baead058c762f80d7fd960532e0868dad411b879be9eae8ec220d6fb3cdd448317c8ab43f3c30c2f31559f02450ef4fc558d5c691ac00c28836278eabf32cc diff --git a/dev-python/ring-doorbell/ring-doorbell-0.7.3.ebuild b/dev-python/ring-doorbell/ring-doorbell-0.7.3.ebuild new file mode 100644 index 000000000..4c2b04fc0 --- /dev/null +++ b/dev-python/ring-doorbell/ring-doorbell-0.7.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 pypi + +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/" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( 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-2022.0[${PYTHON_USEDEP}]" + +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest