dev-python/tololib: treeclean
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
d57fee95f8
commit
26172e6cb9
@ -612,11 +612,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 1867 Ebuilds in total, 1856 of them have in total 1875 (40 different) licenses assigned.
|
||||
There are 1865 Ebuilds in total, 1854 of them have in total 1873 (40 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1073|
|
||||
|MIT|1071|
|
||||
|Apache-2.0|408|
|
||||
|GPL-3|120|
|
||||
|BSD|100|
|
||||
|
@ -1,5 +0,0 @@
|
||||
DIST tololib-0.1.0_beta3.tar.gz 19094 BLAKE2B 8cd320026505fcbf8e98d155ef36a748f908efcd28e886380c246a8cc3450193188cefc4f4a368f90c4998dd0b0db560ef80fa2846b7b90993bc75aa5090bf18 SHA512 0eb0d4026dd013463b94772af2c4458206114c7bb884b151651489ef488bc11020b443bd1ce083e075a9ebea469f3b153e04725ba6a593ba0071d24a61e545f0
|
||||
DIST tololib-0.1.0_beta4.tar.gz 19196 BLAKE2B cae3a20f4562a3bea77c8923fccf94f16f4dd8709110ab743b5fdb402e832aab3515a2f3276b82e13c175c40d609e2755c0a2df8a3967dd62c22a31184410ee6 SHA512 70a1ff2e223544589b6ccaceba9dbe236d0ac284312c175a4c7e268a4988ac24f8974215023b5d2548e09e37de587d844c0cee0e10a6cc23bec09fec7be4df69
|
||||
EBUILD tololib-0.1.0_beta3.ebuild 736 BLAKE2B d8509f6ff938593ccec1550399a3d705fb3136869c59e6e6f92489b86224342529b29b9fda9261f995bc23f2cfa5b57de30a568b98c3352242132dc845cd3b61 SHA512 ebc4d3adebf03f7c78f1315c58d9f32a57316a2fb9125bdfc87e814f7e1dff4c4d8cf9378121ae6d65efe593f87603a53532e89e27137a837c2397346d0790ea
|
||||
EBUILD tololib-0.1.0_beta4.ebuild 767 BLAKE2B b296e90c80532e6894552fc738508b08b8602840ab36540ffe2ce1b3cdb6e93c7850049c2beb3213c84e4e74b0855b4284e59487873a4f92bcb270950694bb17 SHA512 e480704111be8f644cb91d715c6db69cb306906b7777e3e8298998dc807b11961a11868c58fb10bbbc7e96f27665188b78f3fee5f7fedd1dfbddc852182c5749
|
||||
MISC metadata.xml 509 BLAKE2B e19f350ce02e50797043ca2f08e48ada185460bbdc24997879ee9198d16042f42ac503cea53b34b0d1e1c8a0125fbfb3371ca9f37f76ed9941dbe2ef05cfd54e SHA512 4ca0262dc9cc226bc286c93cd86dee14d1d054539b8e5e474f1fc38252d047e12d1fe123afdc0f89268bcb366934c095945a5d89ffe916a9a257d27e46314207
|
@ -1,16 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>b@edevau.net</email>
|
||||
<name>Andreas Billmeier</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">tololib</remote-id>
|
||||
<remote-id type="gitlab">MatthiasLohr/tololib</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>mail@mlohr.com</email>
|
||||
<name>Matthias Lohr</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,34 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python Library for Controlling TOLO Sauna/Steam Bath Devices"
|
||||
HOMEPAGE="https://gitlab.com/MatthiasLohr/tololib https://pypi.org/project/tololib/"
|
||||
MY_P="${PN}-${PV/_beta/b}"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
@ -1,34 +0,0 @@
|
||||
# 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=setuptools
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python Library for Controlling TOLO Sauna/Steam Bath Devices"
|
||||
HOMEPAGE="https://gitlab.com/MatthiasLohr/tololib https://pypi.org/project/tololib/"
|
||||
MY_P="${PN}-${PV/_beta/b}"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user