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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
小众软件
小众软件
GbyAI
GbyAI
酷 壳 – CoolShell
酷 壳 – CoolShell
F
Fortinet All Blogs
博客园 - 三生石上(FineUI控件)
B
Blog
量子位
B
Blog RSS Feed
Vercel News
Vercel News
Blog — PlanetScale
Blog — PlanetScale
Last Week in AI
Last Week in AI
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Jina AI
Jina AI
C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG

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"
 }