mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-26 16:51:03 +02:00
unicrypto-0.0.9.ebuild
This commit is contained in:
parent
031ae7866a
commit
49fe1b865b
2 changed files with 33 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST unicrypto-0.0.5.tar.gz 71492 BLAKE2B 3002a1666db49795ea903ab9bc279660cd5c21e968aa0f374b4e322d6949fbf6cfe2adf5f46c1ae0540dfd4bb60137f85ac6a46b91dbc1534442ffbd358370b1 SHA512 59e6d076e7604c2722129bf5a5fcb6a0380c3136b8113d4c8f65038f2a61d5664ebe86e40817350053c59e44c88f58d63114ca0ea3ef65b666e8cf4635ef87fc
|
||||
DIST unicrypto-0.0.9.tar.gz 71690 BLAKE2B d001c699482ed98339648d7c9e5656b6706c6675b6425cef3ca7ff7d506aeb6e2350f2db8d15756653778835cb393feff35ffa301105e13cee9f9e90222d183a SHA512 aa02dce27b2094b03a3d5c32573f862b57143dd8183cad362624a59f9378ced7c6ddcbe72b176399ea9a6ed292f98f9c7ae5db3549df4af42fafe70257ea21de
|
||||
|
|
|
|||
32
dev-python/unicrypto/unicrypto-0.0.9.ebuild
Normal file
32
dev-python/unicrypto/unicrypto-0.0.9.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Unified interface for cryptographic libraries"
|
||||
HOMEPAGE="https://github.com/skelsec/unicrypto"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm64 x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
#src_prepare() {
|
||||
#https://github.com/skelsec/unicrypto/issues/2
|
||||
#force pycryptodome backend
|
||||
# sed -i -e "s|override_library = None|override_library = \'Crypto\'|" unicrypto/__init__.py || die
|
||||
#override_library = 'cryptography' for dev-python/cryptography
|
||||
#override_library = 'mbedtls' for net-libs/mbedtls
|
||||
# eapply_user
|
||||
#}
|
||||
Loading…
Reference in a new issue