dev-python/total-connect-client: add 2023.12.1

Closes: #3309
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-05-12 23:22:38 +02:00
parent ae4e7c9236
commit 29c096ad12
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 30 additions and 5 deletions

View File

@ -617,11 +617,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
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.
There are 1816 Ebuilds in total, 1805 of them have in total 1824 (42 different) licenses assigned.
There are 1817 Ebuilds in total, 1806 of them have in total 1825 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1041|
|MIT|1042|
|Apache-2.0|397|
|GPL-3|110|
|BSD|106|

View File

@ -1,3 +1,5 @@
DIST total_connect_client-2023.12.1.tar.gz 33654 BLAKE2B 681c957161eb6f89c15939bd66f3ff590783a63e11ded1abbbaf5e6978aa302fb3acbc9b316785ccc769d419e026e6fc0233891beaaeaa87cd38b46e7813774b SHA512 36795c2430962883829fbdd7604c0fc761ab72e7479ad08221c0e26539190db09fa993a615c97fe19fcffadde89c3eba1b231cdaef656af326f8443402fa7501
DIST total_connect_client-2023.2.tar.gz 29933 BLAKE2B 6ce5ae9b933345eb2d279f199c3f805d4f990cea06346ba21a49beed0eb4bf02eb9422cd168d893bcaf70d1e21f99c2f0bfa69faf08da43efbe61f34c34762f7 SHA512 45ab73598c9e690b86cdf4bcf073eecd4fc86faebc4694d8c8f53d6ead3ef901e23cc7ca8681e4de148ea8aad61bb5c20e61cd02a6596d47c0e63e61f4ea0df5
EBUILD total-connect-client-2023.2.ebuild 704 BLAKE2B c621bc6d21f00fa2e53d96fb7c4b3bae5dfd54fe454af4bda2e492c9b207c8eaf55eb09a55689a0c1968f9ebdd0bdc934d647e8ff287506b32701fb82f0ae3d0 SHA512 86353b68b2e24ec01a6b7b76c7582f247383ffcd3eebc40fce459bfeed2e97efdbfe3d52daa550d87c26e4e3ee154841ec3e9b26f769f61cd75b35daad5a2d30
EBUILD total-connect-client-2023.12.1.ebuild 602 BLAKE2B 2a7950a82406c08160283ee701a0b857ff519a206a1b8d3f80072db42a7f3f6b83ef41b2f3c026f8e912bec5eac278a190ec255a52bf3df5e9bdaf44ba8cb1e1 SHA512 d64d5f8f7d7fb225cd711c017f754a17b348c8ba643c940ad26061cb9c808feb5d8c8161144745603ab742892fb01ec45853025104955cee77556d7b948077a4
EBUILD total-connect-client-2023.2.ebuild 704 BLAKE2B 7824743064ec7af064b54410131257f94672e9bf8ce237d871c41d91f242170137523214a856c61e29a69a92c0f70fbb983569d610b9dc3e95e17c1943feea1e SHA512 907e741527a332348ff074083090cb9e21c79c48dd8bb364e0e59556629d3de1d73f68f74df864ff13a1bfd1997811c71d9044e9cb16178e87923767fa3cefe9
MISC metadata.xml 558 BLAKE2B 16a3cb7d95718eeba494cde075841043ed90e6f081d4eb7f2a323db53096047f5f38c5b0e8db8cc0528b7b11628b6328baecd122a7419aa6d121f889b9166b31 SHA512 8b513c38760717b077714972ad3ec0d0375edb00b36696afececc4836c3cf6c569860e2857a6305527c3b28e4f687e52ff92780f5d88df267430e3d6d5b038f7

View File

@ -0,0 +1,23 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Interact with Total Connect 2 alarm systems"
HOMEPAGE="https://github.com/craigjmidwinter/total-connect-client https://pypi.org/project/total-connect-client/"
SRC_URI="$(pypi_sdist_url)"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/zeep-4.1.0[${PYTHON_USEDEP}]"
distutils_enable_tests pytest

View File

@ -1,8 +1,8 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi