add speedtest-cli-2.1.2

This commit is contained in:
Andreas Billmeier 2019-10-27 13:06:14 +01:00
parent 97b14b115d
commit 381e792d2a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,5 @@
DIST speedtest-cli-2.1.1.tar.gz 24380 BLAKE2B ea6f5fc3127246ad4cf90dee4b53529fa9f3b9b9558c9ebb92661380663a5e5950490e91cda97f9207b26c23464026b91c8faa50ef5a515b817b0f84fcb2e13b SHA512 afc1fc0264d5124efe5afc9b0583b2b37ae50eac229e6971656a906b9a7a78d44158485d5c2e44c3430694fd7355926f578a54a196cc9b9baf6cfbc357a789d1
DIST speedtest-cli-2.1.2.tar.gz 24365 BLAKE2B 19ba7191eab1e38f24505555235297f4f7f72ceb663c8c7eb5fda4cd5c758868b63a7495b2da46c5d73ac8ebb229d574ca65569db1d0d83713732df0527b725b SHA512 60398c15c13d658e4aa26dbe7a11da04c94fd2a627b0b54899a1bc147410ce0d1908b279be8b3c574b4a59cdce6972a00d92228e4482565214f1e852b354cbaa
EBUILD speedtest-cli-2.1.1.ebuild 775 BLAKE2B 6f1524168625b1be52f35f50debb0d85a093ab0a3e8d74b842fb098b6bfef78a98e7e348b6ab7b5eb6848015c653133c0f2384c8693234d546c51a9a6d7f9150 SHA512 316b6f47d2f103e70fcab34f9db32a09e5bf0a230c3705eeee99166613115597f92aaca8ee31b02903615607139c936b2e25ff39eb5f495d241ae8f10054502d
EBUILD speedtest-cli-2.1.2.ebuild 775 BLAKE2B 6f1524168625b1be52f35f50debb0d85a093ab0a3e8d74b842fb098b6bfef78a98e7e348b6ab7b5eb6848015c653133c0f2384c8693234d546c51a9a6d7f9150 SHA512 316b6f47d2f103e70fcab34f9db32a09e5bf0a230c3705eeee99166613115597f92aaca8ee31b02903615607139c936b2e25ff39eb5f495d241ae8f10054502d
MISC metadata.xml 457 BLAKE2B 978e9dcf1415c6497495be024860b4144d288d382ced63d4b92f133e0e065f06fbe315eb47309e4d843a83f9f43f596ef02979b9dff296d1e0f36d7e3a69924e SHA512 2c04c6ad003fe87acfcf7a75e10238961b18ee14b15b696df511602f0814e32ba56e83256c52094fc61294f1d8268fc6a1dbadcf3331be6828338621ddc1fecb

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">speedtest-cli</remote-id>
<maintainer status="unknown">
<email>matt@sivel.net</email>
<name>Matt Martz</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Command line interface for testing internet bandwidth using speedtest.net"
HOMEPAGE="https://github.com/sivel/speedtest-cli https://pypi.org/project/speedtest-cli/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache License, Version 2.0"
SLOT="0"
KEYWORDS="~amd64 ~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
}

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Command line interface for testing internet bandwidth using speedtest.net"
HOMEPAGE="https://github.com/sivel/speedtest-cli https://pypi.org/project/speedtest-cli/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache License, Version 2.0"
SLOT="0"
KEYWORDS="~amd64 ~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
}