mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-python/m2crypto: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST m2crypto-0.46.2.tar.gz 501816 BLAKE2B 5d16c978295e8e9bd4f03c38a9e11af1c69a786c102cec3a4fb08313022efde1992b241ef5fe3e2a8c85368a00f299f8930621ab332de0a30f27eb9752846bfa SHA512 550a66e457cef8a7c5c13054a24c0fcade516119305aed93c095aecbd4d3a444dc04443c59497c2b8a2e390ddaa543ad06194f617d7e6483d39d900a0775e23d
|
||||
DIST m2crypto-0.47.0.tar.gz 662529 BLAKE2B f1ba6628ae713470850c2fa5db3230b000666ee93184622498ffc5b8527d445b96a0868addd491988147487553fc62aaedff4a651fd2e0b2efacc5fcfb81ec19 SHA512 a99a0e084831fde0bafe4be0ca748ec171a9c38225dd5d49d1af5a80122e89c75921589936b58fcd8b71f53ab006038d10dfd362d5cc37ae6bf1018ab378cce8
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
# Copyright 2018-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_EXT=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{11..14} )
|
||||
PYPI_PN="M2Crypto"
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit distutils-r1 toolchain-funcs pypi
|
||||
|
||||
DESCRIPTION="A Python crypto and SSL toolkit"
|
||||
HOMEPAGE="
|
||||
https://sr.ht/~mcepl/m2crypto/
|
||||
https://gitlab.com/m2crypto/m2crypto/
|
||||
https://pypi.org/project/M2Crypto/
|
||||
"
|
||||
|
||||
# openssl via src/SWIG/_lib11_compat.i
|
||||
LICENSE="BSD-2 openssl"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
|
||||
IUSE="abi_mips_n32 abi_mips_n64 abi_mips_o32"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/openssl:=
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
BDEPEND="
|
||||
>=dev-lang/swig-2.0.9
|
||||
"
|
||||
|
||||
swig_define() {
|
||||
local x
|
||||
for x; do
|
||||
if tc-cpp-is-true "defined(${x})"; then
|
||||
SWIG_FEATURES+=" -D${x}"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# relies on very exact clock behavior which apparently fails
|
||||
# with inconvenient CONFIG_HZ*
|
||||
sed -e 's:test_server_simple_timeouts:_&:' \
|
||||
-i tests/test_ssl.py || die
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
# setup.py looks at platform.machine() to determine swig options.
|
||||
# For exotic ABIs, we need to give swig a hint.
|
||||
local -x SWIG_FEATURES=
|
||||
|
||||
# https://bugs.gentoo.org/617946
|
||||
swig_define __ILP32__
|
||||
|
||||
# https://bugs.gentoo.org/674112
|
||||
swig_define __ARM_PCS_VFP
|
||||
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
|
||||
python_test() {
|
||||
"${EPYTHON}" -m unittest -b -v tests.alltests.suite ||
|
||||
die "Tests failed for ${EPYTHON}"
|
||||
}
|
||||
Reference in New Issue
Block a user