tinox-bin
maintainer subnix
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package installs a prebuilt binary from the project's official GitHub releases, which is normal for -bin packages; the low severity is due to few votes and recent upload, not inherent risk.
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.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package installs a prebuilt binary from the project's official GitHub releases, which is normal for -bin packages; the low severity is due to few votes and recent upload, not inherent risk.
PKGBUILD
1
# Maintainer: Tino Gohl <tuvbunn2@googlemail.com>
2
pkgname=tinox-bin
3
pkgver=1.0.2
4
pkgrel=1
5
pkgdesc="Native, statically typed programming language with an LLVM backend, garbage collection, and concurrency support (prebuilt binary)"
6
arch=('x86_64')
7
url="https://github.com/subnix-work/tinox"
8
license=('MIT' 'Apache-2.0')
9
depends=('glibc' 'gc' 'openssl' 'llvm' 'gcc')
10
optdepends=(
11
'clang: tinox repl / dev-mode on-the-fly runtime recompilation'
12
'sqlite: DB feature with driver = "sqlite" in tinox.toml'
13
'postgresql-libs: DB feature with driver = "postgres" in tinox.toml'
14
'mariadb-libs: DB feature with driver = "mysql" in tinox.toml'
15
)
16
provides=('tinox')
17
conflicts=('tinox')
18
source=("https://github.com/subnix-work/tinox/releases/download/v${pkgver}/tinox-${pkgver}-linux-x86_64.tar.gz")
19
sha256sums=('ce58866775bc86b24400d48cc963bb431b0d2383277209b90d8172eb7c5b406c')
20
21
package() {
22
cd "$srcdir"
23
install -Dm755 tinox "$pkgdir/usr/bin/tinox"
24
install -Dm644 runtime.c "$pkgdir/usr/share/tinox/runtime.c"
25
install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
26
install -Dm644 LICENSE-APACHE "$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
27
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
28
29
cp -r core "$pkgdir/usr/share/tinox/core"
30
find "$pkgdir/usr/share/tinox/core" -type d -exec chmod 755 {} \;
31
find "$pkgdir/usr/share/tinox/core" -type f -exec chmod 644 {} \;
32
}
33
Changes since previous scan
--- PKGBUILD @ 2026-07-28 00:07+++ PKGBUILD @ 2026-08-03 00:08@@ -1,6 +1,6 @@ # Maintainer: Tino Gohl <tuvbunn2@googlemail.com> pkgname=tinox-bin-pkgver=1.0.1+pkgver=1.0.2 pkgrel=1 pkgdesc="Native, statically typed programming language with an LLVM backend, garbage collection, and concurrency support (prebuilt binary)" arch=('x86_64')@@ -16,7 +16,7 @@ provides=('tinox') conflicts=('tinox') source=("https://github.com/subnix-work/tinox/releases/download/v${pkgver}/tinox-${pkgver}-linux-x86_64.tar.gz")-sha256sums=('833637f95d388e5a7f57a63052471874d27a96c0a31827b6abedbf67de1d975d')+sha256sums=('ce58866775bc86b24400d48cc963bb431b0d2383277209b90d8172eb7c5b406c') package() { cd "$srcdir"Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 19:39:35 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 21:35:42 | LOW | 2 |