mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-python/argon2-cffi-bindings: Bump to 26.1.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user