pyloopenergy-0.1.3

This commit is contained in:
2019-05-22 14:17:00 +02:00
parent 980b3e4774
commit e29fbb4954
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
DIST pyloopenergy-0.1.2.tar.gz 4527 BLAKE2B e38113d34ab3424523de5c234277b06435720fa36345d43e126ace8140ec4dd5cee27e7bbaf55d3d9b2aeffd0fb4569aea7338f62b1a64927cc17e9fd760abdc SHA512 d4d8df7d7c294d819f8c24d958584bef21b09d895f479b1be8b401f072785ec32ed8c861b10d3b515eeea0bf5a69e28cb9575fef19533847a3e15d8d98f16f84
DIST pyloopenergy-0.1.3.tar.gz 4534 BLAKE2B df9b10f87775929dc73d678159394cfe1b6d5c2af3c4b849f4104a6df2c46bb7534af702c407c95e0dbbec0914247682dd5ea26531689a07f60a02e3a657fd8a SHA512 1205434eaf4908c502b53a25de289579011a218b165e7eab288e8a0aa9775a38685510f170bfd1c78b6cbc561728e8e7ceff5a94c2b408f94f7e926e3e283734
EBUILD pyloopenergy-0.1.2.ebuild 728 BLAKE2B a05b47823a5e81661e786b60977d2d2ed6638caae7318df0a4c855297283808d36f7b1bf548c71a5d8f55d178f3f2beff043ad631753f790ab993df1ccc7ce93 SHA512 f63abd303f952dc520a42d43a86eaee3d183766977ef2711ed29e7d4bb1dd542fa6766770a11c7c505557b16d78da203efff0e407a479b5692591d1f49e7f47f
EBUILD pyloopenergy-0.1.3.ebuild 728 BLAKE2B a05b47823a5e81661e786b60977d2d2ed6638caae7318df0a4c855297283808d36f7b1bf548c71a5d8f55d178f3f2beff043ad631753f790ab993df1ccc7ce93 SHA512 f63abd303f952dc520a42d43a86eaee3d183766977ef2711ed29e7d4bb1dd542fa6766770a11c7c505557b16d78da203efff0e407a479b5692591d1f49e7f47f
MISC metadata.xml 464 BLAKE2B fdb5202bf52c0d07d9a258baa1ed8e944d8a518f37e1e405844900a112cebb16e1294f19f4de3a45105f506c0293ba67109f94c48f76235a5a129d8f39c48451 SHA512 5771440a89264a08cd8015ebbb3ebd42d45f705c63385a84e05e6adc2c6509711e270be61473fefdd8c1a08cec16702da8323be115990dc85e410c64521d4454

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">pyloopenergy</remote-id>
<maintainer status="unknown">
<email>mail@gregdowling.com</email>
<name>Greg Dowling</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="Access Loop Energy energy monitors via Socket.IO API"
HOMEPAGE="http://github.com/pavoni/pyloopenergy https://pypi.org/project/pyloopenergy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
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="Access Loop Energy energy monitors via Socket.IO API"
HOMEPAGE="http://github.com/pavoni/pyloopenergy https://pypi.org/project/pyloopenergy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
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
}