#!/bin/bash # Maintainer: PumpkinCheshire pkgname=python-taichi _name=${pkgname#python-} _py=cp310 pkgver=0.9.2 pkgrel=1 pkgdesc='Productive & portable programming language for high-performance, sparse & differentiable computing on CPUs & GPUs' url='https://github.com/taichi-dev/taichi' arch=('x86_64') license=('MIT') depends=( 'python' 'python-astor' 'python-numpy' 'pybind11' 'python-pillow' 'python-dill' 'ncurses5-compat-libs' 'libx11' ) optdepends=( 'python-autograd' 'python-sourceinspect' 'python-astpretty' 'python-colorama' 'python-gitpython' 'yapf' 'cuda') makedepends=( 'python-build' 'python-installer') source=("https://files.pythonhosted.org/packages/$_py/${_name::1}/$_name/${_name//-/_}-$pkgver-$_py-$_py-manylinux_2_27_x86_64.whl") b2sums=('1a945f7e4805212310596dfc60edf212374bc7ebe7e086d4a2b5bd957f78eef28d1118a3bd244ba15c5c7d4dbfd61485ddc288caa79caa1f5545d9e9cc5db26a') package() { # PIP_CONFIG_FILE=/dev/null /usr/bin/python3.9 -m pip install --isolated --root="$pkgdir" --ignore-installed --no-warn-script-location --no-deps ${_name//-/_}-$pkgver-$_py-$_py-manylinux1_x86_64.whl # cd "$pkgdir/usr/lib/python3.9/site-packages/$_name/" || exit # # remove pyc and compile by itself # find . -name "*.pyc" -print0 | xargs rm -rf # # remove prefix compile pyc again # python -O -m compileall -f "${pkgdir}/usr/lib/python3.9/site-packages/$_name/" -s "$pkgdir" -p "/" # # manually rewrite direct_url.json # cd "$pkgdir/usr/lib/python3.9/site-packages/$_name-$pkgver.dist-info/" || exit # echo "{\"archive_info\": {\"hash\": \"b2sums=${b2sums[0]}\"}, \"url\": \"${source[0]}\"}" >direct_url.json python -m installer --destdir="$pkgdir" *.whl install -Dm644 "$srcdir/$_name-$pkgver.dist-info/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }