blob: e974e05327eca33fe6f93dbee9ecea5c86716673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer: Kino <cybao292261@163.com>
# Contributor: PumpkinCheshire <me at pumpkincheshire dot com>
pkgname=python-viztracer
_pkgname=viztracer
pkgver=1.0.0
pkgrel=1
pkgdesc='VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.'
arch=('x86_64')
url="https://github.com/gaogaotiantian/viztracer"
license=('Apache-2.0')
depends=('python' 'python-objprint')
makedepends=(
'python-wheel'
'python-build'
'python-installer'
)
optdepends=(
'python-rich: Full function support'
'python-orjson: Full function support'
'chromium: browser to open html results'
)
source=("$_pkgname-$pkgver.tar.gz::https://github.com/gaogaotiantian/viztracer/archive/$pkgver.tar.gz")
sha256sums=('1920ee2bf29dabc3335fc3e9e8b5e1e7acc942013757fa4462f9e529d4a81d32')
prepare() {
cd "$srcdir/$_pkgname-$pkgver" || exit
# Avoid exceeding maximum recursion depth.
sed -i "s|call_self(1000)|call_self(987)|g" tests/test_vcompressor.py
# Disable it because the external processor is something that the script should download from google.
sed -i "s|use_external_processor=True|use_external_processor=False|g" tests/test_viewer.py
# Attach is not working, this is some black magic and is OS-dependent.
rm tests/test_remote.py
}
build() {
cd "$srcdir/$_pkgname-$pkgver" || exit
CFLAGS=$(sed "s/-Wp,-D_FORTIFY_SOURCE=[2-3]\s//g" <(echo $CFLAGS))
CXXFLAGS=$(sed "s/-Wp,-D_FORTIFY_SOURCE=[2-3]\s//g" <(echo $CXXFLAGS))
python -m build --wheel --no-isolation
}
check() {
cd "$srcdir/$_pkgname-$pkgver" || exit
# From upstream, virtual environment is highly recommended.
python -m venv venv --system-site-packages
source venv/bin/activate
$PWD/venv/bin/python -m pip install loky
$PWD/venv/bin/python -m installer dist/*.whl
$PWD/venv/bin/python -m unittest
deactivate # existing in virtual environment
}
package() {
cd "$srcdir/$_pkgname-$pkgver" || exit
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|