From d7b0b4fd3c1c2fb6e9706b21ca0ec64bb6a07c77 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sat, 21 Nov 2020 18:24:34 +0100 Subject: [PATCH] bump aiopulse-0.4.2 --- CHANGELOG.txt | 1 + dev-python/aiopulse/Manifest | 2 ++ dev-python/aiopulse/aiopulse-0.4.2.ebuild | 30 +++++++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 dev-python/aiopulse/aiopulse-0.4.2.ebuild diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 02509d19a..b58f31512 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -13,6 +13,7 @@ * update homeassistant-0.118.2 * add tailer-0.4.1 * unpin some tests in home-assistant-cli-9999 + * bump aiopulse-0.4.2 2020-11-19 homeassistant-0.118.1 * bump home-assistant-frontend-20201111.2 diff --git a/dev-python/aiopulse/Manifest b/dev-python/aiopulse/Manifest index 0b9751581..a8f9db825 100644 --- a/dev-python/aiopulse/Manifest +++ b/dev-python/aiopulse/Manifest @@ -1,3 +1,5 @@ DIST aiopulse-0.4.0.tar.gz 8675 BLAKE2B a04796fc7ba129114b1a792acefa40220289ab00eb4d3d980f31b792e8cc515a14118725a2adf260a481f296596b7608778e1ae2385e282aebd7c232ded09b38 SHA512 feed82747d496421f8507225e47b8a8512473c1df96243a7be0ee3ca03aa5f7716f4cecd3363fae16dff0c72b91e01fbb1494ee0790b55c815dc5bd4ac91cdbf +DIST aiopulse-0.4.2.tar.gz 8831 BLAKE2B 1f688230dad779fa72d03f3c2c0ba629b35bcd1b81537488485697cf79cd4e26fe5c98b2b33ab10ef663d1ce52be993ecd3b6c6ae3737abc8f08f36b805364b4 SHA512 4d63150f54dde944fd0c1a694c0e07d7f83b5248805a361c7bf3d808df067c46892aa0e13952218240b69f7c4e90ab43e45b3aa8c02868b81658c87494dc97fb EBUILD aiopulse-0.4.0.ebuild 749 BLAKE2B 6e28e9bf232940a2ef013f46dc5a5408d8b2148dad189f142034ce1c49d5a60442e90ba0b18c2f30e55e276efee37e63bcf87f65a3fd6d1acb23ca2b4c9c9fb8 SHA512 5095ab54d8e38d88f3da82a835c1edf4b8b4fdeab1d123663c7ec7f47f1bfd3bb8f7b01fcc5fb30bc3b79c5b0187f6f0855a169088f477d783a5d67681a5a028 +EBUILD aiopulse-0.4.2.ebuild 738 BLAKE2B 4ab349870645a619daf964a20300d63a5187e33c3978bcc1aa7a9a8d690ec9422e0adb39b914709db12a76f66ef744f106e6bd291c151eebe320aaf27b9183df SHA512 21fb7de74ab115a78f8c63caf15a21ab540ad572e2f4ad713be842a4fd982d7d49a3f76e3de45da73d139e7bcd7df1fe523789c57fee57f693939a4d3ceea729 MISC metadata.xml 449 BLAKE2B 155290cc74ae56da5abe275d5e0c28407185334cfc02a19e86fcca3532df25c8a2c231828fa5962dcdfe2679e40e34284b79e4cdd619f15b2cb51d9b4f4c5b5e SHA512 d86c36143cc501425d4dc991853977f47aba56341aa7b5fa9ec2f6c3f40b0792b0e9d5307ce40a826b0ce1d664458dc5df0144ad5f61a8f6e686badf9c7b82ea diff --git a/dev-python/aiopulse/aiopulse-0.4.2.ebuild b/dev-python/aiopulse/aiopulse-0.4.2.ebuild new file mode 100644 index 000000000..97efad991 --- /dev/null +++ b/dev-python/aiopulse/aiopulse-0.4.2.ebuild @@ -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..9} ) + +inherit distutils-r1 + +DESCRIPTION="Python module for Rollease Acmeda Automate integration." +HOMEPAGE="https://github.com/atmurray/aiopulse https://pypi.org/project/aiopulse/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +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 +}