dev-python/pywemo: add 1.3.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-11 19:47:13 +02:00 committed by Andreas Billmeier
parent 68d6b7fea0
commit c9a834079c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST pywemo-0.9.1.tar.gz 86510 BLAKE2B a0090a26736dd864d00f61be3f505e235d54dd659bc94ff9015de8b7c9b297d2023c215865769c2dee4b0d99901e90d50978b7ad3978896aa62f7400af3e1baf SHA512 60088ef9713f4b170fabfb4c4fd948bda2bf69601b6fe9bcc6976225c8d2f168c3d44e0330cb429a1326df19e19a82789edabce01b8acf31a52c0c52f4fdefa7
DIST pywemo-1.3.0.tar.gz 89004 BLAKE2B 0b296475f813677a369eca4b9cacb7a4956da2314a6a19810de54e3b3d69c18fd928114d8e1c9fc6b28c46f46e3ab4cccdd22a53f014725d25c4015b4fafb6a6 SHA512 bec262a6c20ac6f6b7fcc444241f42ff84948103d1fe8911aa67b88c34eabb7ccf59e08cc6e956a1722e4c7cd23a672251a8f2fa83c420a12e386a92583e9ab4
EBUILD pywemo-0.9.1.ebuild 830 BLAKE2B dec0dcda4f6e3750cf3a4b3534159c7b140a065ccfd00f724342c7f640c29c5cfcff6ac535c63eb75303f697392426de792ac5643e2c06fd719b26a2f4224daa SHA512 03d35c1ac65fdb6ef48f46dbca66647f06eff423b3d21e692dc9c8e49cd6bf0be602abe964500bf6393b0495f666e33fb2114349210b506ca838a734817c5a32
EBUILD pywemo-1.3.0.ebuild 789 BLAKE2B eb2a8bbf71dcac9d59ffe2d2e2c2dbb447ffcea0798345cdf8722a43014883b9f369e70b6953a8dd5bc7bcd140c0bb052203f700961830ff1722289baca06566 SHA512 e743c915c46a4db8de308e48056a7c4468c318e2b7b7d48455d73fe7ab864e95db74bd173ab44fd8d96a3a356aeab24f4b3a48ce3a3367c827b02097cbf726dd
MISC metadata.xml 503 BLAKE2B 79e64fc3c1c8c2141adb9991ade458c7188bde9fe7114280ab715bed909d5eb1a8f10d6dbde822c74b07e8a0d788036486bdef3ee01e3a2c4883b07980218d40 SHA512 1487a15dbc92a75a53479f3fc5b1b07be70c4c29294774f5f192d4245d9b5e342d953be0b7ffe473ba5632b4f24b4306958e42b51f57ad8557d98a562867604b

View File

@ -0,0 +1,34 @@
# 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="Lightweight Python module to discover and control WeMo devices"
HOMEPAGE="https://github.com/pywemo/pywemo https://pypi.org/project/pywemo/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/ifaddr-0.1.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.0[${PYTHON_USEDEP}]
>=dev-python/urllib3-1.26[${PYTHON_USEDEP}]
>=dev-python/lxml-4.6[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest