dev-python/mashumaro: drop 3.12, 3.13.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2025-02-20 11:00:03 +01:00
parent cc53efb455
commit 9502c8af97
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 53 deletions

View File

@ -606,12 +606,12 @@ 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 2386 Ebuilds in total, 2372 of them have in total 2415 (43 different) licenses assigned.
There are 2384 Ebuilds in total, 2370 of them have in total 2413 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1356|
|Apache-2.0|567|
|Apache-2.0|565|
|GPL-3|147|
|BSD|126|
|GPL-2|27|

View File

@ -1,7 +1,3 @@
DIST mashumaro-3.12.tar.gz 125581 BLAKE2B c68e9959d3001a5be79f5fa4329a25bdaafe92240d77ab0e469eb4283720452b9ee3dbce74d74078943673f376000acad25e15f59210d7cf023a1c7daf973f54 SHA512 8dd91092ee2378911118826b1ebb118d4359d7e2b454037df3edb02fd2725ddc1e4c3b95b1bbb74fccfbfac7545712be1dd865e81445b7ec5366c41a1d2381de
DIST mashumaro-3.13.1.tar.gz 165897 BLAKE2B 26dcc48f410de548302a3a157c442301e3b11a6add59665bec2e701207da39e00830d8fca51b2a0a5b0d668b6a9e338948b3464f6d4f7e3548af54224613919b SHA512 25976bd6fcc95d50326d8d129c49fa8762291d462f91b3da0d1a14cdc0b1d86cf0544c9ab36ef4978ee52ae1db231bf2ab698816d1b595acf2d682c93b6e90b8
DIST mashumaro-3.15.tar.gz 188646 BLAKE2B 7edfe0356cfae65de60a1615ebfecf3c288e16f3d0f532c6782c64de2f3fc1d9fb9f8ce2b6ed94f69c8252bb5d5bfe498667b92a869641788aba29cf1d61e9a0 SHA512 15c43a4c52e6b6fcc954e076e90799e078d5556fed8c187e00eb066a4141128933317389c42ae66b1c6a56e4123ef5d9f7c89abf7fe9add72dff932fabbe1047
EBUILD mashumaro-3.12.ebuild 557 BLAKE2B 23770dbfa4d8ae11d52aff8b778fd8135be8ee03887c4708db946137e128d79e1f24f6405a9c90e7fc1b37e744f01e0adfb8e01bf87f6ef4f4c7b10f878f974d SHA512 5816dc4ff69b88f4137747ece67e4a90ba2ed73ea06c5fe6305d9836bed09eb9c574811617108b3e656967c53170504c6848eeb04a7900394bee4c8bb2ad17af
EBUILD mashumaro-3.13.1.ebuild 594 BLAKE2B b6cca550a73cf106c88d4681e8a82b40db47d858d135ed95f232e10947b606bd8543475a8f9e02f845e6349479257efc57e6b5c5021e56b89a8c94af51c86baa SHA512 692a37dcd550225180fb44c248d54d0e62dc81bde2621095dfc1b3fbae8618c4754e22276091107a09fd8d91ea54f61aa88a35983a99d97523c8d5230e47a269
EBUILD mashumaro-3.15.ebuild 638 BLAKE2B 6f40b1fe3c7c3312bfa57a7800ccede0785cfdd24c25f30b2fdc92769b06a22fa1c0d7381b45a52d0595b4286faf27d71e319d29a9ffbad4b2edf94848b5a910 SHA512 bb3e7c17f9ce4acb457fb3c59136719dbd8f5a27e3cc43f6f031e9cef57b6a117555c17bbc580260ed0c858c3edb7ffb146b9a109d27af5487a4807c51cb3e62
MISC metadata.xml 522 BLAKE2B 6167870a8ae1426e4c9c90ee239600a378b776330b72a4fdf5f2b2ec05ab98da6ea27f979a91baa277a8a7f98c826d301bc6e17a274dd44dbe6e17876f843eb0 SHA512 61acf480f4c9f98ff132ff27b1149cb0918643afa6e84a63fd7a206118c0a129f7f951194f4102ea860476b1aeeec5dd22620d75177ffdc6cd6cf90cb2d59050

View File

@ -1,23 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Fast and well tested serialization library"
HOMEPAGE="https://github.com/Fatal1ty/mashumaro https://pypi.org/project/mashumaro/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/typing-extensions[${PYTHON_USEDEP}]"
distutils_enable_tests pytest

View File

@ -1,24 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Fast and well tested serialization library"
HOMEPAGE="https://github.com/Fatal1ty/mashumaro https://pypi.org/project/mashumaro/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/typing-extensions[${PYTHON_USEDEP}]
dev-python/orjson[${PYTHON_USEDEP}]"
distutils_enable_tests pytest