From 5b1ccb77fb1826fbb8d6a505348e3bf5146cb8c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 21 Aug 2026 06:52:26 +0200 Subject: [PATCH] dev-python/argon2-cffi-bindings: Bump to 26.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/argon2-cffi-bindings/Manifest | 1 + .../argon2-cffi-bindings-26.1.0.ebuild | 48 +++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 dev-python/argon2-cffi-bindings/argon2-cffi-bindings-26.1.0.ebuild diff --git a/dev-python/argon2-cffi-bindings/Manifest b/dev-python/argon2-cffi-bindings/Manifest index 8aed9160cd21d..052b318139db7 100644 --- a/dev-python/argon2-cffi-bindings/Manifest +++ b/dev-python/argon2-cffi-bindings/Manifest @@ -1 +1,2 @@ DIST argon2_cffi_bindings-25.1.0.tar.gz 1783441 BLAKE2B 0479127bc3587ddc19a0891b25191f602495cb85136864b8b08179683f9d592a01f727b0ad60b0ca4708d834207a3678748723553f9a9bd15dc46412f40c1139 SHA512 64e387a4997b5a905e177b62d1bfb5fafb3b466c10c759d5305fa3e4ec35b7f386eabd34562157266405114c0c71a8c616e25efd9fd8638de03bcc16cc3df6df +DIST argon2_cffi_bindings-26.1.0.tar.gz 1790807 BLAKE2B 37462d7fc7f59e0ef0f60f44693245d58c35d8a07dfdd523d912dfa06368777efe580eee5ca324d48337ae5f10bffa5c4a1c87f1df062a5046e3858953849cb0 SHA512 08f7827031ec893f289fb94d52d918c997cc4dcd2756b93d134e6047e6a4ba00cddc04126caecdf71e81c8f6b476b7997496e45f8f835c5edd0958da84e3ff35 diff --git a/dev-python/argon2-cffi-bindings/argon2-cffi-bindings-26.1.0.ebuild b/dev-python/argon2-cffi-bindings/argon2-cffi-bindings-26.1.0.ebuild new file mode 100644 index 0000000000000..52e6f21d69395 --- /dev/null +++ b/dev-python/argon2-cffi-bindings/argon2-cffi-bindings-26.1.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=scikit-build-core +PYTHON_COMPAT=( python3_{12..15} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Low-level CFFI bindings for the Argon2 password hashing library" +HOMEPAGE=" + https://github.com/hynek/argon2-cffi-bindings/ + https://pypi.org/project/argon2-cffi-bindings/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="cpu_flags_x86_sse2" + +DEPEND=" + app-crypt/argon2:= +" +BDEPEND=" + >=dev-python/setuptools-scm-6.2[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/cffi[${PYTHON_USEDEP}] + ' 'python*') +" +RDEPEND=" + ${DEPEND} + $(python_gen_cond_dep ' + dev-python/cffi[${PYTHON_USEDEP}] + ' 'python*') +" + +DOCS=( CHANGELOG.md README.md ) + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +src_configure() { + export ARGON2_CFFI_USE_SYSTEM=1 + export ARGON2_CFFI_USE_SSE2=$(usex cpu_flags_x86_sse2 1 0) + distutils-r1_src_configure +}