Skip to content

Commit 203aa3f

Browse files
committed
dev-python/pyfritzhome: add 0.6.10
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/2785 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent a5d3a0c commit 203aa3f

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,11 +617,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
617617

618618
## Licenses
619619
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
620-
There are 1787 Ebuilds in total, 1776 of them have in total 1795 (42 different) licenses assigned.
620+
There are 1788 Ebuilds in total, 1777 of them have in total 1796 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1016|
624+
|MIT|1017|
625625
|Apache-2.0|398|
626626
|GPL-3|118|
627627
|BSD|101|

dev-python/pyfritzhome/Manifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
DIST pyfritzhome-0.6.10.tar.gz 22264 BLAKE2B a553b85dfedf50e564a16ebb01d6b65eb7b9f95c923126001150e8a8ac906742332042c88ec5a9eaa08ddeeda98987a14d1125c8c1c9c34b3520d0f0f29abe22 SHA512 13616a6ee23d75b90d6b40ef7b7749cd7a0686a683fbafacceb6ee7dffc4c450d2155dec39cbac85ccec9a5359a4a7c9b0f844a6fd0d70698165dfd510db88ef
12
DIST pyfritzhome-0.6.9.tar.gz 19923 BLAKE2B 334f22cba95e0c33a7d6597ee4f2e2915647bd783dd5b43914136fc942a95ae571ec82dd34264800b16ad12921d616aca2926196dbb6ad8fa551ab41fe361bcf SHA512 aa2ac187f4f98e3a47c17b2e9bf2c0296bbd0033030445b1294feedb959ae2d2613fbbfaa6419c95304d569f92b4f294d1c871b18fc1e5271d77a10fd70f429e
2-
EBUILD pyfritzhome-0.6.9.ebuild 644 BLAKE2B 35074358ad92edbeeed14975877556596fb7b45b2e86ca362f1fc56e980c24f71363ffc989012eb3f1add2e31bbfa3c0ca1e3b5924fa72f770328c24c1f828dd SHA512 938eb1573964664ccc7ab84939ff1a40a7c0fd65300f486bd5fbae3caf4bd33dd64f22401b45dfb577cdebcda9f362c970440e72b4a58c194db241f6f3527e4e
3+
EBUILD pyfritzhome-0.6.10.ebuild 585 BLAKE2B 9d1df07a6088a99823d99b294b14c0a68d1a98d547ad2ba05be9462d12209bfca590e3e17b1a6c6bd93041547dbfa5676bf4983bdf14d56c380d9c0fad2ec502 SHA512 ccf932b477ff1618cc23946d6fc2cbe1c5a784917c897a09b34cc0587886f437575fcce0536e9f71a7e55e8c16b2436ea58549d7c428fdc6e2c0e5bf0de7dcc9
4+
EBUILD pyfritzhome-0.6.9.ebuild 644 BLAKE2B 7cd34ca55fdce097c7589c01f40a11c51119c1e46ad2c6a999a363df3fee38b118cc23c969dbc8ddbe0efeb3fa51add8553c6befc23fbb8e0506ee8d265fe427 SHA512 b32c63882bb5b2e701b8fd5efb68c729fc2468499aac855b39987d056f2eb4bca16445938b2b22420bac02b2a22e93d3704ad1d5dbf5b8c3ccce79d249430ebb
35
MISC metadata.xml 524 BLAKE2B 5696c822cfc4459614979cd6ecffd15226f9bc9a6e80c0d9b1f963f7b93965c76651b25aa4c9858a2e77ae31b519a39e878418a0518d8999b7eed262e4bbc299 SHA512 1ba9d75c02d765f67018413e72522c7161ec76b4ac890f705f042e721e7b81893d4dc84b72b396fa3079ec8885a9897ce3b43d39a71614140cfb3819595ec95b
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{10..12} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Fritz!Box Smarthome Python Library"
11+
HOMEPAGE="https://github.com/hthiery/python-fritzhome https://pypi.org/project/pyfritzhome/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.rst"
20+
21+
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
22+
dev-python/cryptography[${PYTHON_USEDEP}]"
23+
24+
distutils_enable_tests pytest

dev-python/pyfritzhome/pyfritzhome-0.6.9.ebuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 1999-2023 Gentoo Authors
1+
# Copyright 1999-2024 Gentoo Authors
22
# Distributed under the terms of the GNU General Public License v2
33

44
EAPI=8

0 commit comments

Comments
 (0)