Skip to content

Commit 9ede830

Browse files
committed
dev-python/simplefin4py: new package, add 0.0.18
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3755 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 4517878 commit 9ede830

File tree

4 files changed

+49
-2
lines changed

4 files changed

+49
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,11 +606,11 @@ 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 2246 Ebuilds in total, 2232 of them have in total 2270 (42 different) licenses assigned.
609+
There are 2247 Ebuilds in total, 2233 of them have in total 2271 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613-
|MIT|1274|
613+
|MIT|1275|
614614
|Apache-2.0|519|
615615
|GPL-3|143|
616616
|BSD|123|

dev-python/simplefin4py/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST simplefin4py-0.0.18.tar.gz 6750 BLAKE2B 62c9b7e9ab7b97b1032c0b9c553df5dde9b2c545ac47ef9a5d4baff0bbe4d1954e269e5b9e441e8eddf2e378e6f25896fd9111279f79b71377c3ec9259d2e5b1 SHA512 1c3b41fbe3fecc8d655eeb40e238d611264d057377e5f6c72a3e37bfe2052130a841a9395ea9072c39d48b3c29b50f5e96a514110a6b1abacc1a4bed46b5b9c1
2+
EBUILD simplefin4py-0.0.18.ebuild 687 BLAKE2B e4495faad29d149da5c7f788da46434b67504e15bd52acda57648bd89e0ffc024297dd7d3fc0a3301c5f7232a429663f9a69be23a946799a101723b6db0e4076 SHA512 638ca9f4b4dc740af0c082ddb8169d7629c4197fe5ecde65a8f2f57ee4813036c5dedf68e808ee37128086aac021c649208b926a4dfd0fc13d769abe46f614a1
3+
MISC metadata.xml 461 BLAKE2B 859c43a21feb0950c52bb1afa58fcb16ba98e20f5cbe1a1c5b428c480d91de9434f2c2314359b9c3ffc0e30f0f83c34d7f87543f67929d7fe7da2d56dbfc8094 SHA512 70485af2c7acd21888c1ac66eca294edd8cdc8feb0795b45291938228a36b6d86ab84a5a73309f5fd9d5a8bd1ae0b0db2e051ccd85c74faad4d9d1e19e4f9282

dev-python/simplefin4py/metadata.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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">simplefin4py</remote-id>
10+
<maintainer status="unknown">
11+
<email>[email protected]</email>
12+
<name>Jeef</name>
13+
</maintainer>
14+
</upstream>
15+
</pkgmetadata>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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="This library helps you access simpelFIN with python"
11+
HOMEPAGE=" https://pypi.org/project/simplefin4py/"
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+
RDEPEND=">=dev-python/aiohttp-3.9.1[${PYTHON_USEDEP}]
22+
>=dev-python/dataclasses-json-0.6.3[${PYTHON_USEDEP}]"
23+
BDEPEND="
24+
test? (
25+
dev-python/aioresponses[${PYTHON_USEDEP}]
26+
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
27+
)"
28+
29+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)