fix pkg ver
All checks were successful
release / Release (push) Successful in 6m59s

This commit is contained in:
2026-03-03 16:03:02 +09:00
parent 69b933586f
commit b1c5375110
3 changed files with 27 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
pkgname=aigpt pkgname=aigpt
pkgver=0.0.1 pkgver=0.0.1
pkgrel=1 pkgrel=1
pkgdesc='ai memory and personality system for aios' pkgdesc='ai memory and personality system for aios'
arch=('x86_64') arch=('x86_64')
url='https://git.syui.ai/ai/gpt' url='https://git.syui.ai/ai/gpt'
@@ -11,6 +12,14 @@ options=('!lto')
source=("git+https://git.syui.ai/ai/gpt.git#branch=main") source=("git+https://git.syui.ai/ai/gpt.git#branch=main")
sha256sums=('SKIP') sha256sums=('SKIP')
pkgver() {
cd gpt
printf "%s.r%s.g%s" \
"$(cargo pkgid | sed 's/.*@//')" \
"$(git rev-list --count HEAD)" \
"$(git rev-parse --short HEAD)"
}
build() { build() {
cd gpt cd gpt
export CC=gcc export CC=gcc

View File

@@ -1,6 +1,7 @@
pkgname=ailog pkgname=ailog
pkgver=0.0.1 pkgver=0.0.1
pkgrel=1 pkgrel=1
pkgdesc='atproto blog cli for aios' pkgdesc='atproto blog cli for aios'
arch=('x86_64') arch=('x86_64')
url='https://git.syui.ai/ai/log' url='https://git.syui.ai/ai/log'
@@ -11,6 +12,14 @@ options=('!lto')
source=("git+https://git.syui.ai/ai/log.git#branch=main") source=("git+https://git.syui.ai/ai/log.git#branch=main")
sha256sums=('SKIP') sha256sums=('SKIP')
pkgver() {
cd log
printf "%s.r%s.g%s" \
"$(cargo pkgid | sed 's/.*@//')" \
"$(git rev-list --count HEAD)" \
"$(git rev-parse --short HEAD)"
}
build() { build() {
cd log cd log
export CC=gcc export CC=gcc

View File

@@ -1,6 +1,7 @@
pkgname=aishell pkgname=aishell
pkgver=0.0.1 pkgver=0.0.1
pkgrel=1 pkgrel=1
pkgdesc='custom shell for aios' pkgdesc='custom shell for aios'
arch=('x86_64') arch=('x86_64')
url='https://git.syui.ai/ai/shell' url='https://git.syui.ai/ai/shell'
@@ -11,6 +12,14 @@ options=('!lto')
source=("git+https://git.syui.ai/ai/shell.git#branch=main") source=("git+https://git.syui.ai/ai/shell.git#branch=main")
sha256sums=('SKIP') sha256sums=('SKIP')
pkgver() {
cd shell
printf "%s.r%s.g%s" \
"$(cargo pkgid | sed 's/.*@//')" \
"$(git rev-list --count HEAD)" \
"$(git rev-parse --short HEAD)"
}
build() { build() {
cd shell cd shell
export CC=gcc export CC=gcc