add pyAtome-0.1.1

This commit is contained in:
Andreas Billmeier 2019-09-06 09:36:48 +02:00
parent 3ae5762c02
commit 5d9830de6d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyAtome-0.1.1.tar.gz 4495 BLAKE2B 22f43e62054bbc859110508337ebb27ea3aa4401bded1ba1481abd3270452ecb940745d9d188c598aa21732f2cc845db219434bd0d0eb9635a512b313dcf42cf SHA512 d6429be278c59f88aca56b5d714ef015c07a036e7e606c127c00b5e63b95b6fbf84bfb87583972457c4676a2e252ba03a59fe9fa3e757ac7d114930cbc01a51a
EBUILD pyAtome-0.1.1.ebuild 736 BLAKE2B 58c45b20dd2c37908a9a5d15ffe2d62bf5615bfe9c2b1bf55dea84a417919344e00dd8882b5e1d4f5f56dc8dafb94b6e43d7b2c655d29beb521e3f805b12f366 SHA512 6acce19e1a6f60659f5b057dd8b261507a43ea8d9d4de4b0b0b929a65f9621520246c29e23ecbd061fb4819065c3bce6a055ef59bc0221aa2ff8544fb412121d
MISC metadata.xml 465 BLAKE2B 4f29d8067b0f9a5c6ecca30d355607d78223673d3d7da702bcc465cb3c467c5993ceb65ac9477bf3ad43871eda0a2be7741334ee37c9889f6afc99e2879271cd SHA512 635369c42a4cd5bda7883a8e9a24909ca6bea052cf1d0da0adbe2b5f7a39c39a271b2b9f2dfbd4569a784669bf0c56972e2db2a1df4bac53a7a695804e408b09

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">pyAtome</remote-id>
<maintainer status="unknown">
<email>baqs@users.github.com</email>
<name>Pierre Ourdouille</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="Get your energy consumption from Atome Linky device"
HOMEPAGE="http://github.com/baqs/pyAtome/ https://pypi.org/project/pyAtome/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache Software 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
}