dev-python/temperusb: add 1.6.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2022-10-30 17:56:58 +01:00
committed by Andreas Billmeier
parent 164980c91e
commit f248a7c575
3 changed files with 36 additions and 2 deletions

View File

@@ -548,13 +548,13 @@ 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 1499 Ebuilds in total, 1492 of them have in total 1501 (34 different) licenses assigned.
There are 1500 Ebuilds in total, 1493 of them have in total 1502 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|873|
|Apache-2.0|304|
|GPL-3|93|
|GPL-3|94|
|BSD|88|
|LGPL-3|23|
|GPL-2|19|

View File

@@ -1,3 +1,5 @@
DIST temperusb-1.5.3.tar.gz 19983 BLAKE2B 09db940f45f3d75a4d9fc8a0468bbfa1da2e5da5d608d8551dad39927e762d4dc0349bceec020c51aea0ee4a2382cd83648944f7921fe3a7e04d3875b161784a SHA512 99b60956b9923eb342727d500dddc6b14637e57851fa4564a2d8d9df9fd22c85d444d36830cb72d511273d311d782ef4f22a11b91e14620b1a9cb7e0c9de432a
DIST temperusb-1.6.0.tar.gz 34344 BLAKE2B 6dc5d0abe8dcb88eac1b6071d84f76a3644d9d916594631466adb86c88c7989692e85bda3d4272e73be46762e63714d1f4ce6cd1b548392b05671b69d2a7038e SHA512 917179e9b3dfbef519cbf94cf7d8ad8073925cc32f2f8f38a99f39da10db22adbefb9b8605f016efb2449c2648fa7eac258dc0a97010beba5ff4d9ee1e3de59a
EBUILD temperusb-1.5.3.ebuild 711 BLAKE2B a003fbe82458c80979e03d5a4df1bd461247be92965e6bea55cc5c7bce9ae3ca1a2631196972bd455b0d11fdb08e24ba2687390c00d086a3a0ba06fa0879e6a4 SHA512 d0681698a525e562e1e3755117b30ea5e6c076f8de046456d9e293534f43fd5f632f1400691645ad12f3dbb3430d113ef5223ddefd4ecc75bca46a7bc6f370fe
EBUILD temperusb-1.6.0.ebuild 711 BLAKE2B a003fbe82458c80979e03d5a4df1bd461247be92965e6bea55cc5c7bce9ae3ca1a2631196972bd455b0d11fdb08e24ba2687390c00d086a3a0ba06fa0879e6a4 SHA512 d0681698a525e562e1e3755117b30ea5e6c076f8de046456d9e293534f43fd5f632f1400691645ad12f3dbb3430d113ef5223ddefd4ecc75bca46a7bc6f370fe
MISC metadata.xml 468 BLAKE2B c861cebe6b3eb127aa31e63fdd027e15be41d77057a49126135738028dc2ea4a6a9a9a165b797e1b43018d3f045c29cc90573029c2f2b431136d3738eea73eda SHA512 40c5d05fcab7278e718c5ac79e1d549dd681babf9b9ccd6de7f8c459969082ec94cc520bff55ef9eb50f13310cc052289ed13c407676693ed0ec02ab0ea1a427

View File

@@ -0,0 +1,32 @@
# 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="Reads temperature from TEMPerV1 devices (USB 0c45:7401)"
HOMEPAGE="https://github.com/padelt/temper-python https://pypi.org/project/temperusb/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/pyusb[${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