add pylgnetcast-0.3.3

This commit is contained in:
Andreas Billmeier 2021-06-12 17:08:37 +02:00 committed by Andreas Billmeier
parent ad0daa42a7
commit 11984d0ecf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -56,6 +56,7 @@
* update pyialarm-1.7
* update pyiqvia-1.0.0
* update pyisy-3.0.0
* add pylgnetcast-0.3.3
2021-06-04
* cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

View File

@ -0,0 +1,3 @@
DIST pylgnetcast-0.3.3.tar.gz 5306 BLAKE2B e5fd0bfc62074dd5d666f56583e4ebb1091b2f50fa14c5c9ce45c98ca40e7189bed0c8d9e893231c84aabdd60ba4a07232ab2b0ebd597d7c3cfbda1f43516d9e SHA512 6fd10e19a11a1d270d34cdb651847385b443cbcf34bd5f0f7e4dde8c6259800327333e558cb517311c4444a5f0d1a6a60571e55290725adab2f97c9054d02fcc
EBUILD pylgnetcast-0.3.3.ebuild 751 BLAKE2B 8a3fdbdee1f4766ca0a76c5dec82dd3ed7e1fb282d671dd0d0e7b1184b1a390f8c50ff38525dde578567070b05cb333ea80d4941f82fc2d4ddfb42a199ad4c95 SHA512 893cea8c3757f3204b3e7722d94fbd16ab1d4b661b76a8e650a913dcbbc4c72b62931fad4d9503a08893d212dafcbe861bd7e784ff114df8e0c30a958745c2e9
MISC metadata.xml 453 BLAKE2B 5ae9fe05c97f0c19eea4baf18b564e8e7c6b26ffac3b279012b9b8b1cb453ae1e5442cf76b7f31e6e5dbef55920234db3b5c449df5c5265b8ae83875c2ca8c84 SHA512 4d62ab242811f38a70120b516ab9806c00e6e42c3197de929b913e4628989eed0b7613ab30245de0b1c822e17dc9e56de440ad1515120fc7966240f3123810ef

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pylgnetcast</remote-id>
<maintainer status="unknown">
<email>artemon_93@mail.ru</email>
<name>Artem Draft</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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
DESCRIPTION="Client for the LG Smart TV running NetCast 3 or 4."
HOMEPAGE="https://github.com/Drafteed/python-lgnetcast https://pypi.org/project/pylgnetcast/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
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
}