Package Details: yazi-nightly-bin 25.4.8.20250411.bef4810-1

Git Clone URL: https://aur.archlinux.org/yazi-nightly-bin.git (read-only, click to copy)
Package Base: yazi-nightly-bin
Description: 💥 Blazing fast terminal file manager written in Rust, based on async I/O.
Upstream URL: https://yazi-rs.github.io
Keywords: file lf ls manager rust tui
Licenses: MIT
Conflicts: yazi
Provides: yazi
Submitter: latipun
Maintainer: latipun
Last Packager: latipun
Votes: 5
Popularity: 0.004718
First Submitted: 2024-08-07 14:28 (UTC)
Last Updated: 2025-04-11 07:15 (UTC)

Dependencies (14)

Required by (4)

Sources (1)

Latest Comments

ParadiseofMagic commented on 2025-09-05 19:14 (UTC)

@latipun Okay, I understand. Thank you.

latipun commented on 2025-09-03 09:50 (UTC) (edited on 2025-09-03 09:52 (UTC) by latipun)

@ParadiseofMagic yeah, when you install it, it will show that because this AUR default to that version (25.4.8.20250411.bef4810-1) for now. Just accept it, it will grab and install the latest version due to pkgver() function. That's why your local/installed version is newer than this default. Your local and correct newer version will show up at the last confirmation after build. <img alt="yazi-nightly-build-installation" src="https://i.imgur.com/Ub7mNE8.png" />

ParadiseofMagic commented on 2025-09-03 05:12 (UTC) (edited on 2025-09-03 08:40 (UTC) by ParadiseofMagic)

"yazi-nightly-bin: local (25.6.11.20250902.d670da8-1) is newer than AUR (25.4.8.20250411.bef4810-1)" From Yay

After confirming with "yazi -v", the version listed here is outdated on the AUR it seems when compared to the package it builds. Can you please fix it?

boydaihungst commented on 2025-04-09 06:26 (UTC) (edited on 2025-04-09 06:26 (UTC) by boydaihungst)

@latipun can you add resvg as new optional for svg previewing. Reference: yazi#2581

latipun commented on 2025-03-11 04:44 (UTC)

@boydaihungst, thank you for the report. Sorry, it took for a while to update 🙏

Seems this package not updating because I had a typo. I already updated it, hope it solves the issue.

boydaihungst commented on 2025-03-07 17:02 (UTC) (edited on 2025-03-07 17:09 (UTC) by boydaihungst)

Please remove the exit statement, as it prevents the contained functions from executing.
Reference: Arch Wiki - PKGBUILD

Additionally, could you update pkgver to use Calendar Versioning (25.3.7.20250307.a2bbd29)?
Reference: GitHub PR #2291

Currently, vercmp 0.3.0.20240808.407ad26-1 25.3.7.20250307.a2bbd29 returns -1, meaning this package will never be updated

latipun commented on 2024-09-23 03:53 (UTC)

Thanks for the report 🎉 Seems this is already fixed in the upstream.

GrzegorzKozub commented on 2024-09-19 06:18 (UTC) (edited on 2024-09-21 06:10 (UTC) by GrzegorzKozub)

I fixed this error:

==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace.

Did this by ignoring the warnings spit by yazi --version:

●• ./yazi --version | awk -F'[ ()]' '{gsub(/-/, "", $5); print $2 "." $5 "." $4}'
The.`[input]`.under
..
change."Create:"`.=
..
0.3.3.20240921.1a1820c
●• ./yazi --version
WARNING: The `create_title` under `[input]` now accepts an array instead of a string to support different titles for `create` and `create --dir` command.

Please change `create_title = "Create:"` to `create_title = ["Create:", "Create (dir):"]` in your yazi.toml.

Yazi 0.3.3 (1a1820c 2024-09-21)
●• ./yazi --version | tail -1
Yazi 0.3.3 (1a1820c 2024-09-21)
●• ./yazi --version | tail -1 | awk -F'[ ()]' '{gsub(/-/, "", $5); print $2 "." $5 "." $4}'
0.3.3.20240921.1a1820c

@latipun, can you update the PKGBUILD?

I also reported https://github.com/sxyazi/yazi/issues/1668