






















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!
Ahoj @dreieck,
Díky for the SPDX license identifier tip. Already corrected to GPL-3.0-or-later.
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!
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
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!