Skip to content

Commit 8954b86

Browse files
onkelbehxavierforestier
authored andcommitted
dev-python/pywmspro: new package, add 0.2.1
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3965 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 6794eb7 commit 8954b86

File tree

4 files changed

+46
-4
lines changed

4 files changed

+46
-4
lines changed

README.md

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

607607
## Licenses
608608
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.
609-
There are 2015 Ebuilds in total, 2004 of them have in total 2032 (42 different) licenses assigned.
609+
There are 2016 Ebuilds in total, 2005 of them have in total 2033 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613613
|MIT|1165|
614-
|Apache-2.0|449|
614+
|Apache-2.0|450|
615615
|GPL-3|119|
616616
|BSD|113|
617617
|GPL-2|25|
@@ -653,9 +653,9 @@ There are 2015 Ebuilds in total, 2004 of them have in total 2032 (42 different)
653653
|GPL-2+|1|
654654
|GPL-2-with-linking-exception|1|
655655

656-
(Last counted: 01/10/2024)
656+
(Last counted: 18/10/2024)
657657

658658
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
659659

660660
A big thanks goes to Iris for reviewing this README.
661-
Last updated: 01/10/2024
661+
Last updated: 18/10/2024

dev-python/pywmspro/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST pywmspro-0.2.1.tar.gz 8546 BLAKE2B 23637fcaf90180f6ad47d4303118d9de3d880991317e95d7adadbdf32c69ed656d6fa0bab966d5135e2843a4c0a605dc95667c5ce7fafbc5bea9476bb4c0bf1d SHA512 a890c0ff0445c56a1a9af52f81ad0e553880de7131157694f23652650f8bb9419603555d8d0e14062f8f326550d3c1a25b045d72ac6febec8eefa33be180381e
2+
EBUILD pywmspro-0.2.1.ebuild 548 BLAKE2B 62f3f93953a9aaf133cc1015622c0b7d41143120b917a0e8b79b878649b6903438baff78c2c1ec11127f6fa29a874e199c44a7ab9bf049176f1054e995be0804 SHA512 922d8b0dc26a79e4cdaa5a10d9986818d9b448afaac5cf5ce1b29599cf01b5b49ca67eb332daf0a37ee79db4191073fbfa149d251cd2b6c0001485fe34f82227
3+
MISC metadata.xml 513 BLAKE2B 8931d59470ba0e1c84376379241bb0bd160eca890c9eb19fec53d7061d750e4bca9ab36e512e0fe14b9b2ad4176dceebefcb56594a52d40f685da59b47260be1 SHA512 a1d00f7448b787deb73833ba9630d995357e862a36ee7558b911fbc7ebeedec05ad09f56869cf4ab4bba2e39083b684fcb29f48002a615cdef1798d0dd7b519d

dev-python/pywmspro/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">pywmspro</remote-id>
10+
<remote-id type="github">mback2k/pywmspro</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>Marc Hoersken</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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="Python library for WMS WebControl pro API"
11+
HOMEPAGE="https://github.com/mback2k/pywmspro https://pypi.org/project/pywmspro/"
12+
13+
LICENSE="Apache-2.0"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND=">=dev-python/aiohttp-3.10.3[${PYTHON_USEDEP}]"
22+
23+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)