From d3e156d01d1bc371c95a836d9ad194b5a4fb6521 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sat, 21 Oct 2023 16:33:05 +0200 Subject: [PATCH] dev-python/wolf-smartset: new package, add 0.1.11 Signed-off-by: Andreas Billmeier --- dev-python/wolf-smartset/Manifest | 3 ++ dev-python/wolf-smartset/metadata.xml | 16 ++++++++++ .../wolf-smartset/wolf-smartset-0.1.11.ebuild | 31 +++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 dev-python/wolf-smartset/Manifest create mode 100644 dev-python/wolf-smartset/metadata.xml create mode 100644 dev-python/wolf-smartset/wolf-smartset-0.1.11.ebuild diff --git a/dev-python/wolf-smartset/Manifest b/dev-python/wolf-smartset/Manifest new file mode 100644 index 000000000..ae996c5bd --- /dev/null +++ b/dev-python/wolf-smartset/Manifest @@ -0,0 +1,3 @@ +DIST wolf_smartset-0.1.11.tar.gz 6169 BLAKE2B 47219601c6807a197364fdc220e527510e13cdb68834804c5f04ebe777175430ee3d9f429c166010e93c691a1e0c9e37f2b82ce876376a3da2a179f6d63b4712 SHA512 8c4c630967fdaa476dd68abc9e2e99702fc3f6f06bacfda9a70be5f0796c52f356391879567a13b8b143d5a169014222c6921e7d60005064dc76f8fb592bdbf8 +EBUILD wolf-smartset-0.1.11.ebuild 681 BLAKE2B 4362e4725cb0ccad0f2cdf99fde8f1027cf232d086d81a2676e0a3efddc9220bc524c0dc9f0d6f8c70cd9969f05333ada1546253044544547e647036e1a4a577 SHA512 7ba56a6dea54df836166b99145ad93f0c5766ea175634d9ff29e2b9aa1c887496628c2a1fafbf9f84c5381326d4200e4d014f67eaf0cda9b48e5616a37ecd9af +MISC metadata.xml 522 BLAKE2B 3c36bd6857b1c01de5cd508993e2163f4e0add5a84ab0f57b2ba8d01387a2cda6af4c53d98ed48808f2d27427020dc88fb63fc3b031e7ddad8d6974f8df95c59 SHA512 500b37d3b5975b43457fbcb065125b6741949f95cb95d94e8f54405191c9e0452cd7524d28c7f59ff7dc527def7cdb8fecf101390a13c6c5a2ba5397060e1971 diff --git a/dev-python/wolf-smartset/metadata.xml b/dev-python/wolf-smartset/metadata.xml new file mode 100644 index 000000000..c450a436d --- /dev/null +++ b/dev-python/wolf-smartset/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + + wolf-smartset + adamkrol93/wolf-smartset + + adam.krol93@gmail.com + Adam Krol + + + diff --git a/dev-python/wolf-smartset/wolf-smartset-0.1.11.ebuild b/dev-python/wolf-smartset/wolf-smartset-0.1.11.ebuild new file mode 100644 index 000000000..79691edd4 --- /dev/null +++ b/dev-python/wolf-smartset/wolf-smartset-0.1.11.ebuild @@ -0,0 +1,31 @@ +# 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=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="A package to communicate with Wolf Smart Set Cloud" +HOMEPAGE="https://github.com/adamkrol93/wolf-smartset https://pypi.org/project/wolf-smartset/" + +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test ) mirror" + +DOCS="README.md" + +RDEPEND="dev-python/httpx[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest