dev-python/mt_940: drop 4.23.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:34:08 +01:00 committed by Andreas Billmeier
parent c269119b3f
commit 25f5c04812
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 38 deletions

View File

@ -612,14 +612,14 @@ 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 1671 Ebuilds in total, 1660 of them have in total 1678 (42 different) licenses assigned.
There are 1670 Ebuilds in total, 1659 of them have in total 1677 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|968|
|Apache-2.0|349|
|GPL-3|108|
|BSD|92|
|BSD|91|
|LGPL-3|23|
|GPL-2|22|
|all-rights-reserved|15|

View File

@ -1,5 +1,3 @@
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 816 BLAKE2B a6c55c2eea02dcef5ff23b4c2ad3d636ddde61c6d65b08fa1c836d5506d6f066eb70c1bb9d70daad5a47f9813022b689ce56a4b4e44f1d57138234fcef134f84 SHA512 8db788103e1e2ef245dc2cd9f9d2b0f22a50fc144828f28f020dd3851a335922c5632f88a704e84c07eb5588cfa707e58f786590edcedcfe07767f9eb378e914
EBUILD mt_940-4.26.0.ebuild 729 BLAKE2B 60aab2e58e567d4e7e3ad63fdf9d46b801614004a966af845d72efef3173f614ee5ba780d5e71192902746296e039486ffd79421aa5ea85ea5e3cfba7dbf50f4 SHA512 0eb92e7eaac2ee20ad1b4a5dbad263e3644a63cb55eeb253d2afbe2c899cd3986196ad4c14d6cd895f51b85589eb33ec689d855ca06e10facba7b2ad05443730
MISC metadata.xml 507 BLAKE2B d2109797bbf9e573008767ad748a3895e85809370848797473c5b0861370e1398f8b90be7848028729e9ea2c29ccd7f6b7a4fce705ada0258f360be33fa32d5f SHA512 4b2282318d1f7db1ee453b39819d98bafc03d963a2f8459bd3c51d906848aac8e80a5ada0ee3cc986b99a330b38a7b8a3dc267d49490edeaee19ec847322d14c

View File

@ -1,34 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_PN=${PN/_/-}
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
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/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
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() {
py.test -v -v || die
}