diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 478d3cc66..713af34e8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -65,6 +65,7 @@ * update pysonos-0.0.49 * update pytest-6.2.4 * update python-http-client-3.3.2 + * update python-juicenet-1.0.2 2021-06-04 * cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464) diff --git a/dev-python/python-juicenet/Manifest b/dev-python/python-juicenet/Manifest index ee837d8f5..bc72434f6 100644 --- a/dev-python/python-juicenet/Manifest +++ b/dev-python/python-juicenet/Manifest @@ -1,3 +1,5 @@ DIST python-juicenet-1.0.1.tar.gz 2668 BLAKE2B 37a8cf61ad6e74ecac371085fee659eff1043f5488b3a4905d66bc6212a20971a63cc8c656b56b6dadf36280de27be506bd9fc92b11e7d7b17121aa0cd2d57cc SHA512 ea875d09f6c31d2fa99b0c67ee52bec43ff61f58dd083d988d05670e8d8e2935e7339eb72a64581d3beeee62f3c23774961e82a3ac9c8971969eeab6b3dc0932 +DIST python-juicenet-1.0.2.tar.gz 2915 BLAKE2B 7c2f21679788f1a7c481c63ac003906bbe0511d98f4b6dbfa4f504d112df2e67362648f1da71c308d89877f30aba38af515d0739b578ce6a7c5b8d567d73ee1c SHA512 5044089e79179314613f747c0a0c355733c66c84d477185611cefdae3131781fb5a6ac26374909266baef138374d2db9f6d12e2b2f534b94ffc7a7d511d04b6e EBUILD python-juicenet-1.0.1.ebuild 767 BLAKE2B 92fa89de0120ba1b65d2c1d9acac49270d93c3c1869c352fed5dddd3e064d4b705fe4ec7246a5046e2a8bc9ca606e439b35872ccbb3f471f02620397eb46ff44 SHA512 09ee087cd82ed2420d83ceae69a80ad469553ab637325dc808d4814a659ad2d331e7751bb81d6b0784f56432b6349c8e4562212a315dc55c7d5b1a362c04fddc +EBUILD python-juicenet-1.0.2.ebuild 761 BLAKE2B 19f80bcf63cc0deecb20b4501003726074338983cfba37178196821408a05adfef7c1c08304b86ef2eeeef0984a5ff0cd3c528610ea849ba11a47f5399afcb77 SHA512 879b8a3ecdc022e4b6fc5111e7ca004c4787d447661291e18d37ee25baaf418284f2eb1eb6541481dd5eb7ec2844d91f46c53d2365b3bca31f169d052947f723 MISC metadata.xml 334 BLAKE2B 9dea2d83a523cdb4e6374018494b63b09b0dfa612f588f558c51320a9379ee2464af4ddaf6a933db87c2735f9aef0dda81efcc0be0382204f2cd121317473c01 SHA512 9f034a2e668a8c7ca7a3d525bc8c27903bf917d18fa4a2939e8e3c26e8c0d1d0acf4c6593b915254550a92c6b3fd7239b8f4df5d1f77ac2e54d6437d9f91ef61 diff --git a/dev-python/python-juicenet/python-juicenet-1.0.2.ebuild b/dev-python/python-juicenet/python-juicenet-1.0.2.ebuild new file mode 100644 index 000000000..6f8c92feb --- /dev/null +++ b/dev-python/python-juicenet/python-juicenet-1.0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Read and control Juicenet/Juicepoint/Juicebox based EVSE devices" +HOMEPAGE="https://github.com/jesserockz/python-juicenet https://pypi.org/project/python-juicenet/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="dev-python/aiohttp[${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 +}