bump pyprusalink-1.1.0

This commit is contained in:
Andreas Billmeier 2022-10-06 07:37:43 +02:00 committed by Andreas Billmeier
parent e07f688bd3
commit 269ac0ec77
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 42 additions and 4 deletions

View File

@ -538,12 +538,12 @@ 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 1921 Ebuilds in total, 1914 of them have in total 1926 (35 different) licenses assigned.
There are 1922 Ebuilds in total, 1915 of them have in total 1927 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1156|
|Apache-2.0|363|
|Apache-2.0|364|
|GPL-3|121|
|BSD|106|
|LGPL-3|30|

View File

@ -1,3 +1,5 @@
DIST pyprusalink-1.0.1.tar.gz 6697 BLAKE2B aaf3238b277459867119e0942cc68f2c51386e05c869dfecbf8c990d46407da474286981950b01e36983495552b901cd2d31aa5522bdc77178f2a2b9c458ab2d SHA512 7d9edaf9b624a3b87d9c4e108f46d1c06f0eff2b3df80cd1d90e290fd56c98516a740f806f64fd8fdfd6daa7a633eb583be9cc8e9fd8434680359a5bae830f92
DIST pyprusalink-1.1.0.tar.gz 6851 BLAKE2B 828037575450ff7a76c22497efd3090b2ee8de68d377a58392c050b942b506db7486c8bc5d41e6fa79847fbad1341ae6d6aa692959dfc45695595175b95821da SHA512 ad71c2b57dabcb25abc70c602d1c1cd03560ff268a4aa1d838775792392789467eefdbdcd902635a8ffa034ccebeaa5c138f0a34313d93ef7644514ccfe9502d
EBUILD pyprusalink-1.0.1.ebuild 819 BLAKE2B 392f27ba20e27d940ecc4d959cd515885b0b726badb90d51bf9db5b9fda72726f828187c95a53bf0d7d53f77a1523ae18ae7fd78d81e723a87ae15a9c10ad71e SHA512 7314d412c8e7c6a5dc760eb6fcf92b4afb7d7bcea2f6e110c7af3b6873970cf88839f8e5978e69ff0bd05a2960d13a5401cffb4a02c4ce41bf79885ca915498b
MISC metadata.xml 473 BLAKE2B 7c7306bb212817cc1c0143c553ea4f31b35624983992c407e73e3198ff192662bd3f9c2f28c53f36353754026293aa200ea709418fee9a353d4c6dc6a0e32e94 SHA512 cb3e8a4b2974cfd9393d5029c0657161e358e00d6fe465fef0ec20dec932075f48a7696d5f6f6b66eb5bd6ff74b8a1e8c9f1cfc24c5961c25b2250a19ff137ef
EBUILD pyprusalink-1.1.0.ebuild 810 BLAKE2B 06515fe025c245820803a94601cedcb2fc7074d32bd7fa77eedc5a21435ee4f707b460033367b0d0b3530a699a100882e6bbc02ef4ea7be1c41e0d8a1209c30d SHA512 9602f73bfa3086954294c22a51ad5bb9a5b23cc796838b477da82d2952d021ad9045ea9fae1b3392d80ee07a8c7f26fb226ff94bf2f5dd32645211d2049a021e
MISC metadata.xml 473 BLAKE2B 92b2a4d11066adf22106b8405444d73c2021a5d61e173edc5e8a9146c4c72cc0936db7c552eda88da2e7d24222b7e990ed4ee228240ff40994c3dcbc9da41f3f SHA512 e3404d615a0cd3ea45ce0dd74569c3598d17e0842975f5eeb6a4091f46264dc4b87ceb7b2bb535fbf27c2d2158aee035b36f417e6192220b95e87a499d995e3c

View File

@ -8,8 +8,8 @@
<upstream>
<remote-id type="pypi">pyprusalink</remote-id>
<maintainer status="unknown">
<email>hello@home-assistant.io</email>
<name>The Home Assistant Authors</name>
<email>hello@home-assistant.io</email>
</maintainer>
</upstream>
</pkgmetadata>

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} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Library to interact with PrusaLink v2"
HOMEPAGE="https://github.com/home-assistant-libs/pyprusalink https://pypi.org/project/pyprusalink/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${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