惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
F
Fortinet All Blogs
D
Docker
博客园 - 司徒正美
腾讯CDC
Recent Announcements
Recent Announcements
The Cloudflare Blog
B
Blog RSS Feed
GbyAI
GbyAI
T
Tailwind CSS Blog
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - aqua-bin
2026-06-16 · via AUR Newest Packages

@vitaliikuzhdin: I added the checksums to the verify! I tried a little to implement the signature verification, but it fails here! I'll add you as co-maintainer, so you can added this verification to the source files if you really think it's important! Thanks

Please consider adding cosign and/or slsa-verifier integrity checks. You can refer to openfga-bin for an example implementation. Also, adding pkgrel to source names might not be necessary.

Thank you for maintaining this package.

It looks like the current PKGBUILD assumes that the ${_pkgname} binary is already available in $PATH during the build() phase.

This works for users who already have the binary installed system-wide (e.g., when upgrading), because their $PATH contains the previously installed version. However, for clean builds in a minimal environment, this results in a "command not found" error.

To fix this and ensure the correct binary is used, it is necessary to invoke the locally built binary directly via ./${_pkgname}. Otherwise, the build will fail on systems without the binary already installed.

Here's a patch to fix this issue:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -33,7 +33,7 @@
 build() {
     gzip "man/man.1"
     mkdir -p completions
-    "${_pkgname}" completion bash > "completions/fish"
-    "${_pkgname}" completion bash > "completions/bash"
-    "${_pkgname}" completion bash > "completions/zsh"
+    "./${_pkgname}" completion fish > "completions/fish"
+    "./${_pkgname}" completion bash > "completions/bash"
+    "./${_pkgname}" completion zsh > "completions/zsh"
 }