bump pyipp-0.8.2

This commit is contained in:
2020-04-05 09:02:37 +02:00
parent c944329117
commit acf480e20f
3 changed files with 33 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
* add directv-0.3.0
* bump pyotgw-0.6_beta1
* bump dynalite-devices-0.1.39
* bump pyipp-0.8.2
2020-03-31 homeassistant-0.107.7
* bump frontend-20200330.0

View File

@@ -1,3 +1,5 @@
DIST pyipp-0.8.1.tar.gz 10873 BLAKE2B 8e2c3c5e20dfaa5b819d2d17e6014b50ee871ae3cf5ad673e1c33d20657932d6dfa9694fad644ba9a36126815942d099c4b4a3595a1dad39970df8d39f5ad20d SHA512 c21bd29a25cbd0f0b071dd9a2f6b3e0419bad96cc089c4e5cd0c8a129f06905a1555a9823ecb5919dca3705f8509c69e4420825909840502f896d1c7e84e343d
DIST pyipp-0.8.2.tar.gz 10891 BLAKE2B 61658453f31ad329376af714cef2272f19547b7e6c8b25bede71b25b7bad9401f7a43d2f6611bb4aacf341a2f7b36031f645dae9058d05a767dfee6ba479eb52 SHA512 9fb442f2db5aa827164eb591c3492920dc748db36ccf4033b4a988b600f2fb277eb72da03d2e2409c7836565dcac483f125747d2d4f7ddc04825279df5eb00a3
EBUILD pyipp-0.8.1.ebuild 706 BLAKE2B 8e98947371d9573f37bda7dbefb35de614ac7a44e45eb561916767c7248bdfca4e3683789d5843d1b0c57d0aea40ce04cbca07266838b6803fa5060fc46c03d7 SHA512 c1c91fbd30e873d10ee3c0f888f1100233cdbcb7bf3f32e2f396a3cdfe0c81874e7a673b81588f164c16c73d860f0a68cb42b9e72d6d56afe35f0c3f43aa28d9
EBUILD pyipp-0.8.2.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
}