dev-python/envirophat: remove olds, cleanup, enable pytest

This commit is contained in:
2022-10-16 08:04:28 +02:00
committed by Andreas Billmeier
parent f796616e22
commit 49aa85d77b
4 changed files with 7 additions and 40 deletions

View File

@@ -538,11 +538,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 1643 Ebuilds in total, 1636 of them have in total 1648 (35 different) licenses assigned.
There are 1642 Ebuilds in total, 1635 of them have in total 1647 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|975|
|MIT|974|
|Apache-2.0|321|
|GPL-3|99|
|BSD|94|

View File

@@ -1,5 +1,3 @@
DIST envirophat-0.0.6.tar.gz 8433 BLAKE2B 7f9d3fa0fb1fab81eb09f54d108ee3f158e8b6325ea6a65ea0d60486933de2cc0aad74df7f1378e7945ef4ac5581d15e3b01b31c162a43f15ca70f66ccc68e77 SHA512 d86cb60d5dec944f7967d1bbfb0f284fa5f2b4c9df979b8195f227146d00b6fb56c2af4801de8519f5226473191d53c938363f0e15c4b841a603a30ee368e8c5
DIST envirophat-1.0.1.tar.gz 11202 BLAKE2B e049e800802e14255b0bc39149e0ffddf8ccb51eaaa9bb981b8ca20b9448ee9943302b7fd3130b6231aa324120e18be026b979863b99a2f49e9282e07bc1a541 SHA512 75dd737dbdb75e7a0e758e35eea663bc4a918f31d7a146df9e46e0633b0157810ba106bd4d18f571ba42e5009f0b7c2acf1296c1af9f7cd24242ac158e027fe7
EBUILD envirophat-0.0.6.ebuild 696 BLAKE2B 910bcd0f07111654977a430c1e3828bebf3d0727f42295e4b95f3e25b3717ff79e7a9c924c766d6d9c9d086147f416761ecc5c21e4dfbd17faf96cfee55fec98 SHA512 8f18cfc29db8912333f1a6ba2ba29fc89133f9ae6a40413065887d5b00d38fa655598bf4fbeea5b17edbe4af7bbe2ce17b2a8461f6eaa5768048fc2bee833691
EBUILD envirophat-1.0.1.ebuild 696 BLAKE2B 910bcd0f07111654977a430c1e3828bebf3d0727f42295e4b95f3e25b3717ff79e7a9c924c766d6d9c9d086147f416761ecc5c21e4dfbd17faf96cfee55fec98 SHA512 8f18cfc29db8912333f1a6ba2ba29fc89133f9ae6a40413065887d5b00d38fa655598bf4fbeea5b17edbe4af7bbe2ce17b2a8461f6eaa5768048fc2bee833691
EBUILD envirophat-0.0.6.ebuild 667 BLAKE2B c9baf36fd04a58ee338fcb70e79d836acc7e2b3619d4da1d0a45a8ebeb38b8a0bd875539c2566a69f073e8f4a97ce1a4ba96e54bee7d18d390541810199be1d5 SHA512 2ac867aec7b9dc43a71f4eb7e7b60e8a871dcfb57ae4e9dc70f8a9550bbd0451d04ddc75c944734c960a228f59dee9a41cb32082da9e0cdcfd429ad4a8a08c7a
MISC metadata.xml 453 BLAKE2B 8bf5cc12bb44c0dfe80bca8eade7ae2cb856af697a8fd4f3039fb4d22f333cc1fd2bbefbb07877f008c736135fe3e907c6d376bf5e2c2292bd19a9ffd349d27a SHA512 908d74ce8cadbba28fa94f94760a3237eadbc9baff91e412dc01515ce54546d8b7a3e8109d3e2634b8e6c08b0624a1479b87b57ea0518e57efda9fd99c317ac4

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..9} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
DESCRIPTION="Enviro pHAT environmental sensor board driver"
HOMEPAGE="https://www.pimoroni.com https://pypi.org/project/envirophat/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=""
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
}