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

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

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) - chatgpt.sh
2026-06-01 · via AUR Newest Packages

Latest Comments

lilikoi commented on 2025-11-26 18:25 (UTC)

Ahoj @dreieck,

Thanks again for the tip and great explanation! I will update the PKGBUILD accordingly, it seems like a nice technical touch to incorporate in the code..

Cheers!

dreieck commented on 2025-11-26 15:00 (UTC)

Ahoj,

when you clone a git repository as source, even when you use a specific commit it is advisable to not make a new target directory per version.

So, change

source=("${pkgname}-${pkgver}::git+${url}.git#commit=${_commit}")

to

source=("${pkgname}::git+${url}.git#commit=${_commit}")

This change will make that at each version update the upstream repository is not fully re-downloaded, but only updated. And the #commit=${_commit} will then checkout the specific commit to $srcdir.

Regards!

lilikoi commented on 2025-02-09 14:37 (UTC)

Ahoj @dreieck,

Díky for the SPDX license identifier tip. Already corrected to GPL-3.0-or-later.

dreieck commented on 2025-02-09 14:11 (UTC)

Ahoj,

you need to make the license identifier SPDX compliant:

chatgpt.sh E: GPL3 is not a valid SPDX license identifier. See https://spdx.org/licenses/ for valid identifiers, or prefix the identifier with 'LicenseRef-', if it is custom.

Regards and thanks for the package!