bump pyipp-0.8.3

This commit is contained in:
Andreas Billmeier 2020-04-05 09:06:44 +02:00
parent 48b3dbee52
commit 6e653a4556
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -18,6 +18,7 @@
* bump HAP-python-2.8.0
* bump pyflunearyou-1.0.7
* bump python-miio-0.5.0.1
* bump pyipp-0.8.3
2020-03-31 homeassistant-0.107.7
* bump frontend-20200330.0

View File

@ -1,5 +1,7 @@
DIST pyipp-0.8.1.tar.gz 10873 BLAKE2B 8e2c3c5e20dfaa5b819d2d17e6014b50ee871ae3cf5ad673e1c33d20657932d6dfa9694fad644ba9a36126815942d099c4b4a3595a1dad39970df8d39f5ad20d SHA512 c21bd29a25cbd0f0b071dd9a2f6b3e0419bad96cc089c4e5cd0c8a129f06905a1555a9823ecb5919dca3705f8509c69e4420825909840502f896d1c7e84e343d
DIST pyipp-0.8.2.tar.gz 10891 BLAKE2B 61658453f31ad329376af714cef2272f19547b7e6c8b25bede71b25b7bad9401f7a43d2f6611bb4aacf341a2f7b36031f645dae9058d05a767dfee6ba479eb52 SHA512 9fb442f2db5aa827164eb591c3492920dc748db36ccf4033b4a988b600f2fb277eb72da03d2e2409c7836565dcac483f125747d2d4f7ddc04825279df5eb00a3
DIST pyipp-0.8.3.tar.gz 11314 BLAKE2B d3b705b940ebd3288aefa0f572ba48a8f66156aa6f6ddfc7d8e322efac0e216c029aa933d734995b4e93ad9f2f148ac7022026f38a1565a2b00ef1c576bdd591 SHA512 fa1861e38b27e79ecbaea3445621d375c116171189e5e3b76e8e1d113c55530a611eefeb1f88925a6ebfae0581e26a531960a25ad9562be4105292aa48a7501a
EBUILD pyipp-0.8.1.ebuild 706 BLAKE2B 8e98947371d9573f37bda7dbefb35de614ac7a44e45eb561916767c7248bdfca4e3683789d5843d1b0c57d0aea40ce04cbca07266838b6803fa5060fc46c03d7 SHA512 c1c91fbd30e873d10ee3c0f888f1100233cdbcb7bf3f32e2f396a3cdfe0c81874e7a673b81588f164c16c73d860f0a68cb42b9e72d6d56afe35f0c3f43aa28d9
EBUILD pyipp-0.8.2.ebuild 706 BLAKE2B 8e98947371d9573f37bda7dbefb35de614ac7a44e45eb561916767c7248bdfca4e3683789d5843d1b0c57d0aea40ce04cbca07266838b6803fa5060fc46c03d7 SHA512 c1c91fbd30e873d10ee3c0f888f1100233cdbcb7bf3f32e2f396a3cdfe0c81874e7a673b81588f164c16c73d860f0a68cb42b9e72d6d56afe35f0c3f43aa28d9
EBUILD pyipp-0.8.3.ebuild 706 BLAKE2B 8e98947371d9573f37bda7dbefb35de614ac7a44e45eb561916767c7248bdfca4e3683789d5843d1b0c57d0aea40ce04cbca07266838b6803fa5060fc46c03d7 SHA512 c1c91fbd30e873d10ee3c0f888f1100233cdbcb7bf3f32e2f396a3cdfe0c81874e7a673b81588f164c16c73d860f0a68cb42b9e72d6d56afe35f0c3f43aa28d9
MISC metadata.xml 458 BLAKE2B 7de9f583f07cc25e04743dc52886a789ae25e57d325f41d753de772e6c02abda2f15b56660519371bdfeefdabbda2b42d149d930956e4ef29c8ab306a572c4a0 SHA512 25a287eb6f8d6f73729e2e377f75595bca07a8f30dcb1e04a993549c72986d1ce686d68b08cf32b606e37e8234b2d2afb70ecf793e5c0ef47d13f537b068ada2

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
}