From e2f0b7e54732d55e3f2cf20a2522eb32d8e2aa21 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Mon, 28 Sep 2020 20:17:07 +0200 Subject: [PATCH] bump wolf_smartset-0.1.6 --- CHANGELOG.txt | 1 + dev-python/wolf_smartset/Manifest | 2 ++ .../wolf_smartset/wolf_smartset-0.1.6.ebuild | 31 +++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 dev-python/wolf_smartset/wolf_smartset-0.1.6.ebuild diff --git a/CHANGELOG.txt b/CHANGELOG.txt index b9019d5ac..5b85fb85d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,7 @@ 2020-09-28 * add goalzero-0.1.4 * bump dwdwfsapi-1.0.3 + * bump wolf_smartset-0.1.6 2020-09-27 * add config-0.5.0 diff --git a/dev-python/wolf_smartset/Manifest b/dev-python/wolf_smartset/Manifest index 4fe7421b3..ac4a982a0 100644 --- a/dev-python/wolf_smartset/Manifest +++ b/dev-python/wolf_smartset/Manifest @@ -1,3 +1,5 @@ DIST wolf_smartset-0.1.4.tar.gz 4723 BLAKE2B 5ab43c4992d61079bf036bee6bbac614d72246f5e54f510cc4dab774296fc6818c74010832d7dc592e059468b3a0359726cc15a63d3348f709c4609e005fc91d SHA512 5b2ecfc237630282580954db689d001d3e4073332920cb3ac619583ac9f834678c7a5632d4729ae4207b7a564125d62ce90d308981b6588bd2c596182b028b02 +DIST wolf_smartset-0.1.6.tar.gz 5500 BLAKE2B 65aa10ac51a5eb0850d8d3b50f84e34e0d30353716710a7899b878c19f639a0ff3762b49f509bb45fac3067d4321981d9d5ad69c844288f46c0bbd7407fb2c39 SHA512 deaa4010f21543a595cb0a9673835b9475810102211af7c07a0783b0f1458f0d7f722de6fba98aaa0714c20b88143e47329d38ddf5a3aba235b7496827b3f7a4 EBUILD wolf_smartset-0.1.4.ebuild 769 BLAKE2B b3c150cdffaa2ac6465429e99dcae6a2be19b20557003ec0608bd4ea6e5af493a0d3e70e1844cbb4595070d5b1afbf22d744193dc42aa3efce6c768bf49fec3f SHA512 3f2046b736b8f5aaa77445202658f74067a3cbca065c591e360489b20a238727be44a9259a6033c96520d0c6e361ce919968ef4240f3fccf5dfda037f5f56eb0 +EBUILD wolf_smartset-0.1.6.ebuild 769 BLAKE2B 85a6051327fcaf7ae336bbff2e9359cd248db8587bd764a0eb3aaf4a2d0e56cbaba45285f900691084a6cf5e0fdd34bfdf4c7a2b669ee6e739594e8867145da2 SHA512 1f0207f1086069e979eb7b0b329c6c1fa61f221d21e7bbc39d4bf59513b03e454a6a178c0eb6de2f560c8e4ccbfce105ddeeb1813c6c27e04ab7e671b4179d6e MISC metadata.xml 456 BLAKE2B 0530a0aba1fea839f75165bbed5b5da85cb8f6f0816c161fe502fc64296a44dabdd47c683095b1e4089778852d9e1a27e1a67a61dc045ebc4c1b73484a1f44f7 SHA512 cb4cc473d35ee357ae97c7a3c01daec4ba50bacf39d5dd85ea23d9db1ab1f88600f8bb31bb6ddfd019598bc68c0a972566f09e1257ca7c573bf30a53ff4dd648 diff --git a/dev-python/wolf_smartset/wolf_smartset-0.1.6.ebuild b/dev-python/wolf_smartset/wolf_smartset-0.1.6.ebuild new file mode 100644 index 000000000..32cb708ae --- /dev/null +++ b/dev-python/wolf_smartset/wolf_smartset-0.1.6.ebuild @@ -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..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}]" +BDEPEND="${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 +}