dev-python/dsmr-parser: drop olds

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 17:29:19 +02:00
parent 5743e4718f
commit 45d7c897a7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 42 deletions

View File

@ -617,11 +617,11 @@ 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 1978 Ebuilds in total, 1967 of them have in total 1987 (42 different) licenses assigned.
There are 1977 Ebuilds in total, 1966 of them have in total 1986 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1121|
|MIT|1120|
|Apache-2.0|450|
|GPL-3|128|
|BSD|111|

View File

@ -1,5 +1,3 @@
DIST dsmr-parser-0.33.tar.gz 24537 BLAKE2B 90a1089d529aec9e1c39dc1f6c38e943331adbcef177c48d41002afed26e6c57d9f59b6b9bde2c71654a6c045695144896a6a4b199e7c45e6e48f9b65b862db6 SHA512 06632c5890ba20827220cf7057342e95f105222d386f66edbe188aa800a28e0eae27a29546f9a3a505d9dea6239f3b6e25f9e75a72e1696777a0d2ff65cbcb35
DIST dsmr-parser-1.3.1.tar.gz 33519 BLAKE2B def1da59fcc1367f7c9c8e424b61823667eb1a06320576a94fe8a3a0c0832f91e6d2aa888a9a472a0fd473631cd31691801b04a863f92f4c7c0fbd94e80eb3f8 SHA512 3001dad145123b665b2baa2b59c78a182176a43eeb37ab04f175f192a5803ff8bbb8a90f611a1cec4621a70c03ab1ea30386026547689475d68a355d937b494c
EBUILD dsmr-parser-0.33.ebuild 805 BLAKE2B 18c1b9262ab6ffa70358029315f92bb1edf64f85e8b0832dfa03dcb78335a59f20eba11d98a301486d372c096684eeb0be2577ec294d6ce3be39df1fc171b8b9 SHA512 22c0cd0e0c5188398890eb8d2b716cdcff39183c5b1bbe809f047a8a6393944fefa03622aa056fc98970fcc58f23c57731067bc1a2149d44eaa5ff1903b30620
EBUILD dsmr-parser-1.3.1.ebuild 854 BLAKE2B 6a36458c2718a55e0f78cca9243b7b9fa0295f90f95e9f5b6ff24a68999538a8f86e9c8522db0487b4f49cf580bbbd87500268a400786d4cc3648a13c0aba95a SHA512 71372d057d8b423c865166030098c87a00dea0961ce94b866de0f687248dc29299508f653e42fa8bf475c863367bab9115c36b63c14ced7a75822adb40c4bba4
EBUILD dsmr-parser-1.3.1.ebuild 854 BLAKE2B 79ba7d11f96f7acc18835113ba15382f0243e6c01510d70b3cb146588cac3a99459c93b142f6ad3bfd7ef9e5dba4679487a00efc2262c386fe2233cd3c9b0dac SHA512 58d712e85dbfe59a2fcbe72806f8ee6283d442b7da5cf79fd2d8f8f76f4bed437ec8038a715e9834495b640a03148fa9bd694d815ae65d44a5424bd045d8a961
MISC metadata.xml 526 BLAKE2B 3fd87d8b6f9fd1ec631bdc1eb217aa4fbb177dc7bb8a24a8b5382ec622f1ef09709456497d3f7a767cbc94713a66486da8accaff82109c23df0915353e65d549 SHA512 2dd9e50263919097f7275df98e807d9970bc36e022ee54708a89cca9c9bf191d515e3a5950193f3bea901ffcca446298f6bf74e59bf9def6c223f06e617ad9aa

View File

@ -1,35 +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_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Library to parse Dutch Smart Meter Requirements (DSMR)"
HOMEPAGE="https://github.com/ndokter/dsmr_parser https://pypi.org/project/dsmr-parser/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/pyserial-asyncio[${PYTHON_USEDEP}]
~dev-python/tailer-0.4.1[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi