bump aiopulse-0.4.3

This commit is contained in:
Andreas Billmeier 2021-12-04 19:14:40 +01:00 committed by Andreas Billmeier
parent 9c8eddb67f
commit 1bedbca6fd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST v0.4.2.tar.gz 16379 BLAKE2B 876d17a55ff6b0c98020e353fc0c408e51049e4b77b5663d70e5ca739fd45eb14c0c1f87c6527d0cc8f707eb582c6db85b21dc4787a6172722ceb6a819050755 SHA512 df22b972688264cad9f1a6e026993a98afea781834b2c39f4d9dbae98b421281abf210f716422fe963339e5d02d0b94bfe70b4fc4be76678177708dc984d38b7
DIST v0.4.3.tar.gz 17434 BLAKE2B 775a2adc4726a2310b8d7b430afec1b36feea115700d30bcf3d150e661cb6f496accb40ed137b8ac17affef6bfe22c112467c52667adbc0ee831d8bf61a85aa8 SHA512 0405d02fff80565ebc4705e0164bfa3451226855c883e78150eb6ce069e9cb801e8ce3a50eaaec181033d19136686ff86233594cb0f72a96ca5c811c079c303f
EBUILD aiopulse-0.4.2.ebuild 782 BLAKE2B 6bb9c7037fd401c971b419ea327ace993bb51f3c1505ce9e6a4b6e08b5b5d8fe2bc2a9e078c64adbaf4e23c263ebe9ec0c60e9c73b11bbfb872dafb013000138 SHA512 ea81d2bc927069bb0e575f160dd60d362f92d84155ff09b4941f0fa03e64ef6b89ac5c1fbd4eb8174e8514a2b9aaa6546642147ae99d47e131ebb062489bac0c
EBUILD aiopulse-0.4.3.ebuild 782 BLAKE2B 6bb9c7037fd401c971b419ea327ace993bb51f3c1505ce9e6a4b6e08b5b5d8fe2bc2a9e078c64adbaf4e23c263ebe9ec0c60e9c73b11bbfb872dafb013000138 SHA512 ea81d2bc927069bb0e575f160dd60d362f92d84155ff09b4941f0fa03e64ef6b89ac5c1fbd4eb8174e8514a2b9aaa6546642147ae99d47e131ebb062489bac0c
MISC metadata.xml 449 BLAKE2B 155290cc74ae56da5abe275d5e0c28407185334cfc02a19e86fcca3532df25c8a2c231828fa5962dcdfe2679e40e34284b79e4cdd619f15b2cb51d9b4f4c5b5e SHA512 d86c36143cc501425d4dc991853977f47aba56341aa7b5fa9ec2f6c3f40b0792b0e9d5307ce40a826b0ce1d664458dc5df0144ad5f61a8f6e686badf9c7b82ea

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python module for Rollease Acmeda Automate integration."
HOMEPAGE="https://github.com/atmurray/aiopulse https://pypi.org/project/aiopulse/"
SRC_URI="https://github.com/atmurray/${PN}/archive/refs/tags/v${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/async_timeout[${PYTHON_USEDEP}]"
BDEPEND="
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
}