bump python-qbittorrent-0.4.2

This commit is contained in:
Andreas Billmeier 2020-12-18 13:29:05 +01:00 committed by Andreas Billmeier
parent 343cf775da
commit 9f6a607df5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* bump pymfy-0.9.3
* bump google-nest-sdm-0.2.1
* bump HATasmota-0.1.6
* bump python-qbittorrent-0.4.2
2020-12-14 homeassistant-2020.12.0
* bump openwebifpy-3.2.0

View File

@ -1,5 +1,7 @@
DIST python-qbittorrent-0.3.1.tar.gz 8166 BLAKE2B ed3e012c3e4fbe68a75b2ccd30e3ba2861ebef5b852ccee0a2b6893776012d31047313f29cce4e8b96f4301407b58478dc267431f4373c5367014f11da1e067c SHA512 3a4e790150be4ba54385c002ab7b1c4d4c70d0196b18986a9ab0e7a4918a5ff061454b2dcb72265ca56cc3b83f432f886179e7e6afe39fba1dab0dc843e6362e
DIST python-qbittorrent-0.4.1.tar.gz 9377 BLAKE2B 71e5576c2a2288e6f324c6b76cce0bab81c0c54d2972b8882f45df905c9418188ce004dce18d0a719b704275ca2b0bfeb104ec8a723a22fecd7c5a57a21207d0 SHA512 fbcc564477846a8111846f664d612e44aa6744aa8946a5b8ce1a8dffa02e685d914314489bcde6e0fffd29654090b42c7c214cae59127c10b504e4a49b882535
DIST python-qbittorrent-0.4.2.tar.gz 9535 BLAKE2B 3f570745cf01d82ffb68a5a11c32ffdad1feb971411e8f096f910261aad47262e49bb4bb712a0db747ba27e2312cddd563de3df0c7ae312098bc007c934057e7 SHA512 aa841f9ab376e1bed28836e7dd4eea291f856389b2f90f348dac8909d96b1e6257f7c55736fec3e94e5ee2fb487fa21d843e447c3b62b83ea6e8f40e80396d85
EBUILD python-qbittorrent-0.3.1.ebuild 727 BLAKE2B ad896883eac93dda1fbba0cbd413a42ab591ab3524b42d8f67194cbde68df3593980d218d7b164cb651f74582db300edcc088315125f37ea82fa12ebed8d94cb SHA512 013c913d1821576f6b8e0cf845f183afb83f36a7852c105274ad5f130a2a16fb64cae9ebfabacf9c898343e1c33dc0ac638811c64daf6ea90780c3a5ea341e2a
EBUILD python-qbittorrent-0.4.1.ebuild 736 BLAKE2B 17e5d67adbb0aa7932947bc6afbc641d8c92186624f5b04561a355d8f9a82003b69f87827de6b321395c162cd27c46c17cb2eb6769fa9af4a1daecbd586334bc SHA512 d6aaec7ae6e4dccef7b92c909a172f961889c16cd9ec693552da938e1b3b45d5e061273628fd5ceee086d4ea4a752e1a8e474c5c261d85a279bc22d86235526c
EBUILD python-qbittorrent-0.4.2.ebuild 744 BLAKE2B 00b50f60eb78c2195c3a77d20e2dfb126792d94fe8e2d6454d0eea85d80f9227fdf0e3aedd246332e88b6a71a5028e474acc5c0998423432bfd2085eade01310 SHA512 3f03e21512fbc839d17da92682d8b373f83b01e44dbd687c5fe84792b43c88cd4942704ac75c3fdb3b962dc3ed8ef8fdc54b6d3dcece2934776b5dc3a9c792d5
MISC metadata.xml 458 BLAKE2B 87df55e9bef07bd988584dcf2d753b6534d4900fb432d8d9e414cc0e10cc9351c17214a10968f9ac8d508c0a0f654fba71d8986d82769b6befd7f7d53b1331e6 SHA512 9464c14dc95f13311dce9804ac73dcb3d8f1c8c0bbb4a74d76d8edaef0c3fb0823448fd226444e50e218b09a28968a35c71d98c2c68db752a94e27d203a303bf

View File

@ -0,0 +1,32 @@
# 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 wrapper for qBittorrent >4.1.x"
HOMEPAGE="https://github.com/v1k45/python-qbittorrent https://pypi.org/project/python-qbittorrent/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND="dev-python/requests[${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
}