Skip to content

Commit e445e2a

Browse files
committed
dev-python/uart-devices: new package, add 0.1.0
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent f356e97 commit e445e2a

File tree

4 files changed

+48
-3
lines changed

4 files changed

+48
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -617,12 +617,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
617617

618618
## Licenses
619619
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.
620-
There are 1820 Ebuilds in total, 1809 of them have in total 1828 (42 different) licenses assigned.
620+
There are 1822 Ebuilds in total, 1811 of them have in total 1830 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1042|
625-
|Apache-2.0|400|
624+
|MIT|1043|
625+
|Apache-2.0|401|
626626
|GPL-3|110|
627627
|BSD|106|
628628
|LGPL-3|25|

dev-python/uart-devices/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST uart_devices-0.1.0.tar.gz 5307 BLAKE2B c7a7fde23c358f8ef0a1e7e9b739194fef7a5449e58dd7011a60586963fcf8d3ab2b65cc36b487001e16ec88b20caa8e6903e54c2f34a42bbffc93f30654d053 SHA512 e8f1d6d469990429eef85e0693d758105d4b8773ef2341344b338dfcf22c9c25244bce80e4be41a679282663055f102c843a9ecdbe3fa8b17722f38716bc3016
2+
EBUILD uart-devices-0.1.0.ebuild 542 BLAKE2B 0004e911e2be413548374d2a3fa13653291e8836838a288f26d6787f56bba20ab2b0a214f3c13d43fbb8db5fe0ac035edf6792257949187cfacae34ab3e49ea8 SHA512 406770a07b43e0dd86610100ec2348cd173100365d23cb055a9ae47386d85adfefcb9dff96d71749d12221674a8cc0d34e54c53782316e46fadb234cd43be649
3+
MISC metadata.xml 515 BLAKE2B 3a6a738dedcfe0fd1498661189cdafb09243b485280a08d4f5206f1a04e9dc4417ea6ec2dedac670da7b0daf9121fb10cda4f9919ffec9942bd274a6dd65b001 SHA512 f805341e95b70b9da1994c617696b6aa21c8431ade71a729106b6140a4e4a950843717dd5993b681d5fc1fbea0bd9362bfb5e2b645371542447722d672cb3315

dev-python/uart-devices/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">uart-devices</remote-id>
10+
<remote-id type="github">bdraco/uart-devices</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>J. Nick Koston</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..13} )
7+
DISTUTILS_USE_PEP517=poetry
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="UART Devices for Linux"
11+
HOMEPAGE="https://github.com/bdraco/uart-devices https://pypi.org/project/uart-devices/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
BDEPEND="
22+
test? (
23+
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
24+
)"
25+
26+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)