dev-python/fnv-hash-fast: drop 0.3.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-03 19:05:13 +01:00 committed by Andreas Billmeier
parent 392e82662c
commit fe0130a71b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 36 deletions

View File

@ -612,11 +612,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 1666 Ebuilds in total, 1655 of them have in total 1669 (40 different) licenses assigned.
There are 1665 Ebuilds in total, 1654 of them have in total 1668 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|957|
|MIT|956|
|Apache-2.0|358|
|GPL-3|96|
|BSD|95|

View File

@ -1,7 +1,5 @@
DIST fnv_hash_fast-0.3.1.tar.gz 5763 BLAKE2B 5b3eae338ee053b769bae8bef50d8ab4176f261dc650807cdbc715fe4996ea10cfd9b16ee32d4bd9c06a1f9d5036bfa8becfd12e128762d1dac4899a4cd372a4 SHA512 118830f6cec3d7c21b376e0abfe4a359e1594893c9552e115c28bedf88ea1115b479c4473b76a20302a5098aac7bc88229212eda938b3e46d0e02c4063245156
DIST fnv_hash_fast-0.4.1.tar.gz 5767 BLAKE2B 59758e830640516b277806244c5098a870c27a3f1e537431c72022097af02c3143aa567bd89083c8672d10fb78a13052c408f8c0abc44c098815cc2994976b21 SHA512 d1749b8dfc5fa7750f4f9dea7e12ceee93ed13415c80a0faa41346d0bb54d8b778c5dd3a2bb47a50cb2dc1aa652267f0dc4b7bf6455e3d2609224ce176bb4b8b
DIST fnv_hash_fast-0.5.0.tar.gz 5816 BLAKE2B e290c529301e11d76587ccf9c74a9af8a29eea8e47a3ee75f948cc7d8e749141954c8cf41d8d7d4e13eed8d73b6addca334228af0a35ca28e6ecdfda56a4e430 SHA512 77ab8a1d5d9154f8e75ee6b0fc2277452c705a480af7d1a083c59d6cd475986242bdc8d70dea8fbd28522439beb55a19f0fd7d0b1c96dd127f73425d80a40585
EBUILD fnv-hash-fast-0.3.1.ebuild 667 BLAKE2B 1deeecac5f71ed4422e75c6852dbc45dd6f40a197e22099175ac86b78482b6b4d2b560542792fd6dd0b3101c29e2e8fd4ff06b7cbc6a1dc0f38a1653c86cfcbd SHA512 f32e8c823778f52d669a1dfa2cf47e0488cd0ff4ad7806b20459127396ff46dd273c6cd0e81e600771b73134bcfa49050a93b59a57db2e82f8509443692d7612
EBUILD fnv-hash-fast-0.4.1.ebuild 667 BLAKE2B 1deeecac5f71ed4422e75c6852dbc45dd6f40a197e22099175ac86b78482b6b4d2b560542792fd6dd0b3101c29e2e8fd4ff06b7cbc6a1dc0f38a1653c86cfcbd SHA512 f32e8c823778f52d669a1dfa2cf47e0488cd0ff4ad7806b20459127396ff46dd273c6cd0e81e600771b73134bcfa49050a93b59a57db2e82f8509443692d7612
EBUILD fnv-hash-fast-0.5.0.ebuild 667 BLAKE2B 1deeecac5f71ed4422e75c6852dbc45dd6f40a197e22099175ac86b78482b6b4d2b560542792fd6dd0b3101c29e2e8fd4ff06b7cbc6a1dc0f38a1653c86cfcbd SHA512 f32e8c823778f52d669a1dfa2cf47e0488cd0ff4ad7806b20459127396ff46dd273c6cd0e81e600771b73134bcfa49050a93b59a57db2e82f8509443692d7612
MISC metadata.xml 517 BLAKE2B cce4e31dd252ec667c0b18135534ca6bed80231c3129aa7747fe75ce886c7fd1570326a662cfc8c04799c3ebe86713d16b4e13b6a0b72b5f5ed7a63fff949520 SHA512 47e09e3a904d39e2dd5e9126401a36299c0b0103aac484de6e488335d2a89aee4d6833bf712fe1a622137d07590f905be003f3122962d809ec56d84ee3846bcc

View File

@ -1,32 +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=poetry
inherit distutils-r1 pypi
DESCRIPTION="A fast version of fnv1a"
HOMEPAGE="https://github.com/bdraco/fnv-hash-fast https://pypi.org/project/fnv-hash-fast/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/fnvhash[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest