dev-python/msgpack: remove outdated msgpack

This commit is contained in:
Andreas Billmeier 2022-10-16 11:32:25 +02:00 committed by Andreas Billmeier
parent 6a430338ca
commit d776aecf7d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 53 deletions

View File

@ -547,12 +547,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 1594 Ebuilds in total, 1587 of them have in total 1599 (34 different) licenses assigned.
There are 1593 Ebuilds in total, 1586 of them have in total 1598 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|946|
|Apache-2.0|314|
|Apache-2.0|313|
|GPL-3|95|
|BSD|90|
|LGPL-3|26|

View File

@ -1,3 +0,0 @@
DIST msgpack-0.6.1.tar.gz 118812 BLAKE2B 9f5522ae7dc89e286a338bfdd91bd4cacefdf7d075136a2ce5e28896db9a9c6a9ed1fe71fff45aab09f8dd32878fcd996366346daa88d47a31a253dec06e2353 SHA512 1a60da428f4b69df817660f4c4f60b1744de17d2b72352286fb41c6703de1d100853f8701b947fb11fc38f2180a50be4a9d577550fcfb9da6a05fe30ed2af07c
EBUILD msgpack-0.6.1.ebuild 695 BLAKE2B 8f474159efe87c7d2f2cb9de35452382e0f1ec14536b5721f697bf56fef376d9ab187057c6f4039234f55889526343eec944868c04389ac6ec3921f9e98fff5e SHA512 4687bb2fd187159a9401c5b4f8db7177917f6554a7128c70d81993ca790c58fc9794c8cc4a6b444ec30f936ddf284d204aae67a2843eaccd3cc09f01e500ba3c
MISC metadata.xml 453 BLAKE2B d5e1aba14bb716bfdbb15a4a4d311085835e2db6ab6d8a3635bf05df08722fb8536e692a0f2036095d9c66bff7c9cf75b49c4485ebe13e401cfbd63bca55d049 SHA512 e4977922f13528787ba6b5a27f28b2978d77525efc19f3499bb288eeac9a0efce618f82080e75354e3a8bfae2dd03e722b2d308cc214f7c81915ccccce0fc69d

View File

@ -1,15 +0,0 @@
<?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">msgpack</remote-id>
<maintainer status="unknown">
<email>songofacandy@gmail.com</email>
<name>INADA Naoki</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,33 +0,0 @@
# 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="MessagePack (de)serializer."
HOMEPAGE="https://msgpack.org/ https://pypi.org/project/msgpack/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=""
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
}