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

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-01 21:19:51 +01:00 committed by Andreas Billmeier
parent 6da53a3d53
commit a00104962d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 2 deletions

View File

@ -573,11 +573,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 1776 Ebuilds in total, 1765 of them have in total 1769 (34 different) licenses assigned.
There are 1777 Ebuilds in total, 1766 of them have in total 1770 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1035|
|MIT|1036|
|Apache-2.0|385|
|GPL-3|109|
|BSD|93|

View File

@ -1,5 +1,7 @@
DIST total-connect-client-2022.10.tar.gz 16809 BLAKE2B 885fa81ce4f238e8533636774f9a8e3f56976e7ae32408ccf77f2920a999b21e7d34c27b7b3288096e58ea977ed955a6f2897b220de859a1b9790d7818201ffa SHA512 142493e5c015f29494aaf68fe50518f222f39d39dee0d4c6ca6f584ab6454cb0ce123a528c7d90b57b4d0607938240ba4573a3e0ff9b02f82f180db9db0ef71c
DIST total-connect-client-2023.1.tar.gz 21200 BLAKE2B 066f9f4272ef261310968df078e79310f642bbb3ce1f4960b5c00f78ab6686b17045c852d89dfb48897c8d5bdb4c932e06e1f226e9b95b59a3e5ed4a8d6ec0b8 SHA512 3fd4a2b3f9cefdb93f47d07f05e41294c82b778b012da2b98dc805288b36b0782b74e64d15d37ed6dfeb4986eaded3995314f73a150f40cf3c361061b34e6787
DIST total_connect_client-2023.2.tar.gz 29933 BLAKE2B 6ce5ae9b933345eb2d279f199c3f805d4f990cea06346ba21a49beed0eb4bf02eb9422cd168d893bcaf70d1e21f99c2f0bfa69faf08da43efbe61f34c34762f7 SHA512 45ab73598c9e690b86cdf4bcf073eecd4fc86faebc4694d8c8f53d6ead3ef901e23cc7ca8681e4de148ea8aad61bb5c20e61cd02a6596d47c0e63e61f4ea0df5
EBUILD total-connect-client-2022.10.ebuild 804 BLAKE2B 553622fbb2ff30eb86c97445d606f94cf8552e6f3fb874471ef3f8cf6a2e13130020af327c4c3b38064c12ea6298b586ea8337ba77cf4a0d7990cff314848992 SHA512 c8e5fe594bfc40cce72a8fe16117d3f1c23ea53892aaf140aa760a0ac9a822973f8607e92bf35ea8bac0116cee60768a2f8c32d0ca13107af8d73dc987672b3d
EBUILD total-connect-client-2023.1.ebuild 835 BLAKE2B ed1b268d7d1cf0b108b37bbde6605447470f89de731654fc4e6d84933c1432fad21a35163e7afd1cf93e11681fd4518d7e4acf2036622a75bb1c947ed2c35869 SHA512 27025fe060cb0e1e5a8d3133dc3637d0acc392efbea5651b460eb11e221f911993394034ec8035d140dfb155cdf973563ff9a52c80ff2e22cdef3166489ccb7e
EBUILD total-connect-client-2023.2.ebuild 704 BLAKE2B c3a215faf8f9cdd8b47abaf11f8a92fa54ac68fd5cf69ab6137b0ee5771995fb93562b452e59a3724edb358d1de93a9c38ce3d7c2224eef719f15d6a6c58a6e9 SHA512 b78ddf225d4ee4a97fbd9767d8dc40a4b3f33f3f216d15ec2572558e337fe5b074efbf715c00db550e40de26addae17f827fed76e27f6a66d4b9c265b343a84d
MISC metadata.xml 558 BLAKE2B 16a3cb7d95718eeba494cde075841043ed90e6f081d4eb7f2a323db53096047f5f38c5b0e8db8cc0528b7b11628b6328baecd122a7419aa6d121f889b9166b31 SHA512 8b513c38760717b077714972ad3ec0d0375edb00b36696afececc4836c3cf6c569860e2857a6305527c3b28e4f687e52ff92780f5d88df267430e3d6d5b038f7

View File

@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
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}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest