2024-02-16 13:27:27 +01:00
|
|
|
# Template file for 'uv'
|
|
|
|
pkgname=uv
|
2024-03-25 05:59:35 +01:00
|
|
|
version=0.1.24
|
2024-03-22 09:31:51 +01:00
|
|
|
revision=2
|
2024-02-16 13:27:27 +01:00
|
|
|
build_style=python3-pep517
|
|
|
|
build_helper="rust qemu"
|
|
|
|
hostmakedepends="maturin cargo cmake pkg-config"
|
|
|
|
makedepends="rust-std openssl-devel libgit2-devel libssh2-devel zlib-devel"
|
|
|
|
short_desc="Extremely fast Python package installer and resolver"
|
|
|
|
maintainer="classabbyamp <void@placeviolette.net>"
|
|
|
|
license="Apache-2.0, 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"
|
2024-03-25 05:59:35 +01:00
|
|
|
checksum=9a9d91d1a5dcfecf5029931530d417fc3febf4c469d7d7b9567845c4210bb59b
|
2024-02-16 13:27:27 +01:00
|
|
|
# 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
|
|
|
|
}
|