bump python-juicenet-0.1.6

This commit is contained in:
Andreas Billmeier 2019-11-24 20:09:04 +01:00
parent 2a5637654f
commit 4062fccff3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* bump python-juicenet-0.1.6 (own release)
* bump mutagen-1.43.0 from main repo
* bump frontend-20191119.6
* bump shodan-1.20.0, zeroconf-0.24.0, ndms2-client-0.0.11

View File

@ -1,3 +1,5 @@
DIST python-juicenet-0.1.5.tar.gz 2317 BLAKE2B df74ab9da5f00c1b19aefdd9fcc45c23715ee154734195c1d54f48b7d0c0e89d5a37cbfc1b09e77d81d3ad7dfca65f3a99959dfb3b807513460d23853f0e8f1c SHA512 e4cd4b6a8b2c06a33109c0f379cebcc50e7e1223dfbf313c9cc3392678649943ad63d3cd61e913ad4d2d9316645bb927f315f06960109c4a36320533ccf561f0
DIST python-juicenet-0.1.6.tar.gz 2356 BLAKE2B 9a2337abad3fca4926f6260fecc363f5caf73048deb76680c404eea9a0f544157fea7636f12fc0221bde57fc2dfff594564a02e5fc7dd629c935d5c2df60c277 SHA512 dc79256f8599e7328723d0e48dc56d0d946b85337eff0093c7aacf707d02fb13203e91e0922b9db4c7c2562bfd6cb83e01a256c4aa9c7d204f93d0ac176db8c4
EBUILD python-juicenet-0.1.5.ebuild 834 BLAKE2B 3ac5f0dd195142cfed0d797dfd705a5460eae299d14e695bba995fb7a018adaaa47cf1f28d0311d66bf4659a53c2c219b1ea37ae068ebecaeaecc14b6bb3a78b SHA512 e245793f989d61ca44fd113eb340ab0f69095e759c00f22517f8ea21f3bdf6dc2411864b545df01b876aba884c7a6fb240716fba9634336a906dcb2f98ad6147
EBUILD python-juicenet-0.1.6.ebuild 834 BLAKE2B 3ac5f0dd195142cfed0d797dfd705a5460eae299d14e695bba995fb7a018adaaa47cf1f28d0311d66bf4659a53c2c219b1ea37ae068ebecaeaecc14b6bb3a78b SHA512 e245793f989d61ca44fd113eb340ab0f69095e759c00f22517f8ea21f3bdf6dc2411864b545df01b876aba884c7a6fb240716fba9634336a906dcb2f98ad6147
MISC metadata.xml 341 BLAKE2B 3da84903c321db3819ffc7999b1158c33a390e83927ed5008dcd6bc6e1c54c7207b057d65b500b5d207283cc349b1583a1d5050249db3169ff899d8ae6ff94d9 SHA512 4b1b29e0e430e2d7e1615d2ad1a62d8df90b7364bac9796f028a920e77b7563a84c74856c4fb4e1af0e1e5b8497a5762bfddd55bbbe3b0a4f73e06e94568d750

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Read and control Juicenet/Juicepoint/Juicebox based EVSE devices"
HOMEPAGE="http://github.com/jesserockz/python-juicenet https://pypi.org/project/python-juicenet/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/onkelbeh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.0[${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
}