diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 11055f253..aae6c76d4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,6 @@ 2020-08-11 * bump blinkpy-0.16.3 + * bump wiffi-1.0.1 2020-08-10 * bump pyskyqhub-0.1.1 diff --git a/dev-python/wiffi/Manifest b/dev-python/wiffi/Manifest index 53922382b..21c161320 100644 --- a/dev-python/wiffi/Manifest +++ b/dev-python/wiffi/Manifest @@ -1,3 +1,5 @@ DIST wiffi-1.0.0.tar.gz 3124 BLAKE2B 75cf1cf3a134ea92f6d35ad50d1e376516b10c44e9390000381dec4ebeee142bf034e3010f3823812e09dce5319103290421adfe35635b3883c5d428dd732b57 SHA512 1d6c6646cb71ed9299f9ab13b12a0c07abb28801bcd33f230ad1d79f46b36d665620c1b1ee3366ebd519586a9ae0709963b7990ce0c00baa667da3466005a6cb +DIST wiffi-1.0.1.tar.gz 3363 BLAKE2B a16c74d5a88ee5acd69c0fabf91f0b1d4c4b3d77342f96a3a920eb23ab654c5642bb84b05112ae288b916a937216652479494fce7cfd0b7165e6d4281909808e SHA512 70d1beea5caf5c201117f0d6d51292409e4bba471acad37c8e94b4f549ec8b71898620888b050e71f193ca1de3380d68822e889eb4888543d9b4b0b7c2a5a1d6 EBUILD wiffi-1.0.0.ebuild 695 BLAKE2B f146796456e113c8d4781896f41c9adddc6654c7f6078c1e26ff01fa724f630dd8431221b80f72a8d6b087b69a1fb0241a09e7fe775053a45bbf3ccf8baf506d SHA512 79b2c75355a70ca94e528b8ea0ef0b2effcef988222ce4bc8831b1d79d5d10ab3ac27e401056eb446fb7da438194fa163149842fca89c3b44452510d8bf5810f +EBUILD wiffi-1.0.1.ebuild 695 BLAKE2B f146796456e113c8d4781896f41c9adddc6654c7f6078c1e26ff01fa724f630dd8431221b80f72a8d6b087b69a1fb0241a09e7fe775053a45bbf3ccf8baf506d SHA512 79b2c75355a70ca94e528b8ea0ef0b2effcef988222ce4bc8831b1d79d5d10ab3ac27e401056eb446fb7da438194fa163149842fca89c3b44452510d8bf5810f MISC metadata.xml 457 BLAKE2B 82afbf2e72b24ad367b23dd8a3f17a5c9321db2b67e3064c331d3515d582c438de5cb0ef0c9c04c55c5ef72e337af134920686dbf4e59ca869e56766cff55911 SHA512 2ba71177a042e3921c876876a4f95a4362b528e622bdb19bb23dec55cadae3bfc455615571f4958a0c4c590feb13c4bbe9b47f2477af00582043d15dd89a43e7 diff --git a/dev-python/wiffi/wiffi-1.0.1.ebuild b/dev-python/wiffi/wiffi-1.0.1.ebuild new file mode 100644 index 000000000..802d6e031 --- /dev/null +++ b/dev-python/wiffi/wiffi-1.0.1.ebuild @@ -0,0 +1,30 @@ +# 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="Python 3 package to interface devices from STALL WIFFI." +HOMEPAGE="https://github.com/mampfes/python-wiffi https://pypi.org/project/wiffi/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +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 +}