add pyspcwebgw-0.4.0

This commit is contained in:
Andreas Billmeier 2019-08-15 07:16:34 +02:00
parent 34a25edb47
commit 0c8cbc510d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyspcwebgw-0.4.0.tar.gz 7334 BLAKE2B b2274380a2f020ca243d09373c329866f63afa8e144cfeefbd84a6dbb042a64072286d309cef35ebfd1fd403b06dc5a0fcef93b28eacc3caa4d1e7e324c93127 SHA512 31007276da41fcf9e9e4983af5df51a631ef2d90619361d80c57b059aa70d56415de31f5754cd5808161a4e5ceb31f8f68db3f7fbc4ac7a6d2e657e11690938f
EBUILD pyspcwebgw-0.4.0.ebuild 728 BLAKE2B ac32caf61e30659839864211e4448646d697033003c985de0d9146fd27b7fb561e51e379b827a04522f58adb91871b1764413cfd15f9d21c04ed0fbf026ae3f0 SHA512 b43401b579b5b24a53839009cb5e63dfd1b7d16951d0461e79436d6a5986e8b8d7646287fd104af13ebf4168683e13cd479a0e17a6479dc528c65232490aa410
MISC metadata.xml 471 BLAKE2B 471430f30af60bb10c1bb505bba32d54039acd9844ea72d7d32cbb255de78fa11e66d15027dfae5ed489bb622969e630209e5987eedd24b023b96e25ad93d5b5 SHA512 211958dc925166e42dca3e9f523ea1fa42a641bb8f903c103dc8aade139a9d45e437b1ca1e621dd6a7398ce67ae03b7e6ccc9ecd5c64e5b311f54ff518c439a6

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">pyspcwebgw</remote-id>
<maintainer status="unknown">
<email>mbrrg@users.noreply.github.com</email>
<name>Martin Berg</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="A Python library for communicating with SPC Web Gateway."
HOMEPAGE="https://github.com/mbrrg/pyspcwebgw https://pypi.org/project/pyspcwebgw/"
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
}