bump python-qbittorrent-0.4.1

This commit is contained in:
Andreas Billmeier 2019-12-28 16:51:04 +01:00
parent c81e12e60b
commit fa0e491735
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -9,6 +9,7 @@
* bump zigpy-homeassistant-0.12.0
* bump zigpy-xbee-homeassistant-0.8.0
* bump shodan-1.21.1
* bump python-qbittorrent-0.4.1
2019-12-24 homeassistant-0.103.4
* bump keba-kecontact-1.0.0

View File

@ -1,3 +1,5 @@
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
EBUILD python-qbittorrent-0.3.1.ebuild 722 BLAKE2B 8bf69dc28aa6538b4db8205e3ec4e0f2e1ce1d9e16401c7dd3a9650a6b35aca37971a51719c2fdaa8f24fff5b415e558fed220f88a0bad09549c9d3ed6f16c9d SHA512 39b28c0ca9f7ce85d5be0f4450ab2e2f627a1169d8a7c2812f8c0ac3edece34ab08622ca57a6d6719e1a5e6744038f16b218803e8073f6b247aa3f5109a00d98
EBUILD python-qbittorrent-0.4.1.ebuild 722 BLAKE2B 8bf69dc28aa6538b4db8205e3ec4e0f2e1ce1d9e16401c7dd3a9650a6b35aca37971a51719c2fdaa8f24fff5b415e558fed220f88a0bad09549c9d3ed6f16c9d SHA512 39b28c0ca9f7ce85d5be0f4450ab2e2f627a1169d8a7c2812f8c0ac3edece34ab08622ca57a6d6719e1a5e6744038f16b218803e8073f6b247aa3f5109a00d98
MISC metadata.xml 465 BLAKE2B 0f1f7981f3978c86a39ba4128e67ea6fc81acbd611c9e20a982e97d1d555f7db63fd968157071056e1ff2722a76431279e3e2aef3c997d3901df34c9f439c252 SHA512 de8db08605372a06c5c909bfc62ae24c6d34262796840ebd85fa229d960afbca8c749b53c760bfff070ea7c7cc5408bcd8194f2139564f1697866a6ae23b46d1

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Python wrapper for qBittorrent >3.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 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
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
}