add pyipp-0.8.1

This commit is contained in:
Andreas Billmeier 2020-03-31 20:41:32 +02:00
parent 29b7b37fcc
commit 48d6cb52f3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* bump aioambient-1.1.0
* bump aiohomekit-0.2.37
* bump aiokef-0.2.9
* add pyipp-0.8.1
2020-03-29 get back to normalize
* bump PyChromecast-4.2.0

View File

@ -0,0 +1,3 @@
DIST pyipp-0.8.1.tar.gz 10873 BLAKE2B 8e2c3c5e20dfaa5b819d2d17e6014b50ee871ae3cf5ad673e1c33d20657932d6dfa9694fad644ba9a36126815942d099c4b4a3595a1dad39970df8d39f5ad20d SHA512 c21bd29a25cbd0f0b071dd9a2f6b3e0419bad96cc089c4e5cd0c8a129f06905a1555a9823ecb5919dca3705f8509c69e4420825909840502f896d1c7e84e343d
EBUILD pyipp-0.8.1.ebuild 706 BLAKE2B 8e98947371d9573f37bda7dbefb35de614ac7a44e45eb561916767c7248bdfca4e3683789d5843d1b0c57d0aea40ce04cbca07266838b6803fa5060fc46c03d7 SHA512 c1c91fbd30e873d10ee3c0f888f1100233cdbcb7bf3f32e2f396a3cdfe0c81874e7a673b81588f164c16c73d860f0a68cb42b9e72d6d56afe35f0c3f43aa28d9
MISC metadata.xml 458 BLAKE2B 7de9f583f07cc25e04743dc52886a789ae25e57d325f41d753de772e6c02abda2f15b56660519371bdfeefdabbda2b42d149d930956e4ef29c8ab306a572c4a0 SHA512 25a287eb6f8d6f73729e2e377f75595bca07a8f30dcb1e04a993549c72986d1ce686d68b08cf32b606e37e8234b2d2afb70ecf793e5c0ef47d13f537b068ada2

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyipp</remote-id>
<maintainer status="unknown">
<email>chris@talkingtontech.com</email>
<name>Chris Talkington</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for Internet Printing Protocol (IPP)."
HOMEPAGE="https://github.com/ctalkington/python-ipp https://pypi.org/project/pyipp/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~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
}