bump insteon-frontend-home-assistant-0.1.1

This commit is contained in:
Andreas Billmeier 2022-06-22 19:35:31 +02:00 committed by Andreas Billmeier
parent ad18805dd0
commit 67afa65e25
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 41 additions and 4 deletions

View File

@ -524,11 +524,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 1769 Ebuilds in total, 1762 of them have in total 1768 (35 different) licenses assigned.
There are 1770 Ebuilds in total, 1763 of them have in total 1769 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1080|
|MIT|1081|
|Apache-2.0|316|
|GPL-3|108|
|BSD|99|

View File

@ -1,3 +1,5 @@
DIST insteon-frontend-home-assistant-0.1.0.tar.gz 647795 BLAKE2B a26fdf8a18f583abd4b2098d99942e7a22063cc819b2f332eb8d7b21738723ec89ad7ec9aeda228ea8eef1f25d57c10bb898528c9c9f43eb5a7e4ff643f8c164 SHA512 355aa0bbf5aea18dc03fd22ed960a07eed7610556e5d18e29b26685fc9e46e7fc87de1d2db6360180e379a75ac071a79c3122ab08920ecc8ad971b42e054b387
EBUILD insteon-frontend-home-assistant-0.1.0.ebuild 746 BLAKE2B 2f1edd4a9e2eac6a89141a9da07ea7f0fa7e0adcc4b160e1b771c867f076dc9a2df3d5becf7fdad49160c9550059215ff4bbbd5b0e84ece120780769dda72e89 SHA512 7ce515cd26719c1ebf8e72601766329fd4c5906a4fb3477f0e33ba1a9c5b7233ab0622c3ab34001664705e3fff27d9ad4f3fd7f3805ed1c91f9fcbfa0a6bbc74
DIST insteon-frontend-home-assistant-0.1.1.tar.gz 647851 BLAKE2B d63f70a2e713203161146e0ecdbc32177874e495427b54de4bde9771e92e12cf0dceac6d58334b1eaef47df7e17c67f58d83b7ab92d207e16e724b694c4b8ce7 SHA512 d21a73df244aea20308251cc9dbf49e23a9c714bbddc81c83bd5daa2abbeb39d1fe59f505dd4f73377fa25a0e6e3ee58e85ebd2cab7f30cbff77c68fb02072cd
EBUILD insteon-frontend-home-assistant-0.1.0.ebuild 718 BLAKE2B 7b0d8651185447618064bb2b861fba4ea4af63e4629502965bd6c541bdf12f7b883d91b92d51e028a961b4f1616186a820cdba9abb8f9cb9c90e628c15d5d390 SHA512 5a22818d9e706ac6c6b6a531ee81550b932363bbb63e3d1f14c13e7a97e932f472bf78b3c01fb15ccf597963d9c328286c11ff2ce99af0d5623da420a44daf6f
EBUILD insteon-frontend-home-assistant-0.1.1.ebuild 749 BLAKE2B 3372af99a5685b0c42ada566648a8abbe211d9e581be1218b080056359d69fbf0151e40cf0420bd299106541c6033344c4e30820fbc9cec08884ef77e2433bcf SHA512 68d0be727ce95f0c373caa6f58d1a6d4f64ac929731007d73a33f79a53e20fa146f99528b2c2a7f917894cd21c026d9b507ca1cd83d2a494f75cc132a66a6e77
MISC metadata.xml 476 BLAKE2B ed68d1cd00d7f60dab2255a16371bb1ec5f859d42d5948c76f35272e4b9b7565f30e695ff8c16ebe7596c2f2e6baf19c684aac4ef211c381e5a34760c4c385d8 SHA512 c05d86dd2dc03027574d99b411a119958019febcde0eea48a8c1c50e7ef9896addaf30f85d00ec75e5676e9957df2bf8997a5b27cbad47b48bd131319e5e4d74

View File

@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="The Insteon frontend for Home Assistant"
HOMEPAGE="https://github.com/teharris1/insteon-panel https://pypi.org/project/insteon-frontend-home-assistant/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest