gentoo-ebuilds/app-forensics/volatility3/volatility3-2.11.0-r1.ebuild
Mario Haustein dd39c39c9f
app-forensics/volatility3: enable py3.13
Closes: https://bugs.gentoo.org/952205
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Part-of: https://github.com/gentoo/gentoo/pull/41731
Closes: https://github.com/gentoo/gentoo/pull/41731
Signed-off-by: Sam James <sam@gentoo.org>
2025-04-24 22:04:45 +01:00

80 lines
2.7 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
MY_PV=${PV//_beta/-beta.}
DESCRIPTION="Framework for analyzing volatile memory"
HOMEPAGE="https://github.com/volatilityfoundation/volatility3/ https://www.volatilityfoundation.org/"
SRC_URI="
https://github.com/volatilityfoundation/volatility3/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz
test?
(
https://downloads.volatilityfoundation.org/volatility3/images/win-xp-laptop-2005-06-25.img.gz -> ${PN}-win-xp-laptop-2005-06-25.img.gz
https://downloads.volatilityfoundation.org/volatility3/images/linux-sample-1.bin.gz -> ${PN}-linux-sample-1.bin.gz
)
"
S="${WORKDIR}"/${PN}-${MY_PV}
LICENSE="Volatility-1.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="crypt disasm jsonschema leechcore snappy test yara"
# We need to select *all* subslots of app-arch/snappy which select
# SONAME=libsnappy.so.1. See (https://github.com/gentoo/gentoo/pull/30585#discussion_r1167753625)
RDEPEND="
>=dev-python/pefile-2023.2.7[${PYTHON_USEDEP}]
crypt? ( >=dev-python/pycryptodome-3[${PYTHON_USEDEP}] )
disasm? (
>=dev-libs/capstone-3.0.5[python,${PYTHON_USEDEP}]
<dev-libs/capstone-6[python,${PYTHON_USEDEP}]
)
jsonschema? ( >=dev-python/jsonschema-2.3.0[${PYTHON_USEDEP}] )
leechcore? ( >=dev-python/leechcorepyc-2.4.0[${PYTHON_USEDEP}] )
snappy? ( app-arch/snappy:0/1.1 )
yara? (
|| (
>=app-forensics/yara-x-0.5.0[${PYTHON_USEDEP}]
>=dev-python/yara-python-3.8.0[${PYTHON_USEDEP}]
)
)
"
DEPEND="${RDEPEND}"
# Tests require optional features
REQUIRED_USE="test? ( yara )"
RESTRICT="!test? ( test )"
src_prepare() {
default
if use test; then
# tests want the images in a common directory
mkdir "${T}/test_images" || die
mv "${WORKDIR}/${PN}-win-xp-laptop-2005-06-25.img" "${T}/test_images" || die
mv "${WORKDIR}/${PN}-linux-sample-1.bin" "${T}/test_images" || die
fi
}
python_test() {
# see .github/workflows/test.yaml
"${EPYTHON}" "${S}/test/test_volatility.py" --volatility=volshell.py \
--image-dir "${T}/test_images" -k test_windows_volshell -v || \
die "Tests fail with ${EPYTHON}"
"${EPYTHON}" "${S}/test/test_volatility.py" --volatility=volshell.py \
--image-dir "${T}/test_images" -k test_linux_volshell -v || \
die "Tests fail with ${EPYTHON}"
"${EPYTHON}" "${S}/test/test_volatility.py" --volatility=vol.py \
--image-dir "${T}/test_images" -k "test_windows and not test_windows_volshell" -v || \
die "Tests fail with ${EPYTHON}"
"${EPYTHON}" "${S}/test/test_volatility.py" --volatility=vol.py \
--image-dir "${T}/test_images" -k "test_linux and not test_linux_volshell" -v || \
die "Tests fail with ${EPYTHON}"
}