dev-python/pyEight: add 0.3.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 15:12:14 +01:00 committed by Andreas Billmeier
parent ccde4b639a
commit c3cc1fe870
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 2 deletions

View File

@ -548,11 +548,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 1456 Ebuilds in total, 1449 of them have in total 1458 (34 different) licenses assigned.
There are 1457 Ebuilds in total, 1450 of them have in total 1459 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|848|
|MIT|849|
|Apache-2.0|293|
|GPL-3|92|
|BSD|86|

View File

@ -1,3 +1,5 @@
DIST pyEight-0.3.0.tar.gz 8943 BLAKE2B 45ba56e8da9c0b4012d0c1785700910f23fffebbf950ca18f27d4c9359e572dd2ba070cc3291c59d3f45892a5387fb06d44ea0826c56026822013a11952201ca SHA512 c21fce900a4cd57d8e649f28d7a832fe6520c3e53ed98c2b5f62395b0c7db47e2f364b437e448c5c77ce9140417b3ef1e6cec7dfb709bd66854c8aead181b12b
DIST pyEight-0.3.2.tar.gz 9047 BLAKE2B c5da044f360bbd6ae04d67e90ed6c1fdfbe5188aa056c440c5b3f74ecd549d4ae980bfe1b8d9fd2e43c780c4af2417929eb4392ec323dab62bdad2eb5e62f6e2 SHA512 de8c6ab1449f2ccf3f47cf3259afcc8861005afea44c47e0f8d77791992e157f8b367793fe4c6f4b2be867759a03c006f795bfe1e4ff40ac1ab555b86041c286
EBUILD pyEight-0.3.0.ebuild 719 BLAKE2B 3ce69be6c37829a620080b17cd3bf27c6a1f063075e56d0ee7b26afbc8fffd3c939075d4d3437784da8a84f4a6f08433a8be8ac52c7b3467a342d6647481f642 SHA512 9402f065de2338d7a7fc3a102951c8067bee472c9a23c4b2e151aad0209b9f950ac3609cec46658aaddc04f2e6bd681d2285ca8ed3c5e17295cba9dc923fef3d
EBUILD pyEight-0.3.2.ebuild 719 BLAKE2B 3ce69be6c37829a620080b17cd3bf27c6a1f063075e56d0ee7b26afbc8fffd3c939075d4d3437784da8a84f4a6f08433a8be8ac52c7b3467a342d6647481f642 SHA512 9402f065de2338d7a7fc3a102951c8067bee472c9a23c4b2e151aad0209b9f950ac3609cec46658aaddc04f2e6bd681d2285ca8ed3c5e17295cba9dc923fef3d
MISC metadata.xml 463 BLAKE2B 32be602513d45ba18b07a5028cf9e5cad0426e410c7394c79312e9cc9d9ea1c9789cf4a4c6807f4064b81ab1bd4609c2e566f1d997bd10eebe354782cce40122 SHA512 bab80e438582dd524d1d88631d1f8f74785f33f05f25309bd9c4fbbaa83b8ad9991126812a78b8991b796d5bc9d11593664727ae3417cf94bfc6be7919777b3b

View File

@ -0,0 +1,33 @@
# 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="Provides a python api to interact with an Eight Sleep mattress cover."
HOMEPAGE="https://github.com/mezz64/pyEight https://pypi.org/project/pyEight/"
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/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest