-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3646 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |