add pyubee-0.6

This commit is contained in:
2019-04-25 20:14:03 +02:00
parent ed0ff473f7
commit 68d9da37fb
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
DIST pyubee-0.5.tar.gz 18480 BLAKE2B 2a26a79fddee36bafef4cc6e344b8bb8eec73360d5bfb5ace65f4d239b952ec8e20e12725e38b57d119526ba5e80e5406a6380067c17946bc00d58517ee32260 SHA512 7a5fa787113c857cf1299a2e544fc6b1e5d9f310ee336998df00fbc0d2a060bbdc519ad448537f542e6f363028522b422c831fce9e2ef9a36ed45ccead0bb2ab
DIST pyubee-0.6.tar.gz 19776 BLAKE2B 66dc3208ccab48a4de418cdcc28bc696446b2d262641c73ae60cc117d255050dc8a0f094cbabbead467c4fc1bc527c033475ee00808743e7a8e778e11f9e0b51 SHA512 2e6027acfe6842007bdf3b7a1ae4bc33f8641354a93285a349814166bbb3fcf25460ac45eeaa4952d06e87aecc3797ef91b2f30ec6515ebd3932d1e89dbaa028
EBUILD pyubee-0.5.ebuild 713 BLAKE2B 6f13749fed70882af733156e2039945dbbccb5e1476f33040ee5d939228e796bb464263933ed2c6b160354e9bb9306f92850769076161b5b381bc01dd6439d30 SHA512 aedb79f40c1718c56305602258584c10d91b482ebd140f3d3489ee4ba70688e9912fb85a42a4743608f29caf4171350fd2d42d919a3106bc18ff58c51b912cec
EBUILD pyubee-0.6.ebuild 713 BLAKE2B 6f13749fed70882af733156e2039945dbbccb5e1476f33040ee5d939228e796bb464263933ed2c6b160354e9bb9306f92850769076161b5b381bc01dd6439d30 SHA512 aedb79f40c1718c56305602258584c10d91b482ebd140f3d3489ee4ba70688e9912fb85a42a4743608f29caf4171350fd2d42d919a3106bc18ff58c51b912cec
MISC metadata.xml 458 BLAKE2B 13101497bef42118de31415e1959bb49720c278d43693e3e4af4aaa6bbc2294bd29b5a8f6556faf7535a3c2ba2f2188e3855b31736bf8fda96de54be776ee831 SHA512 5a57482ac067af213c9e5bac640c112b71b573cfabab0be74d745a6ce14acc096c399633c07c8349cf045fc2d62b3d539d1da85ef1d9abc8bea1d7166e704c3d

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">pyubee</remote-id>
<maintainer status="unknown">
<email>mzdrale@gmail.com</email>
<name>Miroslav Zdrale</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="Simple library for getting stats from Ubee routers."
HOMEPAGE="http://github.com/mzdrale/pyubee https://pypi.org/project/pyubee/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
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
}

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="Simple library for getting stats from Ubee routers."
HOMEPAGE="http://github.com/mzdrale/pyubee https://pypi.org/project/pyubee/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
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
}