add wolf_smartset-0.1.4

This commit is contained in:
Andreas Billmeier 2020-07-25 11:11:00 +02:00 committed by Andreas Billmeier
parent 53b63850f6
commit 1d65dcbe39
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* add hstspreload-2020.7.22
* add httpcore-0.9.1
* add sniffio-1.1.0
* add wolf_smartset-0.1.4
2020-07-18 homeassistant-0.112.5.ebuild
* remove typing

View File

@ -0,0 +1,3 @@
DIST wolf_smartset-0.1.4.tar.gz 4723 BLAKE2B 5ab43c4992d61079bf036bee6bbac614d72246f5e54f510cc4dab774296fc6818c74010832d7dc592e059468b3a0359726cc15a63d3348f709c4609e005fc91d SHA512 5b2ecfc237630282580954db689d001d3e4073332920cb3ac619583ac9f834678c7a5632d4729ae4207b7a564125d62ce90d308981b6588bd2c596182b028b02
EBUILD wolf_smartset-0.1.4.ebuild 769 BLAKE2B b3c150cdffaa2ac6465429e99dcae6a2be19b20557003ec0608bd4ea6e5af493a0d3e70e1844cbb4595070d5b1afbf22d744193dc42aa3efce6c768bf49fec3f SHA512 3f2046b736b8f5aaa77445202658f74067a3cbca065c591e360489b20a238727be44a9259a6033c96520d0c6e361ce919968ef4240f3fccf5dfda037f5f56eb0
MISC metadata.xml 456 BLAKE2B 0530a0aba1fea839f75165bbed5b5da85cb8f6f0816c161fe502fc64296a44dabdd47c683095b1e4089778852d9e1a27e1a67a61dc045ebc4c1b73484a1f44f7 SHA512 cb4cc473d35ee357ae97c7a3c01daec4ba50bacf39d5dd85ea23d9db1ab1f88600f8bb31bb6ddfd019598bc68c0a972566f09e1257ca7c573bf30a53ff4dd648

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">wolf_smartset</remote-id>
<maintainer status="unknown">
<email>adam.krol93@gmail.com</email>
<name>Adam Krol</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="A package to comunicate with Wolf Smart Set Cloud"
HOMEPAGE="https://github.com/adamkrol93/wolf-smartset https://pypi.org/project/wolf_smartset/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="all-rights-reserved"
RESTRICT="mirror"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/httpx[${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
}