colibri-bin
LOW
maintainer heyeddi
0 votes
scanned 2026-09-13 05:13:46.038990
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Edmundo Sanchez <zomundo at gmail dot com>
2
pkgname=colibri-bin
3
pkgver=1.10.2
4
pkgrel=1
5
pkgdesc='Tiny local inference engine for large MoE models (prebuilt)'
6
arch=('x86_64')
7
url='https://github.com/JustVugg/colibri'
8
license=('Apache-2.0')
9
depends=('python' 'gcc-libs')
10
optdepends=(
11
'python-numpy: image/audio features and converters'
12
'python-pillow: multimodal image input'
13
'python-huggingface-hub: model download helpers for convert'
14
)
15
provides=('colibri')
16
conflicts=('colibri')
17
source=(
18
"https://github.com/JustVugg/colibri/releases/download/v${pkgver}/colibri-v${pkgver}-linux-x86_64.tar.gz"
19
)
20
sha256sums=('f9d21a99eb4c02f0f75c2ecddb735faf2043d2c6caa229e5ee62f50763cdfdec')
21
22
package() {
23
local libexec="${pkgdir}/usr/libexec/colibri"
24
25
install -dm755 "${pkgdir}/usr/bin"
26
install -dm755 "${libexec}/tools"
27
install -dm755 "${libexec}/web/dist"
28
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
29
30
# Launcher on PATH; engines and support files under libexec (upstream layout).
31
install -Dm755 "${srcdir}/coli" "${pkgdir}/usr/bin/coli"
32
33
install -Dm755 "${srcdir}/colibri" "${libexec}/colibri"
34
install -Dm755 "${srcdir}/glm53" "${libexec}/glm53"
35
install -Dm755 "${srcdir}/inkling" "${libexec}/inkling"
36
install -Dm755 "${srcdir}/kimi_k3" "${libexec}/kimi_k3"
37
install -Dm755 "${srcdir}/olmoe" "${libexec}/olmoe"
38
install -Dm755 "${srcdir}/qwen36" "${libexec}/qwen36"
39
install -Dm755 "${srcdir}/qwen38" "${libexec}/qwen38"
40
install -Dm755 "${srcdir}/deepseek_v4" "${libexec}/deepseek_v4"
41
42
install -Dm644 "${srcdir}/family_registry.py" "${libexec}/family_registry.py"
43
install -Dm644 "${srcdir}/resource_plan.py" "${libexec}/resource_plan.py"
44
install -Dm644 "${srcdir}/doctor.py" "${libexec}/doctor.py"
45
install -Dm644 "${srcdir}/autotune.py" "${libexec}/autotune.py"
46
install -Dm644 "${srcdir}/openai_server.py" "${libexec}/openai_server.py"
47
install -Dm644 "${srcdir}/cluster.py" "${libexec}/cluster.py"
48
install -Dm644 "${srcdir}/v4_dsml.py" "${libexec}/v4_dsml.py"
49
install -Dm644 "${srcdir}/version.py" "${libexec}/version.py"
50
51
install -Dm644 "${srcdir}/tools/"* "${libexec}/tools/"
52
cp -a "${srcdir}/web/dist/." "${libexec}/web/dist/"
53
54
install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
55
}
56
57
check() {
58
"${srcdir}/coli" --help >/dev/null
59
}
60
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-13 05:13:46 | Low | 1 |