Skip to content

Commit 97fb0a0

Browse files
committed
dev-python/typedmonarchmoney: new package, add 0.3.1
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3889 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 6dd7806 commit 97fb0a0

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 2093 Ebuilds in total, 2082 of them have in total 2109 (42 different) licenses assigned.
609+
There are 2094 Ebuilds in total, 2083 of them have in total 2110 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613-
|MIT|1211|
613+
|MIT|1212|
614614
|Apache-2.0|471|
615615
|GPL-3|128|
616616
|BSD|111|

dev-python/typedmonarchmoney/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST typedmonarchmoney-0.3.1.tar.gz 4577 BLAKE2B 3b0029d548307cabc3d84e2ec4a8b85a19738e13a0de1c090e5e6e05c74f0d19fbf635a9c77e4502e9e8002aed25206bdd9f7acbf895615b354b62916960794d SHA512 8bff7efb723a8bb92bd4b9ad916544a7d0a42aa8ceece53b9cd315b5b3e8bb6a16686144b96e3634240fd3991741609c68a8b655083c725d7c40c49f5464f51a
2+
EBUILD typedmonarchmoney-0.3.1.ebuild 619 BLAKE2B 832c86d95fee0d82728f5b7620e23cec332014a5cd8d5b301029ab091bffe2c223a96e63f58da7d3b0a49dd56bfbfdaac3b66623175a584c343ba5a39168cb90 SHA512 450fc504d63f438de0b3b260bb62984f960d6d91e5a2db63a42d7cce1071e8d0a68efe1b2ffafde8c378b36419cc7d9dd1ee6acd0497341b039f2815c76a6031
3+
MISC metadata.xml 459 BLAKE2B 106c5809ed16b3810fb21c0593d9df2da07b5852c4873b8059437497fc42c5ddc6242ccde1846fbcc66083e0404c78abcee3a3a9080f2f758a0661a6d3325349 SHA512 aef7f05b02f5a427688ebf4f052536de4779ae09d4d2400e9c90e5feef6a117cc674d31e185ed3ed558e599b7130efe768c88af14850616764bc10d116b4db61
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">typedmonarchmoney</remote-id>
10+
<maintainer status="unknown">
11+
<email>[email protected]</email>
12+
<name>Jeff Stein</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="A Typed wrapper around Monarch Money"
11+
HOMEPAGE=" https://pypi.org/project/typedmonarchmoney/"
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/rich[${PYTHON_USEDEP}]
22+
dev-python/monarchmoney[${PYTHON_USEDEP}]"
23+
24+
src_prepare() {
25+
sed -e "/include/d" -i pyproject.toml || die
26+
eapply_user
27+
}
28+
29+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)