add pyrainbird-0.2.1

This commit is contained in:
2019-08-21 00:22:13 +02:00
parent eb7df04c15
commit dba5e3ecbb
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST pyrainbird-0.2.1.tar.gz 4897 BLAKE2B 67e708de74e942ec85b4e3c4b10902b9ebc7941c35c57d6f45b3efad9a59d21c05303ac62303e33af03dcfba62086626b5193257a30c90f5ba6d659567f90713 SHA512 2cf7d5033613bad4d0bcd1c53cf0f2943bd704102d22631e8f440398197ce4affe4e818123523b7a3e512b9b2e5b8a0853b2ae3e890947664a5a59ae8a510e35
EBUILD pyrainbird-0.2.1.ebuild 698 BLAKE2B 70ed2f9766c9201e72e6688b278de30ed433d05da6875464f3b7cab88500d7e561ec2008acab20cb2ea741f3bfa9735cf8c95f6160d0349351da1873843e53eb SHA512 3701c5138562eef78cf6272cb7b79f42646fffbb95a08436e50bc029a3a40e758c64f76df1109ce764eccaa5817732fef7d94f91a9576584fd318aa63bf1212e
MISC metadata.xml 462 BLAKE2B bd942e9edae9552298f69f190f855c856424ca398933ac0a4ee05c059f565283497df96ac54cc91b83d5574a46892363e5bbd069cd392dc00bc34b72e454c174 SHA512 b28f2346cd89648d8a1b8ffe48347073acebf2b8411e540d4e0a91da5796e93caa317388f22b28942250ffa2f6063219847f1bf3fff37f55a59f8db5582ac872

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">pyrainbird</remote-id>
<maintainer status="unknown">
<email>jordy@fusion-ict.nl</email>
<name>J.J.Barrancos</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="Rain Bird Controller"
HOMEPAGE="https://github.com/jbarrancos/pyrainbird/ https://pypi.org/project/pyrainbird/"
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
}