Orhun Parmaksız pushed to branch main at Arch Linux / Packaging / Packages / uv
Commits:
b9818669 by Guillaume Gauvrit at 2024-09-18T11:56:18+00:00
upgpkg: 0.4.10-1
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,6 +1,6 @@
pkgbase = uv
pkgdesc = An extremely fast Python package installer and resolver
written in Rust
- pkgver = 0.3.1
+ pkgver = 0.4.10
pkgrel = 1
url = https://github.com/astral-sh/uv
arch = x86_64
@@ -18,10 +18,10 @@ pkgbase = uv
depends = gcc-libs
depends = glibc
depends = zlib
- depends = libz.so
+ depends = bzip2
options = !lto
- source = git+https://github.com/astral-sh/uv.git#tag=0.3.1
- sha256sums =
2bf791afbc8d5851bbff50095f8825ca75d4053b5d64ca310200746765e56e23
+ source = git+https://github.com/astral-sh/uv.git#tag=0.4.10
+ sha256sums =
38a9facda91e2d16e65bd669cc11c4078652c598f51a93c378ed8600e1a290a2
pkgname = uv
=====================================
PKGBUILD
=====================================
@@ -4,10 +4,11 @@
# Contributor: David Runge <[email protected]>
# Contributor: Leonidas Spyropoulos <[email protected]>
# Contributor: Daniel M. Capella <[email protected]>
+# Contributor: Guillaume Gauvrit <[email protected]>
pkgbase=uv
pkgname=("$pkgbase" "python-$pkgbase")
-pkgver=0.3.1
+pkgver=0.4.10
pkgrel=1
pkgdesc='An extremely fast Python package installer and resolver written in
Rust'
arch=('x86_64')
@@ -15,12 +16,14 @@ url="https://github.com/astral-sh/uv"
license=('MIT' 'Apache-2.0')
depends=('gcc-libs' # 'libgcc_s.so'
'glibc' # 'libc.so' 'libm.so'
- 'zlib' 'libz.so')
+ 'zlib' # 'libz.so'
+ 'bzip2' # 'libbz2.so'
+ )
makedepends=('cargo' 'maturin' 'python-installer' 'cmake' 'git')
checkdepends=('python' 'python-zstandard' 'libxcrypt-compat' 'clang')
options=('!lto')
source=("git+$url.git#tag=$pkgver")
-sha256sums=('2bf791afbc8d5851bbff50095f8825ca75d4053b5d64ca310200746765e56e23')
+sha256sums=('38a9facda91e2d16e65bd669cc11c4078652c598f51a93c378ed8600e1a290a2')
prepare() {
cd "$pkgbase"
@@ -34,7 +37,8 @@ prepare() {
build() {
cd "$pkgbase"
local tripple="$(rustc -vV | sed -n 's/host: //p')"
- maturin build --locked --release --all-features --target "$tripple" --strip
+
+ maturin build --locked --release --all-features --target "$tripple" --strip
--compatibility linux
local compgen="target/$tripple/release/uv --generate-shell-completion"
$compgen bash >"completions/$pkgbase"
$compgen elvish >"completions/$pkgbase.elv"
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/uv/-/commit/b981866944f35984a97733f7eea46040099f6281
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/uv/-/commit/b981866944f35984a97733f7eea46040099f6281
You're receiving this email because of your account on gitlab.archlinux.org.