bump pyisy-3.0.5

This commit is contained in:
Andreas Billmeier 2022-03-16 07:22:00 +01:00 committed by Andreas Billmeier
parent 5d0c74ca3b
commit 1fd7fbef07
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 43 additions and 2 deletions

View File

@ -492,12 +492,12 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## 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 1847 Ebuilds in total, 1839 of them have in total 1849 (34 different) licenses assigned.
There are 1848 Ebuilds in total, 1840 of them have in total 1850 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1101|
|Apache-2.0|358|
|Apache-2.0|359|
|BSD|108|
|GPL-3|108|
|LGPL-3|28|

View File

@ -1,5 +1,7 @@
DIST pyisy-3.0.0.tar.gz 49549 BLAKE2B 209393d02c036275248f21f10f8959f1776773f799b5ad7847bb0586b02bf4fa3e05658532586990cce44536853db46150f1e113f51fc840214593d28c469ef4 SHA512 6820684a050a829c93d98304d3e835437470d589d878eaa03943577ad9d5d58a920c5d34cfb277d53c8d12591277d223d339be97547f9ef1bfad9ecd49130e17
DIST pyisy-3.0.1.tar.gz 49432 BLAKE2B d455ce1b6b1f80440b1cb4d88ad55dacdfe49a2695e5c3a06f42a4c5a0232736335b4a89343c78ded98a0776cc2ce9f11b4411893d05cc518668a693b1d58fe1 SHA512 ca959b81f3472770b143a57125cd65dc04f723da10b8c3f3f00b77f83db3643eeba4df622ac9cf1358f31bb4c91fd01a4cdd13de08b9ac2f5e47edc92396875f
DIST pyisy-3.0.5.tar.gz 49518 BLAKE2B 1150f6e68f3187f057c97989e9c386956a019734f9615548a2aaa492faacff6e84ea401869f3d71bf01183f89f23b7ef00e2dbee1d2c4f1d30e0e1f5b2e4f00b SHA512 cea47bd0a81e185777dd71a0e0a5cc2eaa5f564b45d9d818890acc2d4a52d96272ae4b5148d471c5d794efc27ba12f97b5a51b1147d8fa0701bdcf52d34702bb
EBUILD pyisy-3.0.0.ebuild 932 BLAKE2B f3ec23550af3e0627169d5ee0e387a2bbd1ee36a50c59d5931a8e511729a2e8fb976e093d31e455864a4a3a9c8127dd9e07dee3665b8e7755d225f4e57f27586 SHA512 10e615ec3574b412f99d2e26d12f42fb596edd92ebc60f8ca8855dd18c8469dd25f7226d5506b2b570fe6b181cb74bdfde84806000607fbe23845daede09e5ec
EBUILD pyisy-3.0.1.ebuild 930 BLAKE2B 5375cb4824ffb5a97ddef264c8d1939c325028182a31091d5453b926bf34184e0b0ebc2617c9470fdfa015c9fe597b81d3999c7a311d17ca1e6a352fd0b69bf2 SHA512 78a8ef1ef1baacaf2d462eb6e50766398393bd6b071e971811735f4c1892d190d82819ae00cbd0b3b8fd54b5a96f575587028d47eab52b9b4fc7a0d866f28981
EBUILD pyisy-3.0.5.ebuild 926 BLAKE2B c73afc6a4f11ab8bce1feebb60b2cc9fbcaba6df59bd218ec879a2392c61d5d6e8ce19dac3ea3dd107e527600f0c5d9b2d73dca1296f51f650016ba1abd90835 SHA512 7111396e57b34effb9a9a95aba69dfb3671545e24bf1be4ef9e3cc17b4e233ac09b45799da8010e635e168a3a61aa945b30a1b6985b4bff504528b847a1c1d5c
MISC metadata.xml 447 BLAKE2B b0845c5d3d3df0124b3eb781caf9181e47c14bddb9c890f387d662ca8556fc658c7bfa70ce5f69233edae9579c7c1a805cb702b183d81ac660773a6567def57e SHA512 7154abd8055f817665f5acbcf78625912b01bb3ce9f92dd64e9358ce8c1bff2e18530a0e902e86a068008f652f30bf80cd4a52801b4524890f7151fbec33e632

View File

@ -0,0 +1,39 @@
# 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="Python module to talk to ISY994 from UDI."
HOMEPAGE="https://github.com/automicus/PyISY https://pypi.org/project/pyisy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/python-dateutil[${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
}
src_prepare() {
sed 's/setup_requires=\["setuptools-git-version"\]/setup_requires=\[\]/g' -i setup.py || die
eapply_user
}