add sunwatcher-0.2.1

This commit is contained in:
Andreas Billmeier 2019-10-24 22:52:07 +02:00
parent 0cfc10a2f7
commit a90d0692b9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST sunwatcher-0.2.1.tar.gz 2141 BLAKE2B 76e0c340faac3d4576189bbce335d6e239a69d3be4dcf932634e15ab98dcb4bdbd8b4535b8c80273f41bf968422ad927511ee3c1e29215da3b0c2c65fe936655 SHA512 83d573f69eddd7811f08edd11a13faacd1804bb75566545e96c0fe192a5e5781ee2663d8b3502d4a29d2e72796569ef5bd588ec0ab04b0aa91b4de668701808a
EBUILD sunwatcher-0.2.1.ebuild 719 BLAKE2B b7747d35bdb6fc996b8c3235cb28f5cfe2718da88b29b7d663ec2ef3fb2b94419b43123f0a35fdf7464dd0be8bf82baa02df2591c00a71fcb52fb688283c63e1 SHA512 f63ae1a4dcaea9bcd8373964dab7ec57b8d2c42acbebef89cf32116c9b6f0ab7d70263089a8cd2c3073b73e05543426bb07ccb315ca7cbd3871ed58ed4191772
MISC metadata.xml 461 BLAKE2B 8a8a649664d7ba1d9ad760a5e656fb4f5867eb9555ffaf217f8214508f1b76ff202d104d16f4e3011bfb0e671e8bbfd982d03d234b93637ce1db5bf070c65337 SHA512 95f97849119adfeff3c9b879b127759c6241f9dff7bfce2eaa1f679e8c2949ab237494c64eb624edb47c5eea8bf9811ff5c458c0d5caa618da387700211914fc

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">sunwatcher</remote-id>
<maintainer status="unknown">
<email>michael@morrolan.ch</email>
<name>Michael Senn</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="Binding to SolarLog HTTP API"
HOMEPAGE="https://bitbucket.org/Lavode/sunwatcher https://pypi.org/project/sunwatcher/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache License 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
}