add pyrepetier

This commit is contained in:
Andreas Billmeier 2019-06-02 13:01:00 +02:00
parent 7498f3a16b
commit 4a9558753e
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyrepetier-3.0.5.tar.gz 3166 BLAKE2B 87a2b9a6b6f4a6c5ea2c19748164f3c8b59cde7fefc0a5cf3a3caadb1c6eb390d5871e3744bd4dce5a1fbec331ac46e07bb3eb45daa90fdd5aeda19ca769f786 SHA512 40f038cfb73f875b02f4b5373b2c92b29e4b1df5f4ee9075d5fd9b8493746664d5c217e9f3f03466548c271ee5f4c5964d5b71effe3f6ec9c37edd2210ef3729
EBUILD pyrepetier-3.0.5.ebuild 699 BLAKE2B 54591924f4c24c1ef37339a08a93f052bc8dbdebfceb6f66e33e6cbfc3531a4457ec9603735f3771da132cfcc0d8674840cb299aba5827d888d7de41d8cf62bf SHA512 3c2c73597c3c928385d8e8c9e71f113bcb31234c268ae491be35d72a802f7ac05a16ede04bb92c91a026df191b31a8d15f244fbfc8ce1cdce8dcf54c3b946d88
MISC metadata.xml 455 BLAKE2B b5a27daeb9c35f2e0a7a699fabe0433c0fa8f569805cae14ffb5e65471ffad24c23d09dfe2361570294a26de9af338ddaadf41f03437151aadb6863feb23391e SHA512 904e7f0144d47d05bf9a45189fe141a199927c2b50b708ea25b899aa92a92c0eafda3b2bd3594a9275ef5c07d949644cb88525c6f301542b8b43da1f29c6f8b9

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">pyrepetier</remote-id>
<maintainer status="unknown">
<email>morten@trab.dk</email>
<name>Morten Trab</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="Repetier Server API library"
HOMEPAGE="https://github.com/mtrab/pyrepetier https://pypi.org/project/pyrepetier/"
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
}