dev-python/usb-devices: add 0.4.5

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-03 15:49:01 +01:00
parent 6bc9817bbc
commit 06688266c0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 38 additions and 5 deletions

View File

@ -612,12 +612,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 1576 Ebuilds in total, 1565 of them have in total 1582 (42 different) licenses assigned.
There are 1578 Ebuilds in total, 1567 of them have in total 1584 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|907|
|Apache-2.0|332|
|MIT|908|
|Apache-2.0|333|
|GPL-3|101|
|BSD|87|
|LGPL-3|22|

View File

@ -1,3 +1,5 @@
DIST usb_devices-0.4.1.tar.gz 5841 BLAKE2B e85d20a3ecbdeb8a713a27edfb641bd1f87665a21432128505f9b46ab8f1170b97e7e7cbe334ffe9941a235c067e411aa0688be14ba259358a91371eec61a130 SHA512 de5e2b7ff433488602ddc5f7452d60489f900cb99f8188a6027e510e284de699215d5909f63c778f56d420dbebb96068b2c83bc021906f3522ee1598d85fa289
DIST usb_devices-0.4.5.tar.gz 5421 BLAKE2B 50434ed6cde11205b869eed50a35c3bbfe8108b296e1f97692b54ba9da487ea837fb68cd40e821abe538528e9ab535695d6888c1078dfaf46c9e0d7a946c802e SHA512 a4beda9fa33e37b14c1f926a65c807cfa686bea8cd2210858e5195e534dc335021bda4b13606d8c93d3c5a93661f4f2bedfd48b6c9c29f1c487eb531552cc723
EBUILD usb-devices-0.4.1.ebuild 660 BLAKE2B fb6d5a5467543bab793beba07e86d0d79f6980d6c3a81419ca02f5b446186c4b6f56d1382f4294211979c96221993596a97bb103d9fac8c62499bf703836096d SHA512 719f43b00e5a3311cd96afb8e66ba814f614ab3246b4ffe59adfab2851d87df7c05f1b0f3995d1d02367de6c7ba3383ec2f0eefc9a0dd38927a6a34ec1afd28a
MISC metadata.xml 524 BLAKE2B 67fa6d8b50818dcecde9343010c25809b07727bce76114c52fa4f4d31416e7dfdcd4a972298b1e542e198f7e3045a206084fd91b8aa75456aab2379f41fb341c SHA512 42f2ff239dcc480ab8a93ce6d92819f0ac2c4fce42d82a823b257ee8b551d87cab3421737d4d04cb6b23ff3911d76ffdb30ed02a386a43a1458a416fb0d3a9c1
EBUILD usb-devices-0.4.5.ebuild 660 BLAKE2B fb6d5a5467543bab793beba07e86d0d79f6980d6c3a81419ca02f5b446186c4b6f56d1382f4294211979c96221993596a97bb103d9fac8c62499bf703836096d SHA512 719f43b00e5a3311cd96afb8e66ba814f614ab3246b4ffe59adfab2851d87df7c05f1b0f3995d1d02367de6c7ba3383ec2f0eefc9a0dd38927a6a34ec1afd28a
MISC metadata.xml 524 BLAKE2B e547b0abb5f02916ba78c5b7b9e0eb42661b540e82e8036123ee8259170e914d044bae19b26a338cab4a7af764f4505053292139277f864cb0d49f743b043978 SHA512 1fe20befea1d6adfd9059ffc3e3ffc00427b962be579de1dceaf27e704f924210d24c695b2e10c839add34014dce38d0682874bf16b8805745af15eac30ceba8

View File

@ -7,7 +7,7 @@
</maintainer>
<upstream>
<remote-id type="pypi">usb-devices</remote-id>
<remote-id type="github">Bluetooth-Devices/usb-devices</remote-id>
<remote-id type="github">bluetooth-devices/usb-devices</remote-id>
<maintainer status="unknown">
<email>nick@koston.org</email>
<name>J. Nick Koston</name>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Tools for mapping, describing, and resetting USB devices"
HOMEPAGE="https://github.com/bluetooth-devices/usb-devices https://pypi.org/project/usb-devices/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest