add temescal-0.1.tar.gz

This commit is contained in:
Andreas Billmeier 2019-11-23 12:01:31 +01:00
parent f4c863a713
commit d6f31413bf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add temescal-0.1.tar.gz
* add pylgnetcast-homeassistant-0.2.0
* add pylaunches-0.2.0
* update pylast-3.1.0

View File

@ -0,0 +1,3 @@
DIST temescal-0.1.tar.gz 3707 BLAKE2B 3fcec3f75d4c4d34ab021fe840ec47fb7d99b7b2f5a81f812892bc0753e2e2a554d4faa5f38f215f22bf6374f07c2e72cd9534a7b98c0a0c2a9dae8fac725f6a SHA512 3dbd138ae4ea0cbb6e5fdcf18c6238422333800b00d4afbc77efb4599d2afb1a5d35f2ef5429c44e5b50fba7a99368ecbcaac729bbc835a222f4b37ef9889506
EBUILD temescal-0.1.ebuild 721 BLAKE2B d7156214d59ef5075038e5e6b60f1ea89c3d4a89de29544541a5b2cda4be19bbe937de9128fdc6ac6d15d464fbc7b4c68fffaf212b17d9d31f2e8249de40d98a SHA512 3c044e2a84c811f59b97ce4d1eb8b41a7dca53c34909ed32f25c3a642c91dbafb9e5300c507f4635a8aba95aaf2b158de2a119ac5ba03c6789a9050e3621bb7b
MISC metadata.xml 459 BLAKE2B 3204974dad6df518d8066a0314138e7e5c685f1ca1822a7fe61e83e552838fce59c997559cf231597a3d73794316cb067b383e678cea876f09cd3711e92a5e6f SHA512 f914c07387069a95b604a12faf153b2023df0ca2a8cf54a24c5f1e0075a127a9f7e01c2d97eb4422ec8c943fc08809bc39d3033d114a9781fa80d647076b7fca

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">temescal</remote-id>
<maintainer status="unknown">
<email>mjg59@google.com</email>
<name>Matthew Garrett</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Python API for controlling LG speakers"
HOMEPAGE="http://github.com/google/python-temescal https://pypi.org/project/temescal/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pycryptodome[${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
}