diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-11-14 20:48:15 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-11-14 21:53:20 +0100 |
commit | 7c9665a121bfd8f31ede9c0a12bcb8970fabbb7b (patch) | |
tree | e032230d2725c45ce2bc1652ebc2d65b9e77bea9 /dev-python/fritzconnection/fritzconnection-1.7.2.ebuild | |
parent | dev-python/pymdown-extensions: Bump to 9.1 (diff) | |
download | gentoo-7c9665a121bfd8f31ede9c0a12bcb8970fabbb7b.tar.gz gentoo-7c9665a121bfd8f31ede9c0a12bcb8970fabbb7b.tar.bz2 gentoo-7c9665a121bfd8f31ede9c0a12bcb8970fabbb7b.zip |
dev-python/fritzconnection: Bump to 1.7.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/fritzconnection/fritzconnection-1.7.2.ebuild')
-rw-r--r-- | dev-python/fritzconnection/fritzconnection-1.7.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/fritzconnection/fritzconnection-1.7.2.ebuild b/dev-python/fritzconnection/fritzconnection-1.7.2.ebuild new file mode 100644 index 000000000000..00eeb7787fd3 --- /dev/null +++ b/dev-python/fritzconnection/fritzconnection-1.7.2.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 |