From be717cdcfe17e05d9e5cc973bf7b40651246aeeb Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Fri, 31 Oct 2025 18:36:05 +0500 Subject: [PATCH] dev-python/blurhash: add 1.1.5 Signed-off-by: Anna (cybertailor) Vyalkova --- dev-python/blurhash/Manifest | 1 + dev-python/blurhash/blurhash-1.1.5.ebuild | 34 +++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 dev-python/blurhash/blurhash-1.1.5.ebuild diff --git a/dev-python/blurhash/Manifest b/dev-python/blurhash/Manifest index 38372e9d5c..25d4257474 100644 --- a/dev-python/blurhash/Manifest +++ b/dev-python/blurhash/Manifest @@ -1 +1,2 @@ DIST blurhash-1.1.4.tar.gz 4738 BLAKE2B a25804938443e140e6d5a649e52c9c07cc91bb914be81efc33887161113f80362fba0b6711f520063461c7d4645022e559a11ecffdfeac9521a86cb23d279510 SHA512 eacef78927a1299bec19f73709435b1be55797273888e7856bbfd46d2aa1afa02f54505c15b76dcd6bd15a6817da0171aa412570c33c7ad487bfe10940ef3fd6 +DIST blurhash-1.1.5.tar.gz 50859 BLAKE2B 3cf43786e586ba011687ae40a22711ec18c60c1a53df3e425649a90659d18e723c7e0d9c35b3f6ae5313dcdf007622a0e6ba009035c98c7c51e1e2363defbe95 SHA512 84fef618a5bbb6b91a6e63665938e5b9c03a453dc1bd637863e2ffe560685b29a7a720309ebedb85a51db5686f8e22f6f399aeaede22b6578016e1d0ec410e63 diff --git a/dev-python/blurhash/blurhash-1.1.5.ebuild b/dev-python/blurhash/blurhash-1.1.5.ebuild new file mode 100644 index 0000000000..84d7d4d948 --- /dev/null +++ b/dev-python/blurhash/blurhash-1.1.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..14} pypy3_11 ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="Pure-Python implementation of the blurhash algorithm" +HOMEPAGE=" + https://pypi.org/project/blurhash/ + https://github.com/halcy/blurhash-python +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + test? ( + dev-python/pillow[jpeg,${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( ) + +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + rm setup.cfg || die +}