add pyrail-0.0.3

This commit is contained in:
Andreas Billmeier 2019-11-23 20:45:02 +01:00
parent 1bacdf5208
commit 7c0d511431
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pyrail-0.0.3
* add python-nmap-0.6.1
* update pycarwings2-2.9
* add niluclient-0.1.2

View File

@ -0,0 +1,3 @@
DIST pyrail-0.0.3.tar.gz 2112 BLAKE2B 38adb2f94740412c681e8896e6004c512772e58757fdf8271394b14ca6c4442ae800c8cf3b974b713923518dc8924955244b9f342afbd35f306f5483fd6527f3 SHA512 a848a62df82e27414912b6d4a8ce048c1be5bc921ca43088696633b9bcf17d985aad83105b64c63c849a0ded3f5af7cec47a82823893f00d81ef449a68fa6b13
EBUILD pyrail-0.0.3.ebuild 700 BLAKE2B 6d9f4fa9de897db65fa9623029235c3fdf7bfa44841e958f887ea0974f72a623ed766f197714b90e0d49f832c744d9fd1c17b217e22a153ae7a32b959ceb24c7 SHA512 246d47d45acefc9617b59d10f297c0308b9ef84a318575bb2fcf61f758687a20fc8385b4896b085028c2e62424e26ab56830fe93691f553b0ca6dea3874b7ba8
MISC metadata.xml 466 BLAKE2B 3d8ab49ad79d2f1df9a753c9f69e9ba6b3581677248b1603acc452f912109293301e6ca57b5f655c5b700f4b5bd7902362ad6ecbd3dc13a2cdf8aec5d937ba80 SHA512 751d6c246f908f2d081dc3e13cc8b45e5612d7e0b7e441b213134105ce20e6c2261b5c1796e89b37272d2ee9897578bc221bb454dc805cec3f94502f80961feb

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">pyrail</remote-id>
<maintainer status="unknown">
<email>tielemans.jorim@gmail.com</email>
<name>Jorim Tielemans</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Python wrapper for the iRail API"
HOMEPAGE="https://gitlab.com/tjorim/pyrail https://pypi.org/project/pyrail/"
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=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
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
}