add (older) tplink-0.2.1

This commit is contained in:
2019-10-11 18:25:22 +02:00
parent 7f4e438ead
commit 477d443b66
2 changed files with 32 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST tplink-0.2.1.tar.gz 8867 BLAKE2B b11a4cc5cdf00a00f9762188da1b45d754d2e4c0614d5f98d9151de5e8ffc078d0267662dd864cbf271181689a537898566ceb1a3be7f48b049c6e4d5ea040a5 SHA512 9110bef139c7f66e596a962cb6791d52cd176b39c851031fc7f835121e20544880dcba0cda08ead1d1a317142949965f0f604013fdc8ae6ddfaa52ec4e6d1808
DIST tplink-0.2.3.tar.gz 8974 BLAKE2B 973b04ca8a385426c19a746dc1d5d4b2db3a81b1996ef7d28e0c85f3d769a70429a24f398ff282a6bfa04dd0e02e37e84157f474569edbf31292a625e59fe0b0 SHA512 22eb764bb6021603cd7875d3e3cd045c4033d7fdd190d4d22336f8f34f0f9211fa5fd2e45814b5f6fc5249e310cc9f14bf0825b6b3b98a28f3ef3236c718b08a
EBUILD tplink-0.2.1.ebuild 720 BLAKE2B 1e84833d61fd36170206036b632fb814a17bd23ff93ba1ea234915be8b8f359cd9c2b8366641c3063f83745c4b07e687b153f43f662142c1f00b442d8495671e SHA512 b810f5759d288a513cb5726bf6ccd000fba59fac255cb163b2f02656c50186825c7e5a1696b583733795a6722885109ec461f15d2ceb2844422584e2d4d6d85d
EBUILD tplink-0.2.3.ebuild 720 BLAKE2B 1e84833d61fd36170206036b632fb814a17bd23ff93ba1ea234915be8b8f359cd9c2b8366641c3063f83745c4b07e687b153f43f662142c1f00b442d8495671e SHA512 b810f5759d288a513cb5726bf6ccd000fba59fac255cb163b2f02656c50186825c7e5a1696b583733795a6722885109ec461f15d2ceb2844422584e2d4d6d85d
MISC metadata.xml 458 BLAKE2B bb42487d703beeff0e067198e0cbeaf20263fb0486c9d879a6b5fe7991390774c186cbfcfb53b36096a8094a490157a6d95814075b8783469e4334b159743753 SHA512 5e8a98623b1dc0cbd6da2f20a0a2aa8fde157d7ff246476821f2aa9d55ff7afa51707459d1981a2cfa98a7572d24f82572ae0e873054087b1d101033737aa978

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="Get the list of hosts connected to the router"
HOMEPAGE="https://github.com/JackNova/tplink https://pypi.org/project/tplink/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT license"
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
}