From 249d9c893bbea9f500ff04b63c97665f45e4ca5b Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 9 May 2022 17:12:40 +0200 Subject: [PATCH] fselect: fix build on ppc64le-musl --- srcpkgs/fselect/template | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/srcpkgs/fselect/template b/srcpkgs/fselect/template index 5c35c5be539..9f26f6100bf 100644 --- a/srcpkgs/fselect/template +++ b/srcpkgs/fselect/template @@ -10,6 +10,16 @@ homepage="https://github.com/jhspetersson/fselect" distfiles="${homepage}/archive/${version}.tar.gz" checksum=33dfcbbf7e598bce479b1fb5c17429af1bb309beab2e4bc95642e9f4b5c2ffbd +post_patch() { + # in rustix-0.32.x: + # + # libc::BLKSSZGET as c::c_ulong, + # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `i32`, found `u64` + # + # remove on next version update + cargo update --package fd-lock --precise 3.0.5 +} + post_install() { vlicense LICENSE-MIT }