dev-python/insteon-frontend-home-assistant: add 0.5.0
Closes: #3276 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
66434ac032
commit
8191a65e21
@ -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 1799 Ebuilds in total, 1788 of them have in total 1807 (42 different) licenses assigned.
|
||||
There are 1800 Ebuilds in total, 1789 of them have in total 1808 (42 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1027|
|
||||
|MIT|1028|
|
||||
|Apache-2.0|397|
|
||||
|GPL-3|107|
|
||||
|BSD|106|
|
||||
|
@ -1,3 +1,5 @@
|
||||
DIST insteon-frontend-home-assistant-0.4.0.gh.tar.gz 498881 BLAKE2B 362578a89cf9faeac41b101738bb84dbee3a54959562133823ff90f374728bcdf14cc90c15d9e65739f7ee494a4929ed8af00592d0d982856d0e709e33d083c6 SHA512 90a76377d8fcf31f0b7fad5d31a8b4802884a000e50e2babc3d69aaa4f9a58572909cfeb45a6ac7efa29eb5b9c0a27fc4c7cdb677a7dad2be77ee8c2614c84a3
|
||||
EBUILD insteon-frontend-home-assistant-0.4.0.ebuild 609 BLAKE2B a22e6ce6c250f7c4352e469e906e8ace02dd26ff0121fe1c000729988ac3f386f33035a4caea6fd57ee431e6c5090a67db797ae10242183311aaf2134c165faf SHA512 a929f5a5591094b0292c60b0a4198ba9dca07838e9c76690819f6e9a7a1f162daa141e682d52839665c2795c2257e6a8d9f650cd425cf5abe84ad678d0dc70aa
|
||||
DIST insteon-frontend-home-assistant-0.5.0.gh.tar.gz 520354 BLAKE2B 056c462dead93e076855b15bd78bb2c940a5cebbfbaab4a0a7e7c748fc9ca14333f5532853856f480c8a1c84d9cf257bee89a3b783fdacb5b539be31d18785fc SHA512 8509f49eec4d406d993ec2b80f8481c19b72e270350f1f21209e2ecb0fd38551944963bbf8e68b613355610578973dbb4915e2627618a3883c85564e99fcbcee
|
||||
EBUILD insteon-frontend-home-assistant-0.4.0.ebuild 610 BLAKE2B c4ae2b202062387fb90c804182528e6583efdfae007b9b7dabcd28c407db955fe7d37dfdf7193d3a52d27891d3d744cd9884614f3a7d98faad83a3bad737a92a SHA512 c4aa985ff6fd441584c6707e0b98871ade18a7ea772ec4b2884491232b2b794f9e0e0012f8d52edda16ce03892c82367bfae51dc1e4496ba3387dc6d9ff57f91
|
||||
EBUILD insteon-frontend-home-assistant-0.5.0.ebuild 610 BLAKE2B c4ae2b202062387fb90c804182528e6583efdfae007b9b7dabcd28c407db955fe7d37dfdf7193d3a52d27891d3d744cd9884614f3a7d98faad83a3bad737a92a SHA512 c4aa985ff6fd441584c6707e0b98871ade18a7ea772ec4b2884491232b2b794f9e0e0012f8d52edda16ce03892c82367bfae51dc1e4496ba3387dc6d9ff57f91
|
||||
MISC metadata.xml 541 BLAKE2B 31b7e7179fbda4dce124557216ca7a51e94f45db13942e45be9a60227a778794aff1867541866e4c31d85d459c0a16733c66da9a58b6b1631a449ba1eabed5de SHA512 7c0c26f447311b3459a05ce7bab3db7bd895f81b5fead32ac6d937d79d7ee8c0031bf7f53b485c6a994c1be210635c3ebdb6fe680f6a5d4ed83e81db9b88eae7
|
||||
|
@ -1,19 +1,20 @@
|
||||
# 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
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1
|
||||
MY_PN="insteon-panel"
|
||||
SRC_URI="https://github.com/pyinsteon/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="The Insteon frontend for Home Assistant"
|
||||
HOMEPAGE="https://github.com/pyinsteon/insteon-panel https://pypi.org/project/insteon-frontend-home-assistant/"
|
||||
|
||||
MY_PN="insteon-panel"
|
||||
SRC_URI="https://github.com/pyinsteon/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
|
@ -0,0 +1,21 @@
|
||||
# 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
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="The Insteon frontend for Home Assistant"
|
||||
HOMEPAGE="https://github.com/pyinsteon/insteon-panel https://pypi.org/project/insteon-frontend-home-assistant/"
|
||||
|
||||
MY_PN="insteon-panel"
|
||||
SRC_URI="https://github.com/pyinsteon/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
DOCS="README.md"
|
Loading…
x
Reference in New Issue
Block a user