dev-python/pybalboa: add 1.0.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-28 07:29:16 +01:00 committed by Andreas Billmeier
parent 3ec91aa073
commit 9944310c2f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 37 additions and 5 deletions

View File

@ -573,12 +573,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 1738 Ebuilds in total, 1727 of them have in total 1731 (34 different) licenses assigned.
There are 1739 Ebuilds in total, 1728 of them have in total 1732 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1015|
|Apache-2.0|372|
|Apache-2.0|373|
|GPL-3|107|
|BSD|91|
|LGPL-3|23|

View File

@ -1,3 +1,5 @@
DIST pybalboa-0.13.tar.gz 12689 BLAKE2B 79be72ba31050382cdf2ecfc4b649aebf5e6f0c376150062e96355ded0358dc6c571a50a160ff419ae0224b98863e3a17c2514389bafa6f325ee79171fb0d541 SHA512 4793ec6d4071b8479f39b4a568987722d877352e978b5eecd4b13ecca3c151890245928975696699aa070b61e02d81e42a6cb6e2fafd696a530820669e118a47
DIST pybalboa-1.0.0.tar.gz 17464 BLAKE2B 5a2da5eddbf26a53c527da77bb6f332de1cd1044c25b6f5d84d92c44c1bc8709db46ca729429786eaa58ad0318d70f9e8fd533dccc4074b0c0134b2a22d64b87 SHA512 bc9fc1c096032f0eeebd2257b7ad6456a6f018795863911facb3a32ec9cc712260e5cd30e9947a9b87b72cf42087402f0b874162763f91f553a0f615c250f785
EBUILD pybalboa-0.13.ebuild 666 BLAKE2B 36fd3480df3011149dc8a9d084a09a95da1fa2f599d29bdc3cac20a26dcda28b8806b970040a4d2fe3df09f5e62679eec38aabe92528ca1c3570c7a53a3535dc SHA512 2e6687632efd37e35f87e063b0759b65804dd4e4ccb1ee69293f3eb13abe95a6b3ef0daf1a550b978bea10af4a2de54510dc68729f639562fe2b57d6ce9c4c25
MISC metadata.xml 525 BLAKE2B 3e43737653e07b5fb904a7de5db819765e2a33e7727392965e9882324c1d4372a95184665fde2a3b95600a4dbd046effbd2801f0946597f2ff7e51dac6ad8f4a SHA512 39a23a1d5d0aa0ec92ddd803ceecee5b3899b0c40c8b64557086e44ae56c261c24630cbed82b7a2f2db53377ac2301d808ce0c7972c75b5a4f906910a3a5543d
EBUILD pybalboa-1.0.0.ebuild 651 BLAKE2B 0708430ae4aa8794992e1d5082ccb9a054362412eedd36c6d8d6ed0f441edbbf1dff03f57d73cf7a00d927f09aebf4ae66e57aa7636a47dae5daadc3a2982e5e SHA512 4a288e06a41b4768e2105bf77475a80c96ac582d8885cbc565b19a64d6019610b0401deb37edb26e956f1f6e310e201308a27d39f4429df3abc8988496a09b70
MISC metadata.xml 516 BLAKE2B 10696ca0458532f8a1dbe17ce6a8edf7ecd153c67def5b750e804ff2d9f7b1f3173f171fd63384881d922d84e995ee3c713876ee56568c1f8298d7a108747563 SHA512 9a81ca4cb0b0a8afd79098d65a7a59acf8721fb8cfd3e78aaeb62010ab46d70188fafa8e7b07db46f188967d7647b8053ba6439cade1a25070ee3418e4735074

View File

@ -9,8 +9,8 @@
<remote-id type="pypi">pybalboa</remote-id>
<remote-id type="github">garbled1/pybalboa</remote-id>
<maintainer status="unknown">
<email>root@garbled.net</email>
<name>Tim Rightnour, Nathan Spencer</name>
<email>natekspencer@gmail.com</email>
<name>Nathan Spencer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Module to communicate with a Balboa spa wifi adapter"
HOMEPAGE="https://github.com/garbled1/pybalboa https://pypi.org/project/pybalboa/"
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.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest