Skip to content

Commit

Permalink
dev-python/fnv-hash-fast: add 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
onkelbeh committed Oct 20, 2024
1 parent 4e93328 commit bbacb3e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -606,11 +606,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 2026 Ebuilds in total, 2015 of them have in total 2043 (42 different) licenses assigned.
There are 2027 Ebuilds in total, 2016 of them have in total 2044 (42 different) licenses assigned.

|License| Ebuilds using it|
|-------|-----|
|MIT|1171|
|MIT|1172|
|Apache-2.0|452|
|GPL-3|120|
|BSD|113|
Expand Down
4 changes: 3 additions & 1 deletion dev-python/fnv-hash-fast/Manifest
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
DIST fnv_hash_fast-0.5.0.tar.gz 5816 BLAKE2B e290c529301e11d76587ccf9c74a9af8a29eea8e47a3ee75f948cc7d8e749141954c8cf41d8d7d4e13eed8d73b6addca334228af0a35ca28e6ecdfda56a4e430 SHA512 77ab8a1d5d9154f8e75ee6b0fc2277452c705a480af7d1a083c59d6cd475986242bdc8d70dea8fbd28522439beb55a19f0fd7d0b1c96dd127f73425d80a40585
EBUILD fnv-hash-fast-0.5.0.ebuild 667 BLAKE2B 02593ea7b5f5daddd145c5602571a6d7dd47c2e5673cf9795beaa0282829e1653cf482d3978616185d6d79f5391f8cd3aa6b5cfb2db534576c930219586a682d SHA512 1c8f0215cc56076609ebcfba8788f80ceff527322367abf6cfbf8e9e28c01fabdf51e610e5d7ce5e070b0911eef566ccda76c2c2d5c838a55757106ca35c8533
DIST fnv_hash_fast-1.0.2.tar.gz 5808 BLAKE2B 77c5cc76cdcea02587258f1a139402ac189f2547346525780994bf5cf6e4b4ea46fc398db78f9cee29199ef441aaabf9b47315bfa9182c1d067dd3eb493e5625 SHA512 2142e8f9e964716e9f2cf292971764221cad3852f99e79ce3d9823e4178c80e71992fdec0a2acfa9d0ac5796739cedc64e1c63ba1be1656609fcfdc7ff3b0e7d
EBUILD fnv-hash-fast-0.5.0.ebuild 667 BLAKE2B 32cdc83850e3eb540ec1e98467a3d3373dce2bdd27d531e7f3a659a196813f2c15f7fdd779c02fd9194f7c4c5b0800d735087114983e734fa9fb63bd1221621e SHA512 b50594d4166dd3a6bf1824b7d3e8d1b244cb874854b4df4fa54e8b4460af713d4d620d4fc457e4d415a573989a600c6039fecca24d7399492d1ed2b848fb329a
EBUILD fnv-hash-fast-1.0.2.ebuild 588 BLAKE2B ad578e1874e949960688ab112cdd77fa7e22692785c044f850548a676fecb2b800f657a080cc2d30680cc9f344ce36db7344d99427eceac0068db606fac9bfca SHA512 656154fdfbbfa137f257876adf4a40ebe9d54d0882306306f7276ae6f65a9009edbe1053e6ab03540cd53666c9011171eb0d7f6f7e62a77e6e6705a82d8c3292
MISC metadata.xml 517 BLAKE2B cce4e31dd252ec667c0b18135534ca6bed80231c3129aa7747fe75ce886c7fd1570326a662cfc8c04799c3ebe86713d16b4e13b6a0b72b5f5ed7a63fff949520 SHA512 47e09e3a904d39e2dd5e9126401a36299c0b0103aac484de6e488335d2a89aee4d6833bf712fe1a622137d07590f905be003f3122962d809ec56d84ee3846bcc
2 changes: 1 addition & 1 deletion dev-python/fnv-hash-fast/fnv-hash-fast-0.5.0.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

EAPI=8

PYTHON_COMPAT=( python3_{11..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi

Expand Down
27 changes: 27 additions & 0 deletions dev-python/fnv-hash-fast/fnv-hash-fast-1.0.2.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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=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-cov[${PYTHON_USEDEP}]
)"

distutils_enable_tests pytest

0 comments on commit bbacb3e

Please sign in to comment.