Carl Smedstad pushed to branch main at Arch Linux / Packaging / Packages /
maturin
Commits:
38e6ea7a by Carl Smedstad at 2025-06-15T22:59:06+02:00
upgpkg: 1.8.7-2: Fix unsupported compression level
Building without --all-features fixes "unsupported Zip archive: Unsupported
compression level".
Thought this was only a test issue, but seems it broke the package entirely.
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = maturin
pkgdesc = Build and publish crates with pyo3, rust-cpython and cffi
bindings
pkgver = 1.8.7
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/PyO3/maturin
arch = x86_64
license = Apache-2.0 OR MIT
=====================================
PKGBUILD
=====================================
@@ -7,7 +7,7 @@ pkgname=(
python-maturin
)
pkgver=1.8.7
-pkgrel=1
+pkgrel=2
pkgdesc="Build and publish crates with pyo3, rust-cpython and cffi bindings"
url="https://github.com/PyO3/maturin"
arch=(x86_64)
@@ -44,8 +44,7 @@ prepare() {
build() {
cd $pkgbase
- MATURIN_SETUP_ARGS="--frozen --all-features" \
- python -m build --wheel --no-isolation
+ MATURIN_SETUP_ARGS="--frozen" python -m build --wheel --no-isolation
}
check() {
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/maturin/-/commit/38e6ea7a1b9f2a38582010cd1ce02d0c252fcba6
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/maturin/-/commit/38e6ea7a1b9f2a38582010cd1ce02d0c252fcba6
You're receiving this email because of your account on gitlab.archlinux.org.