dev-python/incomfort-client: add 0.6.4
Closes: #4239 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
7933da9169
commit
41de2e6b41
@ -606,11 +606,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 2377 Ebuilds in total, 2363 of them have in total 2406 (43 different) licenses assigned.
|
||||
There are 2378 Ebuilds in total, 2364 of them have in total 2407 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1356|
|
||||
|MIT|1357|
|
||||
|Apache-2.0|554|
|
||||
|GPL-3|149|
|
||||
|BSD|127|
|
||||
|
@ -1,4 +1,6 @@
|
||||
DIST incomfort-client-0.6.3.gh.tar.gz 16044 BLAKE2B 6e5e399e0db3b3547b61a08a70c1dbc3e40e463094e007c06fab86db00a5533e485d43ccf9ceb2ec897ddf875f7cc4a024b666acb0364b212097d12f23f9f739 SHA512 ab8ebd32e294fb8a49253c4c1d1c884344dcdea1794e9c59b85e32534288f0a1c10b1069ad0d315c6ef3f1012c08c633e273a52776a251b31c9a7d1f2ea7d2e1
|
||||
DIST incomfort-client-0.6.4.gh.tar.gz 16048 BLAKE2B 47ed31af50821a29d96acbe064049663cdbce5a9cff0befb95b6ecb95c798a1c4791e47ba67baa72544b9a561259eadebd6bd2a456542c12809549116799fde1 SHA512 8a66d2a6ea9bcb561b08ac88c99b597d9c86d447af380efe0cc028e976ad43d338ccfd5c68d07772c53f7b88565b1a50025422fc1e3e315a1718266d927baeca
|
||||
EBUILD incomfort-client-0.6.3-r1.ebuild 859 BLAKE2B 4549a6212d86e87a7c6f6a1a18fd82ccd76b7141ffb0670ed2386bf7550394ccb91ad4e60278a492434c264a587413d5ee432d55a69618ef42d20db35ef3abeb SHA512 97400e883fb19bf224f51473b83f3a78b4d61ab154f0f45276264455cd40c42fe9dd9c7b6a456715e65ad4410fdd8deb9045e4f457b21f60005caa59fa55569b
|
||||
EBUILD incomfort-client-0.6.3.ebuild 799 BLAKE2B 59d81e519b4e79ac2ec07b9192bb118513b00ef511de440aaf3c544536898cdd7e8823896000bbd849fdc0de969c38ba82394db16e406ca0c7e18e9d3f83409d SHA512 b204d6c4a0cb901dae2fb9b4ade42e0a8dba16f4f999676e6ddfede505bdecf0dd44e29aaf6031cd23f87156f508cd7989aab4a346afe727ded478490950c0fc
|
||||
EBUILD incomfort-client-0.6.4.ebuild 759 BLAKE2B 4a711460d42f8959d7f59b68e2a9c17935ef5dbc83719a4173dfd7244c01e10ae5a641e6c7dbe6183e848c89b97e92c4ac9b6d118c7f76f7ba09fed3b23f23ee SHA512 38b21a2688b46dea73060a4d13135197ba7ac9486c5648f535eca849a636c3a90cd63467ef4d250af1fb8a5694ffd9dc5de1d4be66605aa0f848ea7ea1f36c88
|
||||
MISC metadata.xml 519 BLAKE2B eee4a4d497b16ed94b5c3f5ff93fcf3cf4cc8b92b27208e677cd471b201685ca9e151b7b8580190f853b1161cf635f277ff23b4867522bfbc9cdea49b071116f SHA512 61f6a6c44bfb40e630db3772d3549b8cccef3407ac3d4b77383821416d12075264e09a48a0a66f5fee10a7210da993886ca5b012c0c3cbbebd144ca4e6914f4d
|
||||
|
26
dev-python/incomfort-client/incomfort-client-0.6.4.ebuild
Normal file
26
dev-python/incomfort-client/incomfort-client-0.6.4.ebuild
Normal file
@ -0,0 +1,26 @@
|
||||
# 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
|
||||
|
||||
DESCRIPTION="A aiohttp-based client for Intergas InComfort/InTouch Lan2RF systems"
|
||||
HOMEPAGE="https://github.com/zxdavb/incomfort-client https://pypi.org/project/incomfort-client/"
|
||||
SRC_URI="https://github.com/zxdavb/${PN}/archive/refs/tags/v${PVR/r/}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${PVR/r/}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/aioresponses-0.7.6[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user