bump velbus-aio-2022.10.2

This commit is contained in:
Andreas Billmeier 2022-10-06 08:44:40 +02:00 committed by Andreas Billmeier
parent 8d4c6e0c5f
commit 257c2433e8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 2 deletions

View File

@ -538,11 +538,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 1923 Ebuilds in total, 1916 of them have in total 1928 (35 different) licenses assigned.
There are 1924 Ebuilds in total, 1917 of them have in total 1929 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1157|
|MIT|1158|
|Apache-2.0|363|
|GPL-3|121|
|BSD|106|

View File

@ -1,5 +1,7 @@
DIST velbus-aio-2022.10.2.tar.gz 81474 BLAKE2B db7eeb1d9b39c619c0b92eadd913e09d793e40ff7a10385e9ed9b78555cf6994185e07e54691ef0ed8eb5c7ef42caef40742cc93c0f4dd03c449795bee273731 SHA512 3e5585b14bb2101386cb69b5f69492c011e10afb92ec21b65f8848d6be10199cdeeccfe797998a4e3ce4d93571767ed1b9d14ba0265ce90c1642b887ee67bc50
DIST velbus-aio-2022.6.2.tar.gz 81190 BLAKE2B 755bb1f6ed1b5badcebd3d98a5c802e29f388fc2996cbbf921fee277b1e51696fe5fc1d93cc6e896451938934f4e740892725fd10b6de92df1515087b09e0ca9 SHA512 f1ed330c0a3e5626dab3b22f26bdf6b4df267557dab244e7fc526c7c9b60d89b037c0986a2ab4cf60745b249836efea4352c542826f0c47149e05c0391d3cc07
DIST velbus-aio-2022.9.1.tar.gz 81240 BLAKE2B 730178112f750133e3ba04fe17b15a75f363656b1858fb8faf76b9a19b90b33c9c1b52bf2a6f4cc04d3901b7bce82d0b20dc075de59162a4bb5d10fadbad337f SHA512 8550f337ed99afc4b793f48deda3fc23e073b12525c599f6ac798d1b2b92cacb4b02627e42265d5ec28a96c74fa64421926467a12f864aa6b0425b19ce7bf360
EBUILD velbus-aio-2022.10.2.ebuild 839 BLAKE2B 3d9e0b78c9f1ddf794cf0bac4d014ebfd554a36a7c0367458bf36a3134cf4e299716019367a88707f64bf3b9b32bdbb3c7bacf43eff267850389f0a6b6056f77 SHA512 0170056647f4bfc45f58ddec17caf0b6aa2a586311b2b314baa902eca635d76ff455a0b14b8b3d3d0235c3723b2343b7545c843ff12ef6985b8b636c74c66b56
EBUILD velbus-aio-2022.6.2.ebuild 839 BLAKE2B 3d9e0b78c9f1ddf794cf0bac4d014ebfd554a36a7c0367458bf36a3134cf4e299716019367a88707f64bf3b9b32bdbb3c7bacf43eff267850389f0a6b6056f77 SHA512 0170056647f4bfc45f58ddec17caf0b6aa2a586311b2b314baa902eca635d76ff455a0b14b8b3d3d0235c3723b2343b7545c843ff12ef6985b8b636c74c66b56
EBUILD velbus-aio-2022.9.1.ebuild 839 BLAKE2B 3d9e0b78c9f1ddf794cf0bac4d014ebfd554a36a7c0367458bf36a3134cf4e299716019367a88707f64bf3b9b32bdbb3c7bacf43eff267850389f0a6b6056f77 SHA512 0170056647f4bfc45f58ddec17caf0b6aa2a586311b2b314baa902eca635d76ff455a0b14b8b3d3d0235c3723b2343b7545c843ff12ef6985b8b636c74c66b56
MISC metadata.xml 457 BLAKE2B 99ce364b8aa6641a83c716c3a1bcfa904f3ce2aa0cae0cbee42678c8c291bae42c32f66c9ad289b415b4f0fc3029e490321d232b9de7684aad4ce38d0b84366a SHA512 00158cdcf8b8c3f596fba42d981f168fab091429b3913adb4bd18a010d1956b84b20d980edf2796be9ccf796ff03421c86796c03b14749c047e52cc0305a0415

View File

@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Python Library for the Velbus protocol based on asyncio"
HOMEPAGE="https://github.com/Cereal2nd/velbus-aio https://pypi.org/project/velbus-aio/"
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=">=dev-python/pyserial-asyncio-0.5[${PYTHON_USEDEP}]
>=dev-python/backoff-1.10.0[${PYTHON_USEDEP}]"
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