remove obsolete crccheck

This commit is contained in:
Andreas Billmeier 2022-03-18 20:48:40 +01:00 committed by Andreas Billmeier
parent dd4f090a57
commit 184f90391d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 2 additions and 101 deletions

View File

@ -496,7 +496,7 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## Licenses ## 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. 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 1803 Ebuilds in total, 1795 of them have in total 1804 (33 different) licenses assigned. There are 1801 Ebuilds in total, 1793 of them have in total 1802 (33 different) licenses assigned.
|License| Ebuilds using it| |License| Ebuilds using it|
|-------|-----| |-------|-----|
@ -507,7 +507,7 @@ There are 1803 Ebuilds in total, 1795 of them have in total 1804 (33 different)
|LGPL-3|27| |LGPL-3|27|
|GPL-2|23| |GPL-2|23|
|LGPL-3+|18| |LGPL-3+|18|
|GPL-3+|15| |GPL-3+|13|
|all-rights-reserved|13| |all-rights-reserved|13|
|BSD-2|11| |BSD-2|11|
|LGPL-2.1|8| |LGPL-2.1|8|

View File

@ -1,5 +0,0 @@
DIST crccheck-0.6.zip 20635 BLAKE2B d6d7d6bdf4fae57d7a09704b19349b3b0474124ba333f6a6ca9e999b6170e59446f8c07db34f510e87b2c3a33d2f5912a0861086478cc8478bd96f6accbca112 SHA512 154f7f0bf723b19623505dba3650ccba632b39346f12d7bb9a7ab8f0650576996563995d2552afb80bc619455778bf382b59c08bab71c7cdf3688b5519d5b294
DIST crccheck-1.0.tar.gz 23968 BLAKE2B 9720c4d48fbc671bd099f06e4837b608a85e986eb6b24519360716b59ff0bbdf398cce8b7a963eaac3bdf69434758b3af61870d3cbbb41c56c2f21e5a6676cf9 SHA512 eab4259404abb618d0dea7848c566161d2e332e3828d4d23f19432d9a5b5a402c015a1f23761ae6a4982725bbb9dbe453b9d7190d6917b63e5a444ecaf69c669
EBUILD crccheck-0.6-r1.ebuild 901 BLAKE2B e02f97caf6f94d918d8c86bef0f290c0c295175cc7ff8dc31a6ffe1b63ae8901d3619e6f11d1fee61b2e01ec8b36ac4e9d47bf8db4af1b60a9bfd41a2a6628c6 SHA512 011c572a3fbd30a03d5f51e645568bb7c36ada5e0587c563b908a3038668a89ab484c3715e1eded95c37a2c5a4186c463814e3ff46405a0d88cc41719869122c
EBUILD crccheck-1.0.ebuild 901 BLAKE2B 5114d6a37f72b4c9c089fafe09157db37bac1671607ddd39d497a8301241055014c6e82e5b3b5095e8ca1795df72b9bedb4b03bcd1deb0feb703d883ab8efee7 SHA512 93c611dbd594c2e6c465b6ba759ba3f3a59471edc7a241fefc746171e618d7f1e94655a26d91f5fdf0c2deae702c2e435be244cbfa785678957e4fa9461eb604
MISC metadata.xml 511 BLAKE2B d0f8d2850df3f80b822b94aa092cc6d3bc7f9783402e6db40c2805a5b6505aef1b2d07e91b833f2098a2e1bfad6ff4ac782bf415691210177369f82b5a34be7e SHA512 5e4fe3059c0e4f031db54db8ddfa2fd2b10647c4761f2dfde126672175aee591a8f31541d3bc736fc4d0a7000eac4e3726774b8f42c848e1fbcb64056b9d9940

View File

@ -1,39 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Calculation library for CRCs and checksums"
HOMEPAGE="https://bitbucket.org/martin_scharrer/crccheck https://pypi.org/project/crccheck/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
# https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/50
# packages=['crccheck', 'tests']
src_prepare() {
sed -i "s/, 'tests'//g" -i setup.py || die
eapply_user
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -1,39 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Calculation library for CRCs and checksums"
HOMEPAGE="https://bitbucket.org/martin_scharrer/crccheck https://pypi.org/project/crccheck/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
# https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/50
# packages=['crccheck', 'tests']
src_prepare() {
sed -i "s/, 'tests'//g" -i setup.py || die
eapply_user
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -1,16 +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">crccheck</remote-id>
<doc>https://pythonhosted.org/crccheck/</doc>
<maintainer status="unknown">
<email>martin@scharrer-online.de</email>
<name>Martin Scharrer</name>
</maintainer>
</upstream>
</pkgmetadata>