add mt_940-4.23.0

This commit is contained in:
Andreas Billmeier 2022-03-20 09:39:45 +01:00 committed by Andreas Billmeier
parent 5d98ae8f4f
commit 12ae5fb710
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 59 additions and 2 deletions

View File

@ -496,14 +496,14 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## 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 1717 Ebuilds in total, 1709 of them have in total 1716 (34 different) licenses assigned.
There are 1718 Ebuilds in total, 1710 of them have in total 1717 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1040|
|Apache-2.0|315|
|GPL-3|105|
|BSD|96|
|BSD|97|
|LGPL-3|27|
|GPL-2|22|
|LGPL-3+|17|

View File

@ -0,0 +1,3 @@
DIST mt_940-4.23.0.tar.gz 69855 BLAKE2B eeb6780401899eb37baa5591bd8623a9c336be115af4fc1bbcf506685fdc099dd22830dd4a7b03f7154e10e49b63aae5f9f33a3c84b41b57878156daec43a166 SHA512 e3f6e07ba6e8a7e633eefa5ad4687dba0529e813a4b2a8a9758a77f6f03450a1c77b5ba8fd9461a82124895acea0ee16f08a700cda330c6632289489994cdf11
EBUILD mt_940-4.23.0.ebuild 1004 BLAKE2B a44db75a88954ef90c2497806c6b4ee5c45b15de6d5c4306fb17177406c04858aa3bd4579e6b0085b2210de2883b01c98ebc52561470ba9367aa38523cc40d4a SHA512 3a975fe504c2536f5e4ba83d3fa6e57b8d1988cfcb363109dc3ab0fe6a4fb523b86bc2b78364be750483599fbec4e71c6f1ebc7a27221871de441d5c723f8203
MISC metadata.xml 454 BLAKE2B 5f7b26727edc1f5f48bc7dc5b5ff7f6716fce2f80a09087b151963e92b799477e978449933b02a625845cfc6e8c0882a309eddb21cccdddd339a29428c6cc4f8 SHA512 305ec16ebdbb86bacba494410849bf493aab0c176985093e2101da0744f2499dcf37d08f5dccca8f98dbe88bac5dd97d0f8f5c5ea3efa31865505b804b5d8d33

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">mt-940</remote-id>
<maintainer status="unknown">
<email>wolph@wol.ph</email>
<name>Rick van Hattem (wolph)</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,39 @@
# 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 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/pytest-cache[${PYTHON_USEDEP}]
dev-python/pytest-flake8[${PYTHON_USEDEP}]
dev-python/flake8[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}