add python-qbittorrent-0.3.1

This commit is contained in:
Andreas Billmeier 2019-11-24 20:43:12 +01:00
parent c36d25bd7b
commit 4e009c66c5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 1 deletions

View File

@ -1,6 +1,6 @@
2019-11 23 (reverse added today)
* add aiolifx-effects-0.2.2, miflora
* add pyflic-homeassistant-0.4
* add pyflic-homeassistant-0.4, python-qbittorrent-0.3.1
* dg ritassist-0.9.2, btsmarthub-devicelist-0.1.3, webexteamssdk-1.1.1
* bump youtube_dl-2019.11.22
* bump pypca-0.0.7, now back on pypi

View File

@ -0,0 +1,3 @@
DIST python-qbittorrent-0.3.1.tar.gz 8166 BLAKE2B ed3e012c3e4fbe68a75b2ccd30e3ba2861ebef5b852ccee0a2b6893776012d31047313f29cce4e8b96f4301407b58478dc267431f4373c5367014f11da1e067c SHA512 3a4e790150be4ba54385c002ab7b1c4d4c70d0196b18986a9ab0e7a4918a5ff061454b2dcb72265ca56cc3b83f432f886179e7e6afe39fba1dab0dc843e6362e
EBUILD python-qbittorrent-0.3.1.ebuild 722 BLAKE2B 8bf69dc28aa6538b4db8205e3ec4e0f2e1ce1d9e16401c7dd3a9650a6b35aca37971a51719c2fdaa8f24fff5b415e558fed220f88a0bad09549c9d3ed6f16c9d SHA512 39b28c0ca9f7ce85d5be0f4450ab2e2f627a1169d8a7c2812f8c0ac3edece34ab08622ca57a6d6719e1a5e6744038f16b218803e8073f6b247aa3f5109a00d98
MISC metadata.xml 465 BLAKE2B 0f1f7981f3978c86a39ba4128e67ea6fc81acbd611c9e20a982e97d1d555f7db63fd968157071056e1ff2722a76431279e3e2aef3c997d3901df34c9f439c252 SHA512 de8db08605372a06c5c909bfc62ae24c6d34262796840ebd85fa229d960afbca8c749b53c760bfff070ea7c7cc5408bcd8194f2139564f1697866a6ae23b46d1

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">python-qbittorrent</remote-id>
<maintainer status="unknown">
<email>v1k45x@gmail.com</email>
<name>Vikas Yadav</name>
</maintainer>
</upstream>
</pkgmetadata>

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
}