28 lines
1015 B
Bash
28 lines
1015 B
Bash
# Template file for 'memray'
|
|
pkgname=memray
|
|
version=1.13.0
|
|
revision=1
|
|
build_style=python3-pep517
|
|
make_check_args="-v -k not((TestTUILooks)or(test_tui))"
|
|
make_check_target="tests/unit"
|
|
hostmakedepends="python3-pkgconfig python3-setuptools python3-wheel python3-Cython"
|
|
makedepends="python3-devel libunwind-devel liblz4-devel elfutils-devel"
|
|
depends="python3-Jinja2 python3-rich python3-textual"
|
|
checkdepends="${depends} python3-pytest"
|
|
short_desc="Reports memory allocations in python code & compiled extensions"
|
|
maintainer="icp <pangolin@vivaldi.net>"
|
|
license="Apache-2.0"
|
|
homepage="https://bloomberg.github.io/memray/"
|
|
changelog="https://bloomberg.github.io/memray/changelog.html"
|
|
distfiles="https://github.com/bloomberg/memray/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=eca3f1b8b2ddae234460f327484e5dc0302ccbb0de87cf54705f5d40b2b9a028
|
|
make_check_pre="env PYTHONPATH=src"
|
|
|
|
pre_build() {
|
|
export MEMRAY_LIBBACKTRACE_TARGET="${XBPS_TARGET_MACHINE%-musl}"
|
|
}
|
|
|
|
pre_check() {
|
|
python3 setup.py build_ext --inplace
|
|
}
|