diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-07-24 17:03:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-07-24 19:29:51 +0200 |
commit | b5905de151318a4da80cce91617c5b98681e631d (patch) | |
tree | e174f19248aef34333412700e07c2a6f7392972f /dev-python/fritzconnection/fritzconnection-1.6.0.ebuild | |
parent | app-emulation/runc: Stabilize 1.0.0 arm64, #802948 (diff) | |
download | gentoo-b5905de151318a4da80cce91617c5b98681e631d.tar.gz gentoo-b5905de151318a4da80cce91617c5b98681e631d.tar.bz2 gentoo-b5905de151318a4da80cce91617c5b98681e631d.zip |
dev-python/fritzconnection: Bump to 1.6.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/fritzconnection/fritzconnection-1.6.0.ebuild')
-rw-r--r-- | dev-python/fritzconnection/fritzconnection-1.6.0.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/fritzconnection/fritzconnection-1.6.0.ebuild b/dev-python/fritzconnection/fritzconnection-1.6.0.ebuild new file mode 100644 index 000000000000..00eeb7787fd3 --- /dev/null +++ b/dev-python/fritzconnection/fritzconnection-1.6.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Lib/tool to communicate with AVM FRITZ! devices using TR-064 protocol over UPnP" +HOMEPAGE="https://github.com/kbr/fritzconnection" +LICENSE="MIT" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/kbr/fritzconnection" + inherit git-r3 +else + SRC_URI="https://github.com/kbr/fritzconnection/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +RDEPEND=">=dev-python/requests-2.22[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest-mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |