update mt_940-4.26.0

This commit is contained in:
2022-07-09 13:41:06 +02:00
committed by onkelbeh
parent 6f1b12c7d6
commit 0c65c797ad
3 changed files with 42 additions and 3 deletions
+3 -3
View File
@@ -524,15 +524,15 @@ 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 1766 Ebuilds in total, 1759 of them have in total 1767 (35 different) licenses assigned.
There are 1768 Ebuilds in total, 1761 of them have in total 1769 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1079|
|Apache-2.0|318|
|GPL-3|106|
|BSD|99|
|LGPL-3|28|
|BSD|100|
|LGPL-3|29|
|GPL-2|23|
|LGPL-3+|18|
|GPL-3+|14|
+2
View File
@@ -1,3 +1,5 @@
DIST mt_940-4.23.0.tar.gz 69855 BLAKE2B eeb6780401899eb37baa5591bd8623a9c336be115af4fc1bbcf506685fdc099dd22830dd4a7b03f7154e10e49b63aae5f9f33a3c84b41b57878156daec43a166 SHA512 e3f6e07ba6e8a7e633eefa5ad4687dba0529e813a4b2a8a9758a77f6f03450a1c77b5ba8fd9461a82124895acea0ee16f08a700cda330c6632289489994cdf11
DIST mt_940-4.26.0.tar.gz 20625 BLAKE2B 9dd35e7d08a5dc3ba193c6cfb212bc06340c6d182726413adc9765cdeee899e71abafb3cd46a19d0cc7243450c6210c974779eb90c879ffeb72607bea2a502d7 SHA512 ba4d79786743e3bb4efd4e5afb2dcbc1924fcf02322c340fa049e620a219964988576d87c37a66ffcd95f33eaecbc0fdc7faa5e82713f29eb3b2009fe4d945d3
EBUILD mt_940-4.23.0.ebuild 1004 BLAKE2B a44db75a88954ef90c2497806c6b4ee5c45b15de6d5c4306fb17177406c04858aa3bd4579e6b0085b2210de2883b01c98ebc52561470ba9367aa38523cc40d4a SHA512 3a975fe504c2536f5e4ba83d3fa6e57b8d1988cfcb363109dc3ab0fe6a4fb523b86bc2b78364be750483599fbec4e71c6f1ebc7a27221871de441d5c723f8203
EBUILD mt_940-4.26.0.ebuild 886 BLAKE2B 8fe0ea76cf476f91cdba04d958b67849c72149f97da177c6da8c6dbc862f6cfbdfe2b516f3443c1ec185ba3f1840cf170c1397b2fbd540e6864c67f1307045a9 SHA512 20fb547ed1f465f9f707e1fbec32d60d9238b8629436fbdd44c1ffaef0fc35aa31c826e96236f91011b8b19b096c0aaee1bf23a40ae0bf2ad6b75d628bc584eb
MISC metadata.xml 454 BLAKE2B 5f7b26727edc1f5f48bc7dc5b5ff7f6716fce2f80a09087b151963e92b799477e978449933b02a625845cfc6e8c0882a309eddb21cccdddd339a29428c6cc4f8 SHA512 305ec16ebdbb86bacba494410849bf493aab0c176985093e2101da0744f2499dcf37d08f5dccca8f98dbe88bac5dd97d0f8f5c5ea3efa31865505b804b5d8d33
+37
View File
@@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A library to parse MT940 files and returns smart Python collections for statistics and manipulation."
HOMEPAGE="https://github.com/WoLpH/mt940 https://pypi.org/project/mt-940/"
MY_PN=${PN/_/-}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="!dev-python/mt_940[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest