26 lines
868 B
Bash
26 lines
868 B
Bash
# Template file for 'uv'
|
|
pkgname=uv
|
|
version=0.4.17
|
|
revision=1
|
|
build_style=python3-pep517
|
|
build_helper="rust qemu"
|
|
hostmakedepends="maturin cargo cmake pkg-config"
|
|
makedepends="rust-std libzstd-devel bzip2-devel"
|
|
short_desc="Extremely fast Python package installer and resolver"
|
|
maintainer="classabbyamp <void@placeviolette.net>"
|
|
license="Apache-2.0 OR MIT"
|
|
homepage="https://github.com/astral-sh/uv"
|
|
changelog="https://github.com/astral-sh/uv/raw/main/CHANGELOG.md"
|
|
distfiles="https://github.com/astral-sh/uv/releases/download/${version}/source.tar.gz"
|
|
checksum=68ad7bf18029bcc9f0c8556e5fb96814fa30d8f67b3ccbc5db19e38b487c9326
|
|
# many tests require old python versions
|
|
make_check=no
|
|
|
|
post_install() {
|
|
vlicense LICENSE-MIT
|
|
for sh in bash fish zsh; do
|
|
vtargetrun "$DESTDIR"/usr/bin/uv --generate-shell-completion "$sh" > "uv.$sh"
|
|
vcompletion "uv.$sh" "$sh"
|
|
done
|
|
}
|