From 4ae65568614b077397cf40b406bb2358a422e650 Mon Sep 17 00:00:00 2001 From: icp Date: Sat, 4 Mar 2023 18:31:23 +0530 Subject: [PATCH] fselect: update to 0.8.2. --- srcpkgs/fselect/template | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/srcpkgs/fselect/template b/srcpkgs/fselect/template index bd5cff98d6f8..fcd12bb13436 100644 --- a/srcpkgs/fselect/template +++ b/srcpkgs/fselect/template @@ -1,20 +1,28 @@ # Template file for 'fselect' pkgname=fselect -version=0.8.1 +version=0.8.2 revision=1 build_style=cargo short_desc="Find files with SQL-like queries" maintainer="SolitudeSF " license="Apache-2.0, MIT" homepage="https://github.com/jhspetersson/fselect" -distfiles="${homepage}/archive/${version}.tar.gz" -checksum=1456dd9172903cd997e7ade6ba45b5937cfce023682a2ceb140201b608fbc628 +changelog="https://github.com/jhspetersson/fselect/releases" +distfiles="https://github.com/jhspetersson/fselect/archive/refs/tags/${version}.tar.gz" +checksum=db55c067630074724fbd3fbf85ebf3de1cf5b47166f80866b58c72f2ef2ffd48 case "$XBPS_TARGET_MACHINE" in ppc64le*) ;; ppc64*) broken="some rustix junk";; esac +if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then + makedepends+=" libatomic-devel" + XBPS_CROSS_RUSTFLAGS+=" -latomic" +fi + post_install() { vlicense LICENSE-MIT + vman docs/fselect.1 + vdoc docs/usage.md }