Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fritzconnection/
Date: Sat, 24 Jul 2021 17:30:14
Message-Id: 1627147791.b5905de151318a4da80cce91617c5b98681e631d.mgorny@gentoo
1 commit: b5905de151318a4da80cce91617c5b98681e631d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 24 15:03:27 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 24 17:29:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5905de1
7
8 dev-python/fritzconnection: Bump to 1.6.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fritzconnection/Manifest | 1 +
13 .../fritzconnection/fritzconnection-1.6.0.ebuild | 29 ++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/fritzconnection/Manifest b/dev-python/fritzconnection/Manifest
17 index 083c78617f1..26dcdcbdd12 100644
18 --- a/dev-python/fritzconnection/Manifest
19 +++ b/dev-python/fritzconnection/Manifest
20 @@ -1 +1,2 @@
21 DIST fritzconnection-1.5.0.tar.gz 71597 BLAKE2B 2c0d27cf91550a7b7f0d3c56f115dd174995af4293d6dd91ee6bbfaab2f3db7c8e4a2297d83a5d6a5219550ee9397c0b1122260234b6fab4589e15c34a381f21 SHA512 2fcf84c73af146d0422a9e32364562e4cc9d6992f487f40f27eede4a571c4dfa37c92a6bcd5ea49da144585657e382e648e0fd00a15f78646da5abb5060eea3c
22 +DIST fritzconnection-1.6.0.tar.gz 73672 BLAKE2B 25f6b876026bc70397dca171c90d863b4dd3af81f4f3f26bd9a34bed9241c716e98e1305adcbd87a1aa52a21fd6517eda21db0cd9d02d8df5db143ec0f60f5f4 SHA512 c4517774be0913f71e37e982dd87a7076efd81903036193ff37dc2ffd5530829f5f860b773c2b107ca6734ff1b04009243ccb8b2857261911b5a7bcf6e6a528f
23
24 diff --git a/dev-python/fritzconnection/fritzconnection-1.6.0.ebuild b/dev-python/fritzconnection/fritzconnection-1.6.0.ebuild
25 new file mode 100644
26 index 00000000000..00eeb7787fd
27 --- /dev/null
28 +++ b/dev-python/fritzconnection/fritzconnection-1.6.0.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Lib/tool to communicate with AVM FRITZ! devices using TR-064 protocol over UPnP"
39 +HOMEPAGE="https://github.com/kbr/fritzconnection"
40 +LICENSE="MIT"
41 +SLOT="0"
42 +
43 +if [[ "${PV}" == "9999" ]]; then
44 + EGIT_REPO_URI="https://github.com/kbr/fritzconnection"
45 + inherit git-r3
46 +else
47 + SRC_URI="https://github.com/kbr/fritzconnection/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 + KEYWORDS="~amd64 ~x86"
49 +fi
50 +
51 +RDEPEND=">=dev-python/requests-2.22[${PYTHON_USEDEP}]"
52 +BDEPEND="
53 + test? (
54 + dev-python/pytest-mock[${PYTHON_USEDEP}]
55 + )
56 +"
57 +
58 +distutils_enable_tests pytest