51 lines
1.6 KiB
Bash
51 lines
1.6 KiB
Bash
# Template file for 'maturin'
|
|
pkgname=maturin
|
|
version=0.13.2
|
|
revision=1
|
|
build_style=python3-module
|
|
build_helper="qemu rust"
|
|
hostmakedepends="python3-setuptools-rust python3-tomli python3-wheel cargo"
|
|
makedepends="openssl-devel"
|
|
depends="python3-tomli"
|
|
short_desc="Build and publish crates as python packages"
|
|
maintainer="Andrew J. Hesford <ajh@sideband.org>"
|
|
license="Apache-2.0, MIT"
|
|
homepage="https://github.com/PyO3/maturin"
|
|
# bump target-lexicon version if it changes in Cargo.lock
|
|
distfiles="${homepage}/archive/v${version}.tar.gz
|
|
https://github.com/bytecodealliance/target-lexicon/archive/v0.12.4.tar.gz>target-lexicon-${version}.tar.gz"
|
|
checksum="22afa6d4367eed3225a8650604483f13c127df612cb4ed66e074244c2344c668
|
|
f801dbb02555852e90d56d5a71e73ee42678c1bc583bb62a2970d4158f6ab6de"
|
|
# Tests use unstable features and fail to build
|
|
make_check=no
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
makedepends+=" rust-std"
|
|
fi
|
|
|
|
post_extract() {
|
|
mv ../target-lexicon* target-lexicon
|
|
echo "[patch.crates-io]" >> Cargo.toml
|
|
echo "target-lexicon = { path = './target-lexicon' }" >> Cargo.toml
|
|
}
|
|
|
|
post_patch() {
|
|
# Disable the 'rustls' feature, which leads to bad platform compatibility
|
|
vsed -i -e '/^default =/s/"rustls", //' Cargo.toml
|
|
}
|
|
|
|
post_install() {
|
|
vlicense license-mit LICENSE-MIT
|
|
python3 setup.py install --prefix=/usr --root=${DESTDIR}
|
|
|
|
# Generate and install some completions
|
|
local _matbin="${DESTDIR}/usr/bin/maturin"
|
|
vtargetrun "${_matbin}" completions zsh > maturin.zsh
|
|
vtargetrun "${_matbin}" completions fish > maturin.fish
|
|
vtargetrun "${_matbin}" completions bash > maturin.bash
|
|
|
|
vcompletion maturin.zsh zsh
|
|
vcompletion maturin.fish fish
|
|
vcompletion maturin.bash bash
|
|
}
|